From 3648956b7835adaeac810d4e2ead7878577943af Mon Sep 17 00:00:00 2001 From: modesty Date: Tue, 14 Apr 2026 18:37:26 -0700 Subject: [PATCH 01/10] chore: update for build, config, CLI and tests: Build System - tsconfig.json: Removed dead decorator options; updated moduleResolution/module to node16; disabled unused importHelpers - package.json: Fixed exports map with proper types entries for both ESM and CJS TypeScript consumers; removed unused tslib dependency; added test:coverage script - rollup.config.js: Enabled tree-shaking for CLI bundle; removed dead code; documented build order dependency - .prettierrc.cjs: Inlined config to remove missing prettier-config-standard dependency CLI (src/cli/) - 7 bug fixes: Promise constructor anti-pattern, callback fs.writeFile/fs.readdir replaced with fs.promises, addResultCount type mismatch, dead warningCount removed, TOCTOU race condition in validateParams removed, broken --singleton flag fixed (now shares parser instance from PDFCLI level), -si short flag parsing bug fixed - New --json flag: Structured JSON summary to stdout (version, output paths, stats, errors, elapsed time) for programmatic consumption and Claude Code Skill integration - New --quiet flag: Suppresses all non-error output including timer and status messages - Granular exit codes: 0=success, 1=parse failure, 2=argument error, 3=I/O error (previously only 0 or 1) - Improved directory filter: Only skips dotfiles now (previously silently skipped files starting with -, _, spaces, etc.) - Enhanced help output: Accurate flag descriptions, usage examples, and exit code documentation Tests - 3 new test suites (22 new tests): CLI integration (_test_cli.cjs), Stream API (_test_stream.cjs), Error paths (_test_errors.cjs) -- all previously had zero coverage - Fixed existing tests: Listener leak in multi-parse test (once() + removeAllListeners()); standardized on Jest expect() over Node assert(); restored VLines/HLines/Fills/Texts count assertions that were commented out - Renamed misleading _test_getRawTextContent.cjs to _test_sortBidiTexts.cjs - Regenerated 37 baseline files to reflect current parser output (baselines were stale since v0.6.8) - Test count: 52 tests / 4 suites -> 74 tests / 7 suites CI & Polish - CI workflow: Upgraded to actions v4; added tsc --noEmit type-check step; added coverage step - ESLint: Removed deprecated no-extra-semi and no-var-requires rules - CLAUDE.md: Added CLI flags table, exit codes, and test suite listing --- .github/workflows/ci.yml | 21 +- .prettierrc.cjs | 3 +- eslint.config.js | 2 - jest.config.json | 7 +- package.json | 15 +- rollup.config.js | 41 +- src/cli/p2jcli.ts | 400 +++++++++--------- src/cli/p2jcliarg.ts | 154 ++++--- test/_test_.cjs | 233 +++------- test/_test_cli.cjs | 119 ++++++ test/_test_errors.cjs | 98 +++++ ...extContent.cjs => _test_sortBidiTexts.cjs} | 12 +- test/_test_stream.cjs | 128 ++++++ test/_test_testMultipleDataPDF.cjs | 98 ++--- test/data/fd/form/F1040.json | 2 +- test/data/fd/form/F1040A.json | 2 +- test/data/fd/form/F1040EZ.json | 2 +- test/data/fd/form/F1040ST.json | 2 +- test/data/fd/form/F1040V.json | 2 +- test/data/fd/form/F1116.json | 2 +- test/data/fd/form/F1310.json | 2 +- test/data/fd/form/F2106.json | 2 +- test/data/fd/form/F2106EZ.json | 2 +- test/data/fd/form/F2106EZS.json | 2 +- test/data/fd/form/F2106S.json | 2 +- test/data/fd/form/F2120.json | 2 +- test/data/fd/form/F2210.json | 2 +- test/data/fd/form/F2210AI.json | 2 +- test/data/fd/form/F2210F.json | 2 +- test/data/fd/form/F2439.json | 2 +- test/data/fd/form/F2441.json | 2 +- test/data/fd/form/F2441DEP.json | 2 +- test/data/fd/form/F2555EZ.json | 2 +- test/data/fd/form/F2555EZS.json | 2 +- test/data/fd/form/F982.json | 2 +- test/data/fd/form/FSCHA.json | 2 +- test/data/fd/form/FSCHB.json | 2 +- test/data/fd/form/FSCHB2.json | 2 +- test/data/fd/form/FSCHB3.json | 2 +- test/data/fd/form/FSCHC.json | 2 +- test/data/fd/form/FSCHCEZS.json | 2 +- test/data/fd/form/FSCHCEZT.json | 2 +- test/data/fd/form/FSCHD.json | 2 +- test/data/fd/form/FSCHE1.json | 2 +- test/data/fd/form/FSCHE2.json | 2 +- test/data/fd/form/FSCHEIC.json | 2 +- test/data/fd/form/FSCHF.json | 2 +- test/data/fd/form/FSCHHS.json | 2 +- test/data/fd/form/FSCHHT.json | 2 +- test/data/fd/form/FSCHJ.json | 2 +- test/data/fd/form/FSCHR.json | 2 +- test/p2j.one.sh | 4 +- tsconfig.json | 10 +- 53 files changed, 837 insertions(+), 582 deletions(-) create mode 100644 test/_test_cli.cjs create mode 100644 test/_test_errors.cjs rename test/{_test_getRawTextContent.cjs => _test_sortBidiTexts.cjs} (81%) create mode 100644 test/_test_stream.cjs diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 040f13ca..584e84cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,31 +11,34 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Deno 2.4.3 uses: denoland/setup-deno@v1 with: deno-version: 2.4.3 - + - name: Setup Bun 1.2.19 uses: oven-sh/setup-bun@v1 with: bun-version: 1.2.19 - name: Setup Node.js 20.18.0 - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20.18.0 - - - name: Clean install dependencies - run: rm -rf node_modules package-lock.json && npm i - # - name: Install dependencies - # run: npm ci + - name: Install dependencies + run: npm ci - name: Build project run: npm run build + - name: Type check + run: npx tsc --noEmit + - name: Run tests - run: npm run test + run: npm run test + + - name: Run coverage + run: npm run test:coverage diff --git a/.prettierrc.cjs b/.prettierrc.cjs index 0ab4d919..bf63c80f 100644 --- a/.prettierrc.cjs +++ b/.prettierrc.cjs @@ -1,4 +1,5 @@ module.exports = { - ...require('prettier-config-standard'), + semi: false, + singleQuote: true, trailingComma: 'es5', } diff --git a/eslint.config.js b/eslint.config.js index e398f5d8..32a33318 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -207,8 +207,6 @@ export default [ destructuredArrayIgnorePattern: "^_?" } ], - "@typescript-eslint/no-extra-semi": "off", - "@typescript-eslint/no-var-requires": "off", "arrow-body-style": ["error", "as-needed"], "dot-notation": ["error"], "eqeqeq": ["error", "always"], diff --git a/jest.config.json b/jest.config.json index 4856bc3a..981d88b7 100644 --- a/jest.config.json +++ b/jest.config.json @@ -4,9 +4,12 @@ "bail": false, "testFailureExitCode": 1, "transform": {}, - "testTimeout": 6000, + "testTimeout": 15000, "moduleFileExtensions": ["js", "cjs", "mjs", "json"], "verbose": true, "forceExit": true, - "maxWorkers": "50%" + "maxWorkers": "50%", + "coverageDirectory": "coverage", + "coverageReporters": ["text", "lcov"], + "coveragePathIgnorePatterns": ["/node_modules/", "/test/", "/base/", "/lib/pdfjs-code.js"] } diff --git a/package.json b/package.json index 9de7668e..6389c24c 100644 --- a/package.json +++ b/package.json @@ -31,9 +31,10 @@ }, "main": "./dist/pdfparser.cjs", "module": "./dist/pdfparser.js", - "typings": "./dist/pdfparser.d.ts", + "types": "./dist/pdfparser.d.ts", "scripts": { "test:jest": "jest --config ./jest.config.json --detectOpenHandles", + "test:coverage": "jest --config ./jest.config.json --coverage --detectOpenHandles", "test": "npm run test:jest && npm run parse-r && npm run parse-fd && npm run test:deno && npm run test:bun", "test:forms": "cd ./test && sh p2j.forms.sh", "test:misc": "cd ./test && sh p2j.one.sh misc . \"Expected: 16 success, 6 fail exception with stack trace\" ", @@ -84,7 +85,6 @@ "eslint": "^10.0.2", "jest": "^30.2.0", "rollup": "^4.52.4", - "tslib": "^2.6.2", "typescript": "5.9.3" }, "resolutions": { @@ -105,9 +105,14 @@ "readme": "https://github.com/modesty/pdf2json/blob/master/readme.md", "exports": { ".": { - "types": "./dist/pdfparser.d.ts", - "import": "./dist/pdfparser.js", - "require": "./dist/pdfparser.cjs" + "import": { + "types": "./dist/pdfparser.d.ts", + "default": "./dist/pdfparser.js" + }, + "require": { + "types": "./dist/pdfparser.d.cts", + "default": "./dist/pdfparser.cjs" + } } }, "publishConfig": { diff --git a/rollup.config.js b/rollup.config.js index 963b4cd2..592be754 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -19,6 +19,8 @@ const external = [ ]; export default [ + // Build 1: Main library bundle (pdfparser.js -> dist/) + // Must complete before Build 2, as the CLI imports from dist/pdfparser.js { input: "./pdfparser.js", external, @@ -34,46 +36,43 @@ export default [ sourcemap: true, }, ], - treeshake: false, + treeshake: false, // Required: PDF.js base has global side effects that tree-shaking would break plugins: [ json(), eslint({ - throwOnError: true + throwOnError: true, }), nodeResolve({ - preferBuiltins: true, // Prefer Node.js built-in modules - browser: false // Set to true only if targeting browsers - }), - terser() - ] + preferBuiltins: true, + browser: false, + }), + terser(), + ], }, + // Build 2: CLI bundle (src/cli/ -> bin/cli/) + // Depends on Build 1: imports dist/pdfparser.js as external at runtime { input: "./src/cli/p2jcli.ts", external: [...external, "../../dist/pdfparser.js"], output: [ - // { - // file: "dist/pdfparser_cli.cjs", - // format: "cjs", - // sourcemap: true, - // }, { file: "bin/cli/pdfparser_cli.js", format: "es", sourcemap: true, }, ], - treeshake: false, + treeshake: true, plugins: [ - typescript({ tsconfig: './tsconfig.json' }), + typescript({ tsconfig: "./tsconfig.json" }), json(), eslint({ - throwOnError: true + throwOnError: true, }), nodeResolve({ - preferBuiltins: true, // Prefer Node.js built-in modules - browser: false // Set to true only if targeting browsers - }), - terser() - ] - } + preferBuiltins: true, + browser: false, + }), + terser(), + ], + }, ]; diff --git a/src/cli/p2jcli.ts b/src/cli/p2jcli.ts index aa67fe64..9c0f719a 100644 --- a/src/cli/p2jcli.ts +++ b/src/cli/p2jcli.ts @@ -7,26 +7,41 @@ import PDFParser from "../../dist/pdfparser.js"; // Type definitions for CLI operations type PDFParserError = { parserError: Error }; type PDFParserData = Record; -type PromiseResolve = (value: T) => void; -type PromiseReject = (reason: Error) => void; type ProcessingResult = PromiseSettledResult[]; +// Exit codes +const EXIT_SUCCESS = 0; +const EXIT_PARSE_ERROR = 1; +const EXIT_ARG_ERROR = 2; +const EXIT_IO_ERROR = 3; + const { ParserStream, StringifyStream, pkInfo, _PARSER_SIG: _PRO_TIMER } = PDFParser; const { argv } = yargs; const ONLY_SHOW_VERSION = "v" in argv; const ONLY_SHOW_HELP = "h" in argv; -const VERBOSITY_LEVEL = "s" in argv ? 0 : 5; +const VERBOSITY_LEVEL = ("s" in argv || "q" in argv || "j" in argv) ? 0 : 5; const HAS_INPUT_DIR_OR_FILE = "f" in argv; const PROCESS_RAW_TEXT_CONTENT = "c" in argv; const PROCESS_FIELDS_CONTENT = "t" in argv; const PROCESS_MERGE_BROKEN_TEXT_BLOCKS = "m" in argv; const PROCESS_WITH_STREAM = "r" in argv; -const SINGLETON_PDF_PARSER= "si" in argv; +const SINGLETON_PDF_PARSER = "si" in argv; +const JSON_OUTPUT = "j" in argv; +const QUIET_MODE = "q" in argv; const INPUT_DIR_OR_FILE = argv.f; +// Conditionally log based on quiet/json mode +const SUPPRESS_LOG = QUIET_MODE || JSON_OUTPUT; +function logInfo(...args: unknown[]) { + if (!SUPPRESS_LOG) console.log(...args); +} +function logWarn(...args: unknown[]) { + if (!SUPPRESS_LOG) console.warn(...args); +} + class PDFProcessor { private inputDir = ''; private inputFile = ''; @@ -38,27 +53,21 @@ class PDFProcessor { // eslint-disable-next-line @typescript-eslint/no-explicit-any private pdfParser: any = null; - // eslint-disable-next-line @typescript-eslint/no-explicit-any - private curCLI : any = null; + private curCLI: PDFCLI; - // constructor - constructor(inputDir: string, inputFile: string, curCLI: PDFCLI) { - // public, this instance copies + constructor(inputDir: string, inputFile: string, curCLI: PDFCLI, sharedParser?: unknown) { this.inputDir = path.normalize(inputDir); this.inputFile = inputFile; this.inputPath = path.join(this.inputDir, this.inputFile); - - this.outputDir = path.normalize(argv.o || inputDir); - - this.pdfParser = null; + this.outputDir = path.normalize((argv.o as string) || inputDir); + this.pdfParser = sharedParser || null; this.curCLI = curCLI; } - //private methods - private generateMergedTextBlocksStream() { + private generateMergedTextBlocksStream() { return new Promise((resolve, reject) => { if (!this.pdfParser) { - reject("PDFParser instance is not available."); + reject(new Error("PDFParser instance is not available.")); return; } const outputStream = ParserStream.createOutputStream( @@ -99,51 +108,47 @@ class PDFProcessor { } private processAdditionalStreams() { - const outputTasks : Promise[] = []; + const outputTasks: Promise[] = []; if (PROCESS_FIELDS_CONTENT) { - //needs to generate fields.json file outputTasks.push(this.generateFieldsTypesStream()); } if (PROCESS_RAW_TEXT_CONTENT) { - //needs to generate content.txt file outputTasks.push(this.generateRawTextContentStream()); } if (PROCESS_MERGE_BROKEN_TEXT_BLOCKS) { - //needs to generate json file with merged broken text blocks outputTasks.push(this.generateMergedTextBlocksStream()); } return Promise.allSettled(outputTasks); } - private onPrimarySuccess(resolve: PromiseResolve, reject: PromiseReject): void { - this.curCLI.addResultCount(false); - this.processAdditionalStreams() - .then((retVal: PromiseSettledResult[]) => resolve(retVal)) - .catch((err: Error) => reject(err)); - } - - private onPrimaryError(err: Error, reject: PromiseReject): void { - this.curCLI.addResultCount(err); - reject(err); + private initParser() { + if (!this.pdfParser) { + this.pdfParser = new PDFParser(null, PROCESS_RAW_TEXT_CONTENT); + } } - private parseOnePDFStream() { + private parseOnePDFStream(): Promise { return new Promise((resolve, reject) => { - if((SINGLETON_PDF_PARSER && !this.pdfParser) || !SINGLETON_PDF_PARSER){ - //initialize the parser if the singleton parameter was not provided, or if the singleton parameter was provided and the parser is not initialized - this.pdfParser = new PDFParser(null, PROCESS_RAW_TEXT_CONTENT); - this.pdfParser.on("pdfParser_dataError", (evtData: PDFParserError) => - this.onPrimaryError(evtData.parserError, reject) - ); - } + this.initParser(); + + this.pdfParser.on("pdfParser_dataError", (evtData: PDFParserError) => { + this.curCLI.addResultCount(true); + reject(evtData.parserError); + }); const outputStream = fs.createWriteStream(this.outputPath, { encoding: 'utf8' }); - outputStream.on("finish", () => this.onPrimarySuccess(resolve, reject)); - outputStream.on("error", (err) => this.onPrimaryError(err, reject)); + outputStream.on("finish", () => { + this.curCLI.addResultCount(false); + this.processAdditionalStreams() + .then((retVal) => resolve(retVal)) + .catch((err) => reject(err)); + }); + outputStream.on("error", (err) => { + this.curCLI.addResultCount(true); + reject(err); + }); - console.info( - `Transcoding Stream ${this.inputFile} to - ${this.outputPath}` - ); + logInfo(`Transcoding Stream ${this.inputFile} to - ${this.outputPath}`); const inputStream = fs.createReadStream(this.inputPath); inputStream .pipe(this.pdfParser.createParserStream()) @@ -152,43 +157,39 @@ class PDFProcessor { }); } - private parseOnePDF() { + private parseOnePDF(): Promise { return new Promise((resolve, reject) => { - if((SINGLETON_PDF_PARSER && !this.pdfParser) || !SINGLETON_PDF_PARSER){ - //initialize the parser if the singleton parameter was not provided, or if the singleton parameter was provided and the parser is not initialized - this.pdfParser = new PDFParser(null, PROCESS_RAW_TEXT_CONTENT); - this.pdfParser.on("pdfParser_dataError", (evtData: PDFParserError) => - this.onPrimaryError(evtData.parserError, reject) - ); - } + this.initParser(); - this.pdfParser.on("pdfParser_dataReady", (evtData: PDFParserData) => { - fs.writeFile(this.outputPath, JSON.stringify(evtData), 'utf8', (err) => { - if (err) { - this.onPrimaryError(err, reject); - } else { - this.onPrimarySuccess(resolve, reject); - } - }); + this.pdfParser.on("pdfParser_dataError", (evtData: PDFParserError) => { + this.curCLI.addResultCount(true); + reject(evtData.parserError); }); - console.info( - `Transcoding File ${this.inputFile} to - ${this.outputPath}` - ); + this.pdfParser.on("pdfParser_dataReady", async (evtData: PDFParserData) => { + try { + await fs.promises.writeFile(this.outputPath, JSON.stringify(evtData), 'utf8'); + this.curCLI.addResultCount(false); + const result = await this.processAdditionalStreams(); + resolve(result); + } catch (err) { + this.curCLI.addResultCount(true); + reject(err); + } + }); + + logInfo(`Transcoding File ${this.inputFile} to - ${this.outputPath}`); this.pdfParser.loadPDF(this.inputPath, VERBOSITY_LEVEL); }); } - //public methods async validateParams() { let retVal = ''; if (!fs.existsSync(this.inputDir)) - retVal = - `Input error: input directory doesn't exist - ${this.inputDir}.`; + retVal = `Input error: input directory doesn't exist - ${this.inputDir}.`; else if (!fs.existsSync(this.inputPath)) - retVal = - `Input error: input file doesn't exist - ${this.inputPath}.`; + retVal = `Input error: input file doesn't exist - ${this.inputPath}.`; else if (!fs.existsSync(this.outputDir)) { try { await fs.promises.mkdir(this.outputDir, { recursive: true }); @@ -199,28 +200,18 @@ class PDFProcessor { } if (retVal !== '') { - this.curCLI.addResultCount(retVal); + this.curCLI.addResultCount(true); return retVal; } const inExtName = path.extname(this.inputFile).toLowerCase(); if (inExtName !== ".pdf") { - retVal = - `Input error: input file name doesn't have pdf extention - ${this.inputFile}.`; - } - else { + retVal = `Input error: input file name doesn't have pdf extension - ${this.inputFile}.`; + } else { this.outputFile = `${path.basename(this.inputPath, inExtName)}.json`; this.outputPath = path.normalize(`${this.outputDir}/${this.outputFile}`); if (fs.existsSync(this.outputPath)) { - console.warn(`Output file will be replaced - ${this.outputPath}`); - } - else { - const fod = fs.openSync(this.outputPath, "wx"); - if (!fod) retVal = `Input error: can not write to ${this.outputPath}`; - else { - fs.closeSync(fod); - fs.unlinkSync(this.outputPath); - } + logWarn(`Output file will be replaced - ${this.outputPath}`); } } return retVal; @@ -233,56 +224,55 @@ class PDFProcessor { this.outputDir = ''; this.outputPath = ''; - if (this.pdfParser) { + if (this.pdfParser && !SINGLETON_PDF_PARSER) { this.pdfParser.destroy(); } this.pdfParser = null; - this.curCLI = null; } - processFile() { - return new Promise((resolve, reject) => { - this.validateParams() - .then((validateMsg) => { - if (validateMsg !== '') { - reject(validateMsg); - } - else { - const parserFunc = PROCESS_WITH_STREAM - ? this.parseOnePDFStream - : this.parseOnePDF; - parserFunc - .call(this) - .then((value) => resolve(value)) - .catch((err) => reject(err)); - } - }) - .catch((err) => reject(err)); - }); + async processFile(): Promise { + const validateMsg = await this.validateParams(); + if (validateMsg !== '') { + throw new Error(validateMsg); + } + return PROCESS_WITH_STREAM ? this.parseOnePDFStream() : this.parseOnePDF(); } getOutputFile = () => path.join(this.outputDir, this.outputFile); } +// Structured result for --json output +interface JsonOutput { + version: string; + input: string; + outputs: { type: string; path: string }[]; + stats: { input: number; success: number; failed: number }; + errors: string[]; + elapsedMs: number; +} + export default class PDFCLI { inputCount = 0; successCount = 0; failedCount = 0; - warningCount = 0; - statusMsgs : string[] = []; + statusMsgs: string[] = []; + private outputPaths: { type: string; path: string }[] = []; + private errorMessages: string[] = []; + private startTime = 0; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + private sharedParser: any = null; - // constructor constructor() { this.inputCount = 0; this.successCount = 0; this.failedCount = 0; - this.warningCount = 0; this.statusMsgs = []; + this.outputPaths = []; + this.errorMessages = []; } initialize(): { success: boolean; error?: string } { try { - // Handle version and help flags if (ONLY_SHOW_VERSION) { console.log(pkInfo.version); return { success: false }; @@ -293,7 +283,6 @@ export default class PDFCLI { return { success: false }; } - // Validate mandatory -f parameter if (!HAS_INPUT_DIR_OR_FILE) { return { success: false, @@ -301,15 +290,13 @@ export default class PDFCLI { }; } - // Validate that -f has a value - if (typeof INPUT_DIR_OR_FILE !== 'string' || INPUT_DIR_OR_FILE.trim() === '') { + if (typeof INPUT_DIR_OR_FILE !== 'string' || (INPUT_DIR_OR_FILE as string).trim() === '') { return { success: false, error: "-f|--file parameter must have a valid path value." }; } - // Validate that -f is not specified multiple times if (Array.isArray(INPUT_DIR_OR_FILE)) { return { success: false, @@ -317,22 +304,13 @@ export default class PDFCLI { }; } - // Validate input path exists - if (!fs.existsSync(INPUT_DIR_OR_FILE)) { + if (!fs.existsSync(INPUT_DIR_OR_FILE as string)) { return { success: false, error: `Input path does not exist: ${INPUT_DIR_OR_FILE}` }; } - // Validate output directory if specified - // if (argv.o && !fs.existsSync(argv.o)) { - // return { - // success: false, - // error: `Output directory does not exist: ${argv.o}` - // }; - // } - return { success: true }; } catch (e: unknown) { const error = e instanceof Error ? e : new Error(String(e)); @@ -344,24 +322,27 @@ export default class PDFCLI { } async start() { - // Initialize and validate parameters const initResult = this.initialize(); if (!initResult.success) { if (initResult.error) { - // Show help for parameter errors yargs.showHelp(); console.error(`\nError: ${initResult.error}`); - process.exit(1); + process.exit(EXIT_ARG_ERROR); } - // Exit cleanly for -v or -h flags (no error) - process.exit(0); + process.exit(EXIT_SUCCESS); } - console.log(_PRO_TIMER); - console.time(_PRO_TIMER); + this.startTime = Date.now(); + logInfo(_PRO_TIMER); + if (!SUPPRESS_LOG) console.time(_PRO_TIMER); + + if (SINGLETON_PDF_PARSER) { + this.sharedParser = new PDFParser(null, PROCESS_RAW_TEXT_CONTENT); + } let hasError = false; let errorMessage: string | undefined; + let exitCode = EXIT_SUCCESS; try { const inputStatus = fs.statSync(INPUT_DIR_OR_FILE as string); @@ -379,105 +360,128 @@ export default class PDFCLI { const error = e instanceof Error ? e : new Error(String(e)); errorMessage = `Exception during processing: ${error.message}`; this.addStatusMsg(true, errorMessage); + this.errorMessages.push(errorMessage); this.failedCount++; + + if (error.message.includes("ENOENT") || error.message.includes("EACCES") || error.message.includes("EPERM")) { + exitCode = EXIT_IO_ERROR; + } else { + exitCode = EXIT_PARSE_ERROR; + } } finally { - this.complete(hasError, errorMessage); + if (exitCode === EXIT_SUCCESS && this.failedCount > 0) { + exitCode = EXIT_PARSE_ERROR; + } + this.complete(hasError, errorMessage, exitCode); } } - complete(hasError: boolean = false, errorMessage?: string) { - const stdioFunc = (hasError || this.failedCount > 0) ? console.error : console.log; + complete(hasError: boolean = false, errorMessage?: string, exitCode: number = EXIT_SUCCESS) { + if (JSON_OUTPUT) { + const jsonOutput: JsonOutput = { + version: pkInfo.version, + input: INPUT_DIR_OR_FILE as string, + outputs: this.outputPaths, + stats: { + input: this.inputCount, + success: this.successCount, + failed: this.failedCount, + }, + errors: this.errorMessages, + elapsedMs: Date.now() - this.startTime, + }; + console.log(JSON.stringify(jsonOutput)); + } else { + const stdioFunc = (hasError || this.failedCount > 0) ? console.error : logInfo; - if (errorMessage) { - stdioFunc(`\nError: ${errorMessage}`); + if (errorMessage) { + stdioFunc(`\nError: ${errorMessage}`); + } + if (this.statusMsgs.length > 0) { + stdioFunc(this.statusMsgs); + } + stdioFunc( + `\n${this.inputCount} input files\t${this.successCount} success\t${this.failedCount} fail` + ); } - if (this.statusMsgs.length > 0) { - stdioFunc(this.statusMsgs); + + if (this.sharedParser) { + this.sharedParser.destroy(); + this.sharedParser = null; } - stdioFunc( - `\n${this.inputCount} input files\t${this.successCount} success\t${this.failedCount} fail\t${this.warningCount} warning` - ); process.nextTick(() => { - console.timeEnd(_PRO_TIMER); - if (hasError || this.failedCount > 0) { - process.exit(1); - } + if (!SUPPRESS_LOG) console.timeEnd(_PRO_TIMER); + process.exit(exitCode); }); } - processOneFile(inputDir:string, inputFile:string) { - return new Promise((resolve, reject) => { - const p2j = new PDFProcessor(inputDir, inputFile, this); - p2j - .processFile() - .then((retVal: unknown) => { - const result = retVal as ProcessingResult; - this.addStatusMsg( - false, - `${path.join(inputDir, inputFile)} => ${p2j.getOutputFile()}` - ); - result.forEach((ret: PromiseSettledResult) => { - if (ret.status === 'fulfilled') { - this.addStatusMsg(false, `+ ${ret.value}`); - } - }); - resolve(result); - }) - .catch((error) => { - this.addStatusMsg( - error, - `${path.join(inputDir, inputFile)} => ${error}` - ); - reject(error); - }) - .finally(() => p2j.destroy()); - }); + async processOneFile(inputDir: string, inputFile: string): Promise { + const p2j = new PDFProcessor(inputDir, inputFile, this, this.sharedParser); + try { + const result = await p2j.processFile(); + const outputFile = p2j.getOutputFile(); + this.addStatusMsg(false, `${path.join(inputDir, inputFile)} => ${outputFile}`); + this.outputPaths.push({ type: "json", path: outputFile }); + + result.forEach((ret: PromiseSettledResult) => { + if (ret.status === 'fulfilled' && ret.value) { + const filePath = String(ret.value); + this.addStatusMsg(false, `+ ${filePath}`); + const ext = path.extname(filePath); + let type = "unknown"; + if (ext === ".json" && filePath.includes(".fields.")) type = "fields"; + else if (ext === ".json" && filePath.includes(".merged.")) type = "merged"; + else if (ext === ".txt") type = "content"; + this.outputPaths.push({ type, path: filePath }); + } + }); + return result; + } catch (error) { + const errMsg = error instanceof Error ? error.message : String(error); + this.addStatusMsg(true, `${path.join(inputDir, inputFile)} => ${errMsg}`); + this.errorMessages.push(errMsg); + throw error; + } finally { + p2j.destroy(); + } } processFiles(inputDir: string, files: string[]): Promise[]> { const allPromises: Promise[] = []; - files.forEach((file: string, idx: number) => + files.forEach((file: string) => allPromises.push(this.processOneFile(inputDir, file)) ); return Promise.allSettled(allPromises); } - processOneDirectory(inputDir:string) { - return new Promise((resolve, reject) => { - fs.readdir(inputDir, (err, files) => { - if (err) { - this.addStatusMsg(true, `[${inputDir}] - ${err.toString()}`); - reject(err); - } else { - const _iChars = "!@#$%^&*()+=[]\\';,/{}|\":<>?~`.-_ "; - const pdfFiles = files.filter( - (file) => - file.slice(-4).toLowerCase() === ".pdf" && - _iChars.indexOf(file.substring(0, 1)) < 0 - ); - - this.inputCount = pdfFiles.length; - if (this.inputCount > 0) { - this.processFiles(inputDir, pdfFiles) - .then((value) => resolve(value)) - .catch((err) => reject(err)); - } else { - this.addStatusMsg(true, `[${inputDir}] - No PDF files found`); - resolve('no pdf files found'); - } - } - }); + async processOneDirectory(inputDir: string) { + const files = await fs.promises.readdir(inputDir); + const pdfFiles = files.filter((file) => { + if (file.slice(-4).toLowerCase() !== ".pdf") return false; + // Skip hidden/dotfiles only + if (file.startsWith(".")) { + logWarn(`Skipping hidden file: ${file}`); + return false; + } + return true; }); + + this.inputCount = pdfFiles.length; + if (this.inputCount > 0) { + return this.processFiles(inputDir, pdfFiles); + } + this.addStatusMsg(true, `[${inputDir}] - No PDF files found`); + return 'no pdf files found'; } - addStatusMsg(error:boolean, oneMsg:string) { + addStatusMsg(error: boolean, oneMsg: string) { this.statusMsgs.push( error ? `✗ Error : ${oneMsg}` : `✓ Success : ${oneMsg}` ); } - addResultCount(error:boolean) { - error ? this.failedCount++ : this.successCount++; + addResultCount(isError: boolean) { + isError ? this.failedCount++ : this.successCount++; } } diff --git a/src/cli/p2jcliarg.ts b/src/cli/p2jcliarg.ts index 535f193c..ca34e9a5 100644 --- a/src/cli/p2jcliarg.ts +++ b/src/cli/p2jcliarg.ts @@ -12,24 +12,16 @@ type AliasEntry = { }; export type Argv = { - v?: string, - h?: string, - f?: string, - o?: string, - s?: string, - t?: string, - c?: string, - m?: string, - r?: string, - si?: string, + [key: string]: string | boolean | number | (string | boolean | number)[]; }; export class CLIArgParser { args : string[] = []; private aliases: Alias = {}; - private usageMsg = ""; // Rename 'usage' to 'usageMsg' - private parsedArgv : object | null = null; + private usageMsg = ""; + private examplesMsg = ""; + private parsedArgv : Argv | null = null; // constructor constructor(args: string[]) { @@ -37,7 +29,7 @@ export class CLIArgParser { } usage(usageMsg:string) { - this.usageMsg = `${usageMsg}\n\nOptions:\n`; // Rename 'usage' to 'usageMsg' + this.usageMsg = `${usageMsg}\n\nOptions:\n`; return this; } @@ -46,11 +38,19 @@ export class CLIArgParser { return this; } + examples(msg: string) { + this.examplesMsg = msg; + return this; + } + showHelp() { let helpMsg = this.usageMsg; for (const [key, value] of Object.entries(this.aliases)) { const { name, description } = value; - helpMsg += `-${key},--${name}\t ${description}\n`; + helpMsg += ` -${key}, --${name}\t${description}\n`; + } + if (this.examplesMsg) { + helpMsg += this.examplesMsg; } console.log(helpMsg); } @@ -115,9 +115,23 @@ export class CLIArgParser { } } + // Resolve a short flag string (after the leading '-') to its alias key. + // Handles multi-char short flags like "si" by checking the alias table first. + private resolveShortFlag(letters: string): string | null { + // Check if the full multi-char string is a known alias key + if (letters in this.aliases) return letters; + // Check if it matches a known alias name + for (const [akey, avalue] of Object.entries(this.aliases)) { + if (letters === avalue.name) return akey; + } + // Fall back to last character (single-char flag) + if (letters.length > 0) return letters.slice(-1); + return null; + } + private parseArgv() { - const { args } = this; // aliases = this.#aliases, - const argv = {}; + const { args } = this; + const argv: Argv = {}; for (let i = 0; i < args.length; i++) { const arg = args[i]; @@ -125,8 +139,8 @@ export class CLIArgParser { if (/^--.+/.test(arg)) { const extractKey = arg.match(/^--(.+)/); if (!Array.isArray(extractKey)) { - console.warn("Unknow CLI options:", arg); - continue; // continue if no match + console.warn("Unknown CLI options:", arg); + continue; } const key = extractKey[1]; const next = args[i + 1]; @@ -140,8 +154,9 @@ export class CLIArgParser { this.setArg(key, true, argv); } } else if (/^-[^-]+/.test(arg)) { - const key = arg.slice(-1)[0]; - if (key !== "-") { + const letters = arg.slice(1); + const key = this.resolveShortFlag(letters); + if (key && key !== "-") { if (args[i + 1] && !/^(-|--)[^-]/.test(args[i + 1])) { this.setArg(key, args[i + 1], argv); i++; @@ -153,7 +168,7 @@ export class CLIArgParser { } } } else { - console.warn("Unknow CLI options:", arg); + console.warn("Unknown CLI options:", arg); } } @@ -163,45 +178,58 @@ export class CLIArgParser { } export const yargs = new CLIArgParser(process.argv.slice(2)) - .usage(`\n${_PRO_TIMER}\n\nUsage: ${pkInfo.name} -f|--file [-o|output_dir]`) - .alias("v", "version", "Display version.") - .alias("h", "help", "Display brief help information.") - .alias( - "f", - "file", - "(required) Full path of input PDF file or a directory to scan for all PDF files.\n\t\t When specifying a PDF file name, it must end with .PDF, otherwise it would be treated as a input directory." - ) - .alias( - "o", - "output", - "(optional) Full path of output directory, must already exist.\n\t\t Current JSON file in the output folder will be replaced when file name is same." - ) - .alias( - "s", - "silent", - "(optional) when specified, will only log errors, otherwise verbose." - ) - .alias( - "t", - "fieldTypes", - "(optional) when specified, will generate .fields.json that includes fields ids and types." - ) - .alias( - "c", - "content", - "(optional) when specified, will generate .content.txt that includes text content from PDF." - ) - .alias( - "m", - "merge", - "(optional) when specified, will generate .merged.json that includes auto-merged broken text blocks from PDF." - ) - .alias( - "r", - "stream", - "(optional) when specified, will process and parse with buffer/object transform stream rather than file system." - ).alias( - "si", - "singleton", - "(optional) when specified, only an instance of PDFParser will be initialized." - ); + .usage(`\n${_PRO_TIMER}\n\nUsage: ${pkInfo.name} -f [options]`) + .alias("f", "file", + "(required) Path to a PDF file or a directory of PDF files to parse.") + .alias("o", "output", + "Output directory for generated files. Created automatically if it\n\t\t\tdoes not exist. Defaults to the same directory as the input file.") + .alias("s", "silent", + "Suppress informational output; only errors are printed.") + .alias("t", "fieldTypes", + "Generate a .fields.json file with form field ids and types.") + .alias("c", "content", + "Generate a .content.txt file with extracted text content.") + .alias("m", "merge", + "Generate a .merged.json file with auto-merged broken text blocks.") + .alias("r", "stream", + "Use stream-based parsing (read/transform/write pipeline)\n\t\t\tinstead of loading the entire file into memory first.") + .alias("si", "singleton", + "Reuse a single PDFParser instance across all files in a\n\t\t\tdirectory (reduces memory allocation for batch processing).") + .alias("j", "json", + "Output a structured JSON summary to stdout with version, file\n\t\t\tpaths, stats, and errors. Implies -s (suppresses verbose output).") + .alias("q", "quiet", + "Suppress all non-error output, including the timer and status\n\t\t\tmessages. Stricter than -s.") + .alias("v", "version", + "Print the version number and exit.") + .alias("h", "help", + "Print this help message and exit.") + .examples(` +Examples: + + Parse a single PDF to JSON: + pdf2json -f input.pdf + + Parse with a specific output directory: + pdf2json -f input.pdf -o ./output + + Parse and generate all output formats (JSON + fields + text + merged): + pdf2json -f input.pdf -o ./output -t -c -m + + Parse an entire directory of PDFs: + pdf2json -f ./pdf_folder -o ./output -s + + Parse using stream mode (lower memory for large files): + pdf2json -f input.pdf -o ./output -r + + Get structured JSON summary for scripting: + pdf2json -f input.pdf -o ./output --json + + Batch directory parse, silent, all outputs: + pdf2json -f ./pdf_folder -o ./output -s -t -c -m -r + +Exit Codes: + 0 All files parsed successfully + 1 One or more files failed to parse + 2 Invalid arguments or usage error + 3 I/O error (file not found, permission denied) +`); diff --git a/test/_test_.cjs b/test/_test_.cjs index ad1cc51a..7f5f686e 100644 --- a/test/_test_.cjs +++ b/test/_test_.cjs @@ -1,4 +1,3 @@ -const assert = require("assert"); const fs = require("fs"); const PDFParser = require("../dist/pdfparser.cjs"); @@ -6,16 +5,16 @@ const PDFParser = require("../dist/pdfparser.cjs"); // Add event listener for unhandled promise rejections process.on('unhandledRejection', (reason, promise) => { console.error('Unhandled Rejection at:', promise, 'reason:', reason); - process.exit(1); // Force exit when an unhandled promise rejection occurs + process.exit(1); }); function pdfParserRunner(fileName, fromBuffer) { const pdfParser = new PDFParser(); - var pdfFilePath = __dirname + "/pdf/fd/form/" + fileName + ".pdf"; - + const pdfFilePath = __dirname + "/pdf/fd/form/" + fileName + ".pdf"; + if (fromBuffer) { console.log("Parsing PDF from buffer: " + pdfFilePath); - let pdf = fs.readFileSync(pdfFilePath); + const pdf = fs.readFileSync(pdfFilePath); pdfParser.parseBuffer(pdf); } else { console.log("Parsing PDF from file: " + pdfFilePath); @@ -26,179 +25,66 @@ function pdfParserRunner(fileName, fromBuffer) { } function checkResult_parseStatus(err, stat, fileName) { - assert( - err === null || typeof err === "undefined", - fileName + " has errors : " + err || "" - ); - assert( - typeof stat === "object" && stat !== null, - fileName + " parsing result should be JS object : " + stat || "" - ); + expect(err === null || typeof err === "undefined").toBe(true); + expect(typeof stat === "object" && stat !== null).toBe(true); } function checkResult_mainFields(parsedData, fileName) { - assert( - parsedData.hasOwnProperty("Transcoder"), - fileName + " parsing error: doesn't have Transcoder object" - ); - assert( - parsedData.hasOwnProperty("Meta"), - fileName + " parsing error: doesn't have Meta object" - ); - assert( - parsedData.Meta.hasOwnProperty("Metadata"), - fileName + " parsing error: doesn't have Meta.Metadata object" - ); - assert( - parsedData.hasOwnProperty("Pages"), - fileName + " parsing error: doesn't have Pages object" - ); + expect(parsedData).toHaveProperty("Transcoder"); + expect(parsedData).toHaveProperty("Meta"); + expect(parsedData.Meta).toHaveProperty("Metadata"); + expect(parsedData).toHaveProperty("Pages"); } function checkResult_pageCount(Pages, count, fileName) { - assert( - Array.isArray(Pages), - fileName + " parsing error: doesn't have Pages array" - ); - assert( - Pages.length === count, - fileName + - " parsing error: Pages count " + - Pages.length + - " not equal to " + - count - ); + expect(Array.isArray(Pages)).toBe(true); + expect(Pages.length).toBe(count); const baseParsedFilePath = __dirname + "/data/fd/form/" + fileName + ".json"; const { formImage: baseParsed } = JSON.parse(fs.readFileSync(baseParsedFilePath, "utf8")); - assert( - baseParsed.Pages.length === count, - fileName + - " base parsed error: Pages count " + - baseParsed.Pages.length + - " not equal to " + - count - ); + expect(baseParsed.Pages.length).toBe(count); + for (let i = 0; i < count; i++) { - assert(Pages[i].Height === baseParsed.Pages[i].Height, - fileName + " page " + i + " Height not equal"); - // assert( - // Pages[i].VLines.length === baseParsed.Pages[i].VLines.length, - // fileName + - // " page " + - // i + - // " VLines count " + - // Pages[i].VLines.length + - // " not equal to " + - // baseParsed.Pages[i].VLines.length - // ); - // assert( - // Pages[i].HLines.length === baseParsed.Pages[i].HLines.length, - // fileName + - // " page " + - // i + - // " HLines count " + - // Pages[i].HLines.length + - // " not equal to " + - // baseParsed.Pages[i].HLines.length - // ); - // assert( - // Pages[i].Fills.length === baseParsed.Pages[i].Fills.length, - // fileName + - // " page " + - // i + - // " Fills count " + - // Pages[i].Fills.length + - // " not equal to " + - // baseParsed.Pages[i].Fills.length - // ); - // assert( - // Pages[i].Texts.length === baseParsed.Pages[i].Texts.length, - // fileName + - // " page " + - // i + - // " Texts count " + - // Pages[i].Texts.length + - // " not equal to " + - // baseParsed.Pages[i].Texts.length - // ); - assert(Pages[i].Fields.length === baseParsed.Pages[i].Fields.length, - "Fields count of page " + i + " is " + Pages[i].Fields.length + ", not equal to " + baseParsed.Pages[i].Fields.length); - assert(Pages[i].Boxsets.length === baseParsed.Pages[i].Boxsets.length, - "Boxsets count of page " + i + " is " + Pages[i].Boxsets.length + ", not equal to " + baseParsed.Pages[i].Boxsets.length); + expect(Pages[i].Height).toBe(baseParsed.Pages[i].Height); + expect(Pages[i].VLines.length).toBe(baseParsed.Pages[i].VLines.length); + expect(Pages[i].HLines.length).toBe(baseParsed.Pages[i].HLines.length); + expect(Pages[i].Fills.length).toBe(baseParsed.Pages[i].Fills.length); + expect(Pages[i].Texts.length).toBe(baseParsed.Pages[i].Texts.length); + expect(Pages[i].Fields.length).toBe(baseParsed.Pages[i].Fields.length); + expect(Pages[i].Boxsets.length).toBe(baseParsed.Pages[i].Boxsets.length); } } function checkResult_pageContent(Pages, fileName) { - Pages.forEach((page, index, list) => { - assert( - page.hasOwnProperty("Height"), - fileName + " page " + index + " : doesn't have Height field" - ); - assert( - page.hasOwnProperty("HLines"), - fileName + " page " + index + " : doesn't have HLines object" - ); - assert( - page.hasOwnProperty("VLines"), - fileName + " page " + index + " : doesn't have VLines object" - ); - assert( - page.hasOwnProperty("Fills"), - fileName + " page " + index + " : doesn't have Fills object" - ); - assert( - page.hasOwnProperty("Texts"), - fileName + " page " + index + " : doesn't have Texts object" - ); - assert( - page.hasOwnProperty("Width"), - fileName + " page " + index + " : doesn't have With object" - ); - assert( - page.hasOwnProperty("Height"), - fileName + " page " + index + " : doesn't have Height object" - ); + Pages.forEach((page, index) => { + expect(page).toHaveProperty("Height"); + expect(page).toHaveProperty("HLines"); + expect(page).toHaveProperty("VLines"); + expect(page).toHaveProperty("Fills"); + expect(page).toHaveProperty("Texts"); + expect(page).toHaveProperty("Width"); }); } function checkResult_textCoordinates(Pages, fileName) { - // Verify text block coordinates are unique (issue #408 regression test) Pages.forEach((page, pageIndex) => { const texts = page.Texts || []; - if (texts.length === 0) return; // Skip pages with no text + if (texts.length === 0) return; - // Collect all coordinates const coords = texts.map(t => ({ x: t.x, y: t.y })); - - // Create unique coordinate strings const uniqueCoords = new Set(coords.map(c => `${c.x},${c.y}`)); - // Check that we have more than one unique coordinate if we have multiple text elements - // This prevents the regression where all text elements had identical coordinates (-0.25, 48.75) + // Regression test for issue #408: all text elements had identical coordinates if (texts.length > 5) { - assert( - uniqueCoords.size > 1, - fileName + " page " + pageIndex + - " : all " + texts.length + " text elements have identical coordinates. " + - "This is a regression of issue #408. Found only " + uniqueCoords.size + - " unique coordinate(s): " + Array.from(uniqueCoords).slice(0, 3).join(", ") - ); + expect(uniqueCoords.size).toBeGreaterThan(1); } - // Verify coordinates are reasonable (not all the same broken value) - texts.forEach((text, textIndex) => { - assert( - typeof text.x === 'number' && !isNaN(text.x), - fileName + " page " + pageIndex + " text " + textIndex + - " : has invalid x coordinate: " + text.x - ); - assert( - typeof text.y === 'number' && !isNaN(text.y), - fileName + " page " + pageIndex + " text " + textIndex + - " : has invalid y coordinate: " + text.y - ); + texts.forEach((text) => { + expect(typeof text.x).toBe('number'); + expect(isNaN(text.x)).toBe(false); + expect(typeof text.y).toBe('number'); + expect(isNaN(text.y)).toBe(false); }); }); } @@ -206,13 +92,12 @@ function checkResult_textCoordinates(Pages, fileName) { async function parseAndVerifyOnePDF(fileName, fromBuffer, pageCount) { let timeoutId; let pdfParser = null; - + try { pdfParser = pdfParserRunner(fileName, fromBuffer); - - const pdfParserDataReady = new Promise((resolve, reject) => { - // Setup cleanup function to avoid memory leaks - const cleanupListeners = () => { + + const evtData = await new Promise((resolve, reject) => { + const cleanup = () => { try { if (pdfParser) { pdfParser.removeAllListeners("pdfParser_dataReady"); @@ -223,46 +108,36 @@ async function parseAndVerifyOnePDF(fileName, fromBuffer, pageCount) { } if (timeoutId) clearTimeout(timeoutId); }; - - pdfParser.on("pdfParser_dataReady", (evtData) => { - cleanupListeners(); - resolve(evtData); + + pdfParser.on("pdfParser_dataReady", (data) => { + cleanup(); + resolve(data); }); - pdfParser.on("pdfParser_dataError", (evtData) => { - cleanupListeners(); - reject(evtData); + pdfParser.on("pdfParser_dataError", (data) => { + cleanup(); + reject(data); }); - - // Add a timeout to avoid hanging + timeoutId = setTimeout(() => { - console.error(`*** Timeout triggered for ${fileName} after 15 seconds ***`); - cleanupListeners(); + cleanup(); reject(new Error(`Parsing ${fileName} timed out after 15 seconds`)); }, 15000); }); - const evtData = await pdfParserDataReady; - expect(evtData).toBeDefined(); checkResult_parseStatus(null, evtData, fileName); checkResult_mainFields(evtData, fileName); checkResult_pageCount(evtData.Pages, pageCount, fileName); checkResult_pageContent(evtData.Pages, fileName); checkResult_textCoordinates(evtData.Pages, fileName); - } catch (error) { - console.error(`Error parsing PDF ${fileName}: `, error); - throw error; // Re-throw to ensure Jest knows the test failed } finally { - // Force cleanup any references in finally block to ensure it happens even on error try { if (pdfParser) { - // Remove all listeners that might prevent garbage collection pdfParser.removeAllListeners(); - - pdfParser.destroy(); + pdfParser.destroy(); pdfParser = null; - } + } } catch (e) { console.error(`Error during cleanup for ${fileName}:`, e); } @@ -270,7 +145,6 @@ async function parseAndVerifyOnePDF(fileName, fromBuffer, pageCount) { } describe("Federal main forms", () => { - // Using test.each for better isolation const testCases = [ { name: "1040ez from file", fileName: "F1040EZ", fromBuffer: false, pageCount: 2 }, { name: "1040ez from buffer", fileName: "F1040EZ", fromBuffer: true, pageCount: 2 }, @@ -284,14 +158,12 @@ describe("Federal main forms", () => { { name: "1040V from buffer", fileName: "F1040V", fromBuffer: true, pageCount: 1 } ]; - // Run each test in isolation test.each(testCases)('$name', async ({ fileName, fromBuffer, pageCount }) => { await parseAndVerifyOnePDF(fileName, fromBuffer, pageCount); }); }); describe("Federal schedules", () => { - // Using test.each for better isolation const scheduleTestCases = [ { name: "Fed Schedule A", fileName: "FSCHA", fromBuffer: false, pageCount: 1 }, { name: "Fed Schedule B", fileName: "FSCHB", fromBuffer: true, pageCount: 1 }, @@ -311,14 +183,12 @@ describe("Federal schedules", () => { { name: "Fed Schedule R", fileName: "FSCHR", fromBuffer: true, pageCount: 2 } ]; - // Run each test in isolation test.each(scheduleTestCases)('$name', async ({ fileName, fromBuffer, pageCount }) => { await parseAndVerifyOnePDF(fileName, fromBuffer, pageCount); }); }); describe("Federal other forms", () => { - // Using test.each for better isolation const otherFormsTestCases = [ { name: "F982", fileName: "F982", fromBuffer: false, pageCount: 1 }, { name: "F1116", fileName: "F1116", fromBuffer: false, pageCount: 2 }, @@ -338,7 +208,6 @@ describe("Federal other forms", () => { { name: "F2555EZS", fileName: "F2555EZS", fromBuffer: false, pageCount: 2 } ]; - // Run each test in isolation test.each(otherFormsTestCases)('$name', async ({ fileName, fromBuffer, pageCount }) => { await parseAndVerifyOnePDF(fileName, fromBuffer, pageCount); }); diff --git a/test/_test_cli.cjs b/test/_test_cli.cjs new file mode 100644 index 00000000..91b69c53 --- /dev/null +++ b/test/_test_cli.cjs @@ -0,0 +1,119 @@ +const { execFile } = require("child_process"); +const path = require("path"); +const fs = require("fs"); +const os = require("os"); + +const CLI_PATH = path.join(__dirname, "../bin/pdf2json.js"); +const TEST_PDF = path.join(__dirname, "pdf/fd/form/F1040.pdf"); +const TEST_PDF_DIR = path.join(__dirname, "pdf/mpf"); + +function runCLI(args, timeout = 15000) { + return new Promise((resolve) => { + execFile("node", [CLI_PATH, ...args], { timeout }, (error, stdout, stderr) => { + resolve({ + stdout, + stderr, + exitCode: error ? error.code : 0, + }); + }); + }); +} + +describe("CLI", () => { + let tmpDir; + + beforeEach(() => { + tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "pdf2json-test-")); + }); + + afterEach(() => { + fs.rmSync(tmpDir, { recursive: true, force: true }); + }); + + test("--version outputs version and exits 0", async () => { + const { stdout, exitCode } = await runCLI(["-v"]); + expect(stdout.trim()).toMatch(/^\d+\.\d+\.\d+$/); + expect(exitCode).toBe(0); + }); + + test("--help outputs usage info and exits 0", async () => { + const { stdout, exitCode } = await runCLI(["-h"]); + expect(stdout).toContain("Usage:"); + expect(stdout).toContain("-f, --file"); + expect(exitCode).toBe(0); + }); + + test("no args exits with code 2", async () => { + const { exitCode, stderr } = await runCLI([]); + expect(exitCode).toBe(2); + expect(stderr).toContain("-f|--file parameter is required"); + }); + + test("nonexistent file exits with code 2", async () => { + const { exitCode, stderr } = await runCLI(["-f", "/nonexistent/file.pdf"]); + expect(exitCode).toBe(2); + expect(stderr).toContain("Input path does not exist"); + }); + + test("single file processing produces output JSON", async () => { + const { exitCode } = await runCLI(["-f", TEST_PDF, "-o", tmpDir, "-s"]); + expect(exitCode).toBe(0); + + const outputFile = path.join(tmpDir, "F1040.json"); + expect(fs.existsSync(outputFile)).toBe(true); + + const content = JSON.parse(fs.readFileSync(outputFile, "utf8")); + expect(content).toHaveProperty("Pages"); + expect(content.Pages.length).toBeGreaterThan(0); + }); + + test("directory processing produces output for all PDFs", async () => { + const { exitCode } = await runCLI(["-f", TEST_PDF_DIR, "-o", tmpDir, "-s"]); + expect(exitCode).toBe(0); + + const files = fs.readdirSync(tmpDir).filter(f => f.endsWith(".json")); + expect(files.length).toBeGreaterThan(0); + }); + + test("--json flag outputs structured JSON to stdout", async () => { + const { stdout, exitCode } = await runCLI(["-f", TEST_PDF, "-o", tmpDir, "--json"]); + expect(exitCode).toBe(0); + + // Extract the JSON line (last line of stdout) + const lines = stdout.trim().split("\n"); + const jsonLine = lines.find(l => l.startsWith("{")); + expect(jsonLine).toBeDefined(); + + const result = JSON.parse(jsonLine); + expect(result).toHaveProperty("version"); + expect(result).toHaveProperty("stats"); + expect(result.stats.success).toBe(1); + expect(result.stats.failed).toBe(0); + expect(result).toHaveProperty("outputs"); + expect(result.outputs.length).toBeGreaterThan(0); + }); + + test("-t flag generates fields.json output", async () => { + const { exitCode } = await runCLI(["-f", TEST_PDF, "-o", tmpDir, "-s", "-t"]); + expect(exitCode).toBe(0); + + expect(fs.existsSync(path.join(tmpDir, "F1040.json"))).toBe(true); + expect(fs.existsSync(path.join(tmpDir, "F1040.fields.json"))).toBe(true); + }); + + test("-c flag generates content.txt output", async () => { + const { exitCode } = await runCLI(["-f", TEST_PDF, "-o", tmpDir, "-s", "-c"]); + expect(exitCode).toBe(0); + + expect(fs.existsSync(path.join(tmpDir, "F1040.json"))).toBe(true); + expect(fs.existsSync(path.join(tmpDir, "F1040.content.txt"))).toBe(true); + }); + + test("-q flag suppresses non-error output", async () => { + const { stdout, exitCode } = await runCLI(["-f", TEST_PDF, "-o", tmpDir, "-q"]); + expect(exitCode).toBe(0); + // Quiet mode should not print the timer or status messages + expect(stdout).not.toContain("pdf2json@"); + expect(stdout).not.toContain("Success"); + }); +}); diff --git a/test/_test_errors.cjs b/test/_test_errors.cjs new file mode 100644 index 00000000..d7a29b52 --- /dev/null +++ b/test/_test_errors.cjs @@ -0,0 +1,98 @@ +const fs = require("fs"); +const path = require("path"); + +const PDFParser = require("../dist/pdfparser.cjs"); + +const ENCRYPTED_PDF = path.join(__dirname, "pdf/misc/i43_err_encrypted.pdf"); +const VALID_PDF = path.join(__dirname, "pdf/fd/form/F1040V.pdf"); + +describe("Error handling", () => { + test("loading a non-PDF file emits pdfParser_dataError", async () => { + const parser = new PDFParser(); + const nonPdfFile = path.join(__dirname, "../package.json"); + + const error = await new Promise((resolve, reject) => { + parser.once("pdfParser_dataError", (err) => resolve(err)); + parser.once("pdfParser_dataReady", () => reject(new Error("Should not succeed"))); + parser.loadPDF(nonPdfFile, 0); + }); + + expect(error).toBeDefined(); + parser.destroy(); + }); + + test("parseBuffer with empty buffer throws from engine error logger", () => { + const parser = new PDFParser(); + // Empty buffer triggers PJS.error() inside parseBuffer which throws + expect(() => parser.parseBuffer(Buffer.alloc(0), 0)).toThrow("empty PDF buffer"); + parser.destroy(); + }); + + test("parseBuffer with null throws from engine error logger", () => { + const parser = new PDFParser(); + expect(() => parser.parseBuffer(null, 0)).toThrow("empty PDF buffer"); + parser.destroy(); + }); + + test("destroy can be called multiple times without error", () => { + const parser = new PDFParser(); + expect(() => { + parser.destroy(); + parser.destroy(); + parser.destroy(); + }).not.toThrow(); + }); + + test("destroy after successful parse cleans up", async () => { + const parser = new PDFParser(); + const pdfBuffer = fs.readFileSync(VALID_PDF); + + await new Promise((resolve, reject) => { + parser.once("pdfParser_dataReady", resolve); + parser.once("pdfParser_dataError", reject); + parser.parseBuffer(pdfBuffer, 0); + }); + + expect(() => parser.destroy()).not.toThrow(); + }); + + test("encrypted PDF emits pdfParser_dataError", async () => { + if (!fs.existsSync(ENCRYPTED_PDF)) { + console.log("Skipping: encrypted PDF not found at", ENCRYPTED_PDF); + return; + } + + const parser = new PDFParser(); + + const error = await new Promise((resolve) => { + let timeoutId; + parser.once("pdfParser_dataError", (err) => { + clearTimeout(timeoutId); + resolve(err); + }); + parser.once("pdfParser_dataReady", () => { + clearTimeout(timeoutId); + resolve(null); + }); + timeoutId = setTimeout(() => resolve("timeout"), 10000); + parser.loadPDF(ENCRYPTED_PDF, 0); + }); + + expect(error).toBeDefined(); + parser.destroy(); + }); + + test("removeAllListeners after parse does not break subsequent operations", async () => { + const parser = new PDFParser(); + const pdfBuffer = fs.readFileSync(VALID_PDF); + + await new Promise((resolve, reject) => { + parser.once("pdfParser_dataReady", resolve); + parser.once("pdfParser_dataError", reject); + parser.parseBuffer(pdfBuffer, 0); + }); + + expect(() => parser.removeAllListeners()).not.toThrow(); + expect(() => parser.destroy()).not.toThrow(); + }); +}); diff --git a/test/_test_getRawTextContent.cjs b/test/_test_sortBidiTexts.cjs similarity index 81% rename from test/_test_getRawTextContent.cjs rename to test/_test_sortBidiTexts.cjs index d02f1799..8014f7b8 100644 --- a/test/_test_getRawTextContent.cjs +++ b/test/_test_sortBidiTexts.cjs @@ -5,7 +5,7 @@ const PDFParser = require("../dist/pdfparser.cjs"); const { sortBidiTexts } = PDFParser; describe("sortBidiTexts", () => { - it("should return elements in left-to-right reading order regardless of stream order", () => { + test("should return elements in left-to-right reading order regardless of stream order", () => { const input = [ { str: "4455", x: 60, y: 10, width: 20, spaceWidth: 4, textHScale: 1, fontSize: 12 }, { str: "label", x: 20, y: 10, width: 20, spaceWidth: 4, textHScale: 1, fontSize: 12 }, @@ -18,7 +18,7 @@ describe("sortBidiTexts", () => { expect(result.map(t => t.str)).toEqual(["Some", "label", "12.3", "4455"]); }); - it("should sort lines top-to-bottom when multiple Y positions are present", () => { + test("should sort lines top-to-bottom when multiple Y positions are present", () => { const input = [ { str: "Line2", x: 5, y: 30, width: 10, spaceWidth: 4, textHScale: 1, fontSize: 12 }, { str: "Line1", x: 5, y: 10, width: 10, spaceWidth: 4, textHScale: 1, fontSize: 12 }, @@ -29,7 +29,7 @@ describe("sortBidiTexts", () => { expect(result.map(t => t.str)).toEqual(["Line1", "Line2"]); }); - it("should group subscripts/superscripts (y offset within tolerance) into the same line", () => { + test("should group subscripts/superscripts (y offset within tolerance) into the same line", () => { // H2O: '2' is a subscript, y=11 is within fontSize(12) * 0.15 = 1.8 of y=10 const input = [ { str: "O", x: 15, y: 10, width: 5, spaceWidth: 3, textHScale: 1, fontSize: 12 }, @@ -43,7 +43,7 @@ describe("sortBidiTexts", () => { expect(result.map(t => t.str)).toEqual(["H", "2", "O"]); }); - it("should not group elements whose y difference exceeds the tolerance", () => { + test("should not group elements whose y difference exceeds the tolerance", () => { // 'super' at y=5 is 5 units above 'base' at y=10 — well beyond 12*0.15=1.8 const input = [ { str: "base", x: 5, y: 10, width: 20, spaceWidth: 4, textHScale: 1, fontSize: 12 }, @@ -56,11 +56,11 @@ describe("sortBidiTexts", () => { expect(result.map(t => t.str)).toEqual(["super", "base"]); }); - it("should return an empty array when given an empty array", () => { + test("should return an empty array when given an empty array", () => { expect(sortBidiTexts([])).toEqual([]); }); - it("should return the same reference when given null or undefined", () => { + test("should return the same reference when given null or undefined", () => { expect(sortBidiTexts(null)).toBeNull(); expect(sortBidiTexts(undefined)).toBeUndefined(); }); diff --git a/test/_test_stream.cjs b/test/_test_stream.cjs new file mode 100644 index 00000000..4731762a --- /dev/null +++ b/test/_test_stream.cjs @@ -0,0 +1,128 @@ +const fs = require("fs"); +const path = require("path"); +const { Writable, Readable } = require("stream"); + +const PDFParser = require("../dist/pdfparser.cjs"); +const { ParserStream, StringifyStream } = PDFParser; + +const TEST_PDF = path.join(__dirname, "pdf/fd/form/F1040.pdf"); + +// Helper: collect all data from a readable stream into a string +function collectStream(readable) { + return new Promise((resolve, reject) => { + const chunks = []; + readable.on("data", (chunk) => chunks.push(chunk)); + readable.on("end", () => resolve(chunks.join(""))); + readable.on("error", reject); + }); +} + +// Helper: parse a PDF file and return the data via promise +function parsePDFFile(pdfPath, needRawText = true) { + return new Promise((resolve, reject) => { + const parser = new PDFParser(null, needRawText); + parser.once("pdfParser_dataReady", (data) => { + resolve({ parser, data }); + }); + parser.once("pdfParser_dataError", (err) => { + reject(err); + }); + parser.loadPDF(pdfPath, 0); + }); +} + +describe("Stream API", () => { + test("createParserStream pipes PDF input to parsed JSON output", async () => { + const parser = new PDFParser(null, false); + const parserStream = parser.createParserStream(); + + const collected = await new Promise((resolve, reject) => { + const chunks = []; + const stringify = new StringifyStream(); + const writable = new Writable({ + write(chunk, encoding, callback) { + chunks.push(chunk.toString()); + callback(); + }, + }); + writable.on("finish", () => resolve(chunks.join(""))); + writable.on("error", reject); + + parser.on("pdfParser_dataError", reject); + + fs.createReadStream(TEST_PDF) + .pipe(parserStream) + .pipe(stringify) + .pipe(writable); + }); + + const parsed = JSON.parse(collected); + expect(parsed).toHaveProperty("Pages"); + expect(parsed.Pages.length).toBeGreaterThan(0); + + parser.destroy(); + }); + + test("StringifyStream converts object to JSON string", async () => { + const testData = { key: "value", nested: { arr: [1, 2, 3] } }; + const stringify = new StringifyStream(); + + const input = new Readable({ objectMode: true }); + input.push(testData); + input.push(null); + + const result = await collectStream(input.pipe(stringify)); + const parsed = JSON.parse(result); + expect(parsed).toEqual(testData); + }); + + test("getRawTextContentStream returns readable text content", async () => { + const { parser } = await parsePDFFile(TEST_PDF); + const stream = parser.getRawTextContentStream(); + + expect(stream).toBeDefined(); + const content = await collectStream(stream); + + expect(typeof content).toBe("string"); + expect(content.length).toBeGreaterThan(0); + // F1040 should contain "Form" and "1040" somewhere in its text + expect(content).toContain("1040"); + + parser.destroy(); + }); + + test("getAllFieldsTypesStream returns readable fields data", async () => { + const { parser } = await parsePDFFile(TEST_PDF); + const stream = parser.getAllFieldsTypesStream(); + + expect(stream).toBeDefined(); + const stringify = new StringifyStream(); + const content = await collectStream(stream.pipe(stringify)); + + const parsed = JSON.parse(content); + expect(Array.isArray(parsed)).toBe(true); + expect(parsed.length).toBeGreaterThan(0); + + parser.destroy(); + }); + + test("ParserStream.createOutputStream writes to a file", async () => { + const tmpFile = path.join(__dirname, "target", "stream_test_output.txt"); + const testContent = "Hello from stream test"; + + await new Promise((resolve, reject) => { + const outStream = ParserStream.createOutputStream(tmpFile, resolve, reject); + const input = new Readable(); + input.push(testContent); + input.push(null); + input.pipe(outStream); + }); + + expect(fs.existsSync(tmpFile)).toBe(true); + const written = fs.readFileSync(tmpFile, "utf8"); + expect(written).toBe(testContent); + + // Cleanup + fs.unlinkSync(tmpFile); + }); +}); diff --git a/test/_test_testMultipleDataPDF.cjs b/test/_test_testMultipleDataPDF.cjs index 755eb18c..7e69df86 100644 --- a/test/_test_testMultipleDataPDF.cjs +++ b/test/_test_testMultipleDataPDF.cjs @@ -1,52 +1,52 @@ -const assert = require("assert"); const fs = require("fs"); const PDFParser = require("../dist/pdfparser.cjs"); -// we want to read two (or more) PDF files without recreating a reference to PDFParser -describe("Multiple PDFs with same structure",()=>{ - test("Read different values",async ()=>{ - // the target PDFs for this test have only 3 values: Name, Surname and BirthDate. - // you can find the PDFs in test/pdf/mpf - let parser=new PDFParser(); - const firstPDFLocation=__dirname+"/pdf/mpf/testPDF.pdf"; - const secondPDFLocation=__dirname+"/pdf/mpf/testPDF2.pdf"; - const firstPDFBuffer=fs.readFileSync(firstPDFLocation); - const secondPDFBuffer=fs.readFileSync(secondPDFLocation); - //we need to check if buffers are indeed different, otherwise it's useless! - expect(firstPDFBuffer).not.toBe(secondPDFBuffer); - const firstData=await new Promise((resolve,reject)=>{ - parser.parseBuffer(firstPDFBuffer,5); - parser.on("pdfParser_dataReady", (evtData) => { - resolve(evtData); - }); - - parser.on("pdfParser_dataError", (evtData) => { - reject(evtData); - }); - }); - const secondData=await new Promise((resolve,reject)=>{ - parser.parseBuffer(secondPDFBuffer,5); - parser.on("pdfParser_dataReady", (evtData) => { - resolve(evtData); - }); - - parser.on("pdfParser_dataError", (evtData) => { - reject(evtData); - }); - }); - //first, make sure the files are read - expect(firstData).toBeDefined(); - expect(firstData.Pages[0]).toBeDefined(); - expect(firstData.Pages[0].Fields).toBeDefined(); - expect(secondData).toBeDefined(); - expect(secondData.Pages[0]).toBeDefined(); - expect(secondData.Pages[0].Fields).toBeDefined(); - //then, we check if the files have the correct values - expect(firstData.Pages[0].Fields[0].V).toBe("Mario"); - expect(firstData.Pages[0].Fields[1].V).toBe("Rossi"); - expect(firstData.Pages[0].Fields[2].V).toBe("01/01/1990"); - expect(secondData.Pages[0].Fields[0].V).toBe("Luigi"); - expect(secondData.Pages[0].Fields[1].V).toBe("Verdi"); - expect(secondData.Pages[0].Fields[2].V).toBe("01/01/1991"); - }); -}); \ No newline at end of file + +// Helper: parse a PDF buffer and return parsed data via once() to avoid listener accumulation +function parsePDF(parser, pdfBuffer) { + return new Promise((resolve, reject) => { + parser.once("pdfParser_dataReady", (evtData) => { + resolve(evtData); + }); + parser.once("pdfParser_dataError", (evtData) => { + reject(evtData); + }); + parser.parseBuffer(pdfBuffer, 5); + }); +} + +describe("Multiple PDFs with same structure", () => { + test("Read different values", async () => { + const parser = new PDFParser(); + const firstPDFBuffer = fs.readFileSync(__dirname + "/pdf/mpf/testPDF.pdf"); + const secondPDFBuffer = fs.readFileSync(__dirname + "/pdf/mpf/testPDF2.pdf"); + + expect(firstPDFBuffer).not.toBe(secondPDFBuffer); + + const firstData = await parsePDF(parser, firstPDFBuffer); + + // Reset parser state between sequential parses to avoid listener accumulation + parser.removeAllListeners(); + + const secondData = await parsePDF(parser, secondPDFBuffer); + + // Verify files were read + expect(firstData).toBeDefined(); + expect(firstData.Pages[0]).toBeDefined(); + expect(firstData.Pages[0].Fields).toBeDefined(); + expect(secondData).toBeDefined(); + expect(secondData.Pages[0]).toBeDefined(); + expect(secondData.Pages[0].Fields).toBeDefined(); + + // Verify correct values from each PDF + expect(firstData.Pages[0].Fields[0].V).toBe("Mario"); + expect(firstData.Pages[0].Fields[1].V).toBe("Rossi"); + expect(firstData.Pages[0].Fields[2].V).toBe("01/01/1990"); + expect(secondData.Pages[0].Fields[0].V).toBe("Luigi"); + expect(secondData.Pages[0].Fields[1].V).toBe("Verdi"); + expect(secondData.Pages[0].Fields[2].V).toBe("01/01/1991"); + + parser.removeAllListeners(); + parser.destroy(); + }); +}); diff --git a/test/data/fd/form/F1040.json b/test/data/fd/form/F1040.json index e07fc697..8070047e 100755 --- a/test/data/fd/form/F1040.json +++ b/test/data/fd/form/F1040.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.016,"y":3.094,"w":1.5,"l":2.561},{"oc":"#221f1f","x":8.491,"y":3.094,"w":1.5,"l":8.748},{"oc":"#221f1f","x":61.703,"y":3.094,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.078,"y":3.094,"w":1.5,"l":24.836},{"oc":"#221f1f","x":17.153,"y":3.094,"w":1.5,"l":34.736},{"oc":"#221f1f","x":51.803,"y":3.094,"w":1.5,"l":9.924},{"oc":"#221f1f","x":6.016,"y":3.094,"w":1.5,"l":48.349},{"oc":"#221f1f","x":54.278,"y":3.094,"w":1.5,"l":14.936},{"oc":"#221f1f","x":69.128,"y":3.094,"w":1.5,"l":11.223},{"oc":"#221f1f","x":80.266,"y":3.094,"w":1.5,"l":18.648},{"oc":"#221f1f","x":80.266,"y":3.844,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.016,"y":3.844,"w":0.75,"l":31.023},{"oc":"#221f1f","x":6.016,"y":5.344,"w":0.75,"l":31.023},{"oc":"#221f1f","x":36.996,"y":5.344,"w":0.75,"l":43.313},{"oc":"#221f1f","x":36.996,"y":3.844,"w":0.75,"l":43.313},{"oc":"#221f1f","x":6.016,"y":5.344,"w":0.75,"l":31.023},{"oc":"#221f1f","x":6.016,"y":6.844,"w":0.75,"l":31.023},{"oc":"#221f1f","x":36.996,"y":6.844,"w":0.75,"l":43.313},{"oc":"#221f1f","x":36.996,"y":5.344,"w":0.75,"l":43.313},{"oc":"#221f1f","x":80.266,"y":5.344,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.266,"y":6.844,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.266,"y":8.344,"w":0.75,"l":2.561},{"oc":"#221f1f","x":82.741,"y":8.344,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.016,"y":6.844,"w":0.75,"l":65.674},{"oc":"#221f1f","x":6.016,"y":8.344,"w":0.75,"l":65.674},{"oc":"#221f1f","x":71.646,"y":8.344,"w":0.75,"l":8.663},{"oc":"#221f1f","x":71.646,"y":6.844,"w":0.75,"l":8.663},{"oc":"#221f1f","x":6.016,"y":8.344,"w":0.75,"l":74.336},{"oc":"#221f1f","x":6.016,"y":9.844,"w":0.75,"l":74.336},{"oc":"#221f1f","x":6.016,"y":9.844,"w":0.75,"l":38.448},{"oc":"#221f1f","x":6.016,"y":11.344,"w":0.75,"l":38.448},{"oc":"#221f1f","x":44.421,"y":11.344,"w":0.75,"l":24.75},{"oc":"#221f1f","x":44.421,"y":9.844,"w":0.75,"l":24.75},{"oc":"#221f1f","x":69.171,"y":11.344,"w":0.75,"l":11.138},{"oc":"#221f1f","x":69.171,"y":9.844,"w":0.75,"l":11.138},{"oc":"#221f1f","x":80.266,"y":8.344,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.266,"y":11.344,"w":0.75,"l":18.648},{"oc":"#221f1f","x":76.553,"y":13.594,"w":0.75,"l":22.361},{"oc":"#181516","x":6.059,"y":14.344,"w":1.2000000000000002,"l":92.813},{"oc":"#221f1f","x":18.391,"y":15.844,"w":0.75,"l":22.392},{"oc":"#221f1f","x":18.391,"y":17.344,"w":0.75,"l":22.392},{"oc":"#221f1f","x":40.696,"y":15.844,"w":0.75,"l":14.553},{"oc":"#221f1f","x":40.696,"y":17.344,"w":0.75,"l":14.553},{"oc":"#221f1f","x":55.164,"y":15.844,"w":0.75,"l":11.177},{"oc":"#221f1f","x":55.164,"y":17.344,"w":0.75,"l":11.177},{"oc":"#221f1f","x":66.254,"y":15.844,"w":0.75,"l":14.913},{"oc":"#221f1f","x":66.254,"y":17.344,"w":0.75,"l":14.913},{"oc":"#221f1f","x":18.391,"y":17.344,"w":0.75,"l":22.392},{"oc":"#221f1f","x":18.391,"y":18.066,"w":0.75,"l":22.392},{"oc":"#221f1f","x":40.696,"y":17.344,"w":0.75,"l":14.553},{"oc":"#221f1f","x":40.696,"y":18.066,"w":0.75,"l":14.553},{"oc":"#221f1f","x":55.164,"y":17.344,"w":0.75,"l":11.177},{"oc":"#221f1f","x":55.164,"y":18.066,"w":0.75,"l":11.177},{"oc":"#221f1f","x":66.254,"y":17.344,"w":0.75,"l":14.913},{"oc":"#221f1f","x":66.254,"y":18.066,"w":0.75,"l":14.913},{"oc":"#221f1f","x":18.391,"y":18.066,"w":0.75,"l":22.392},{"oc":"#221f1f","x":18.391,"y":18.816,"w":0.75,"l":22.392},{"oc":"#221f1f","x":40.696,"y":18.066,"w":0.75,"l":14.553},{"oc":"#221f1f","x":40.696,"y":18.816,"w":0.75,"l":14.553},{"oc":"#221f1f","x":55.164,"y":18.066,"w":0.75,"l":11.177},{"oc":"#221f1f","x":55.164,"y":18.816,"w":0.75,"l":11.177},{"oc":"#221f1f","x":66.254,"y":18.066,"w":0.75,"l":14.913},{"oc":"#221f1f","x":66.254,"y":18.816,"w":0.75,"l":14.913},{"oc":"#221f1f","x":18.391,"y":18.816,"w":0.75,"l":22.392},{"oc":"#221f1f","x":18.391,"y":19.566,"w":0.75,"l":22.392},{"oc":"#221f1f","x":40.696,"y":18.816,"w":0.75,"l":14.553},{"oc":"#221f1f","x":40.696,"y":19.566,"w":0.75,"l":14.553},{"oc":"#221f1f","x":55.164,"y":18.816,"w":0.75,"l":11.177},{"oc":"#221f1f","x":55.164,"y":19.566,"w":0.75,"l":11.177},{"oc":"#221f1f","x":66.254,"y":18.816,"w":0.75,"l":14.913},{"oc":"#221f1f","x":66.254,"y":19.566,"w":0.75,"l":14.913},{"oc":"#221f1f","x":18.391,"y":19.566,"w":0.75,"l":22.392},{"oc":"#221f1f","x":18.391,"y":20.316,"w":0.75,"l":22.392},{"oc":"#221f1f","x":40.696,"y":19.566,"w":0.75,"l":14.553},{"oc":"#221f1f","x":40.696,"y":20.316,"w":0.75,"l":14.553},{"oc":"#221f1f","x":55.164,"y":19.566,"w":0.75,"l":11.177},{"oc":"#221f1f","x":55.164,"y":20.316,"w":0.75,"l":11.177},{"oc":"#221f1f","x":66.254,"y":19.566,"w":0.75,"l":14.913},{"oc":"#221f1f","x":66.254,"y":20.316,"w":0.75,"l":14.913},{"oc":"#221f1f","x":95.116,"y":15.469,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.116,"y":16.844,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.116,"y":18.594,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.116,"y":19.594,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.288,"y":21.563,"w":2.25,"l":3.712},{"oc":"#221f1f","x":95.288,"y":20.438,"w":2.25,"l":3.712},{"oc":"#221f1f","x":6.188,"y":21.75,"w":1.2000000000000002,"l":92.813},{"oc":"#221f1f","x":79.157,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":21.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":22.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":22.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":23.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":22.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":24,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":23.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":25.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":26.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":26.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":27,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":27,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":27.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":27.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":28.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":28.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":38.32,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":42.11,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":54.407,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":38.32,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":42.11,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":42.11,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":54.45,"y":30.75,"w":0.75,"l":3.712},{"oc":"#221f1f","x":54.45,"y":30,"w":0.75,"l":3.712},{"oc":"#221f1f","x":79.157,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":33,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":38.32,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":42.032,"y":33.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":54.407,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":33,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":33,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":46.982,"y":34.5,"w":0.75,"l":31.023},{"oc":"#221f1f","x":79.157,"y":34.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":33.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":34.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":34.5,"w":0.75,"l":3.798},{"oc":"#181516","x":6.188,"y":35.25,"w":1.2000000000000002,"l":92.813},{"oc":"#221f1f","x":79.157,"y":35.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":36,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":35.25,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":36,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":35.25,"w":0.75,"l":3.713},{"oc":"#221f1f","x":82.87,"y":35.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":35.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":36,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":37.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":38.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":38.25,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":37.5,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":38.25,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":37.5,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":39,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":39,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":38.25,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":39,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":38.25,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":39.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":39.75,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":39,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":39.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":39,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":40.5,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":39.75,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":40.5,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":39.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":41.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":41.25,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":40.5,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":41.25,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":40.5,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":42,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":41.25,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":42,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":41.25,"w":0.75,"l":3.713},{"oc":"#221f1f","x":45.745,"y":42.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.357,"y":42.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":42.75,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":42,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":42.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":42,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":43.5,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":42.75,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":43.5,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":42.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":44.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":44.25,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":43.5,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":44.25,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":43.5,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":45,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":45,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":44.25,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":45,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":44.25,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":45.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":45.75,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":45,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":45.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":45,"w":0.75,"l":3.713},{"oc":"#221f1f","x":79.157,"y":46.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":46.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":46.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":46.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":46.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":47.25,"w":1.5,"l":60.659},{"oc":"#221f1f","x":66.782,"y":47.25,"w":1.5,"l":19.886},{"oc":"#221f1f","x":86.582,"y":47.25,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":74.121,"y":1.578,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.684,"y":1.578,"w":0.75,"l":1.547},{"oc":"#221f1f","x":51.846,"y":1.578,"w":0.75,"l":1.547},{"oc":"#221f1f","x":80.309,"y":3.063,"w":0.75,"l":0.797},{"oc":"#221f1f","x":36.996,"y":3.828,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.309,"y":3.844,"w":0.75,"l":1.5},{"oc":"#221f1f","x":36.996,"y":3.844,"w":0.75,"l":1.5},{"oc":"#221f1f","x":80.309,"y":3.813,"w":0.75,"l":1.563},{"dsh":1,"oc":"#221f1f","x":86.116,"y":4.594,"w":0.75,"l":0.625},{"dsh":1,"oc":"#221f1f","x":89.829,"y":4.594,"w":0.75,"l":0.625},{"oc":"#221f1f","x":36.996,"y":5.328,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.309,"y":5.344,"w":0.75,"l":1.5},{"oc":"#221f1f","x":36.996,"y":5.344,"w":0.75,"l":1.5},{"oc":"#221f1f","x":80.309,"y":5.328,"w":0.75,"l":1.531},{"dsh":1,"oc":"#221f1f","x":86.116,"y":6.094,"w":0.75,"l":0.625},{"dsh":1,"oc":"#221f1f","x":89.829,"y":6.094,"w":0.75,"l":0.625},{"oc":"#221f1f","x":71.646,"y":6.828,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.309,"y":6.844,"w":0.75,"l":1.5},{"oc":"#221f1f","x":71.646,"y":6.844,"w":0.75,"l":1.5},{"oc":"#221f1f","x":80.309,"y":8.328,"w":0.75,"l":1.531},{"oc":"#221f1f","x":44.421,"y":9.828,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.171,"y":9.844,"w":0.75,"l":1.5},{"oc":"#221f1f","x":44.421,"y":9.844,"w":0.75,"l":1.5},{"oc":"#221f1f","x":80.309,"y":9.844,"w":0.75,"l":1.5},{"oc":"#221f1f","x":69.171,"y":9.844,"w":0.75,"l":1.5},{"oc":"#221f1f","x":40.739,"y":15.828,"w":0.75,"l":1.531},{"oc":"#221f1f","x":55.207,"y":15.828,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.297,"y":15.828,"w":0.75,"l":1.531},{"oc":"#221f1f","x":40.739,"y":17.328,"w":0.75,"l":0.754},{"oc":"#221f1f","x":55.207,"y":17.328,"w":0.75,"l":0.754},{"oc":"#221f1f","x":66.297,"y":17.328,"w":0.75,"l":0.754},{"oc":"#221f1f","x":40.739,"y":18.05,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.207,"y":18.05,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.297,"y":18.05,"w":0.75,"l":0.781},{"oc":"#221f1f","x":40.739,"y":18.8,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.207,"y":18.8,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.297,"y":18.8,"w":0.75,"l":0.781},{"oc":"#221f1f","x":40.739,"y":19.55,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.207,"y":19.55,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.297,"y":19.55,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":48.545,"y":17.391,"w":0.75,"l":0.656},{"dsh":1,"oc":"#221f1f","x":45.279,"y":17.391,"w":0.75,"l":0.656},{"dsh":1,"oc":"#221f1f","x":48.545,"y":18.141,"w":0.75,"l":0.656},{"dsh":1,"oc":"#221f1f","x":45.279,"y":18.141,"w":0.75,"l":0.656},{"dsh":1,"oc":"#221f1f","x":48.545,"y":18.891,"w":0.75,"l":0.656},{"dsh":1,"oc":"#221f1f","x":45.279,"y":18.891,"w":0.75,"l":0.656},{"dsh":1,"oc":"#221f1f","x":48.545,"y":19.641,"w":0.75,"l":0.656},{"dsh":1,"oc":"#221f1f","x":45.279,"y":19.641,"w":0.75,"l":0.656},{"oc":"#221f1f","x":99,"y":20.438,"w":2.25,"l":1.125},{"oc":"#221f1f","x":95.288,"y":20.438,"w":2.25,"l":1.125},{"oc":"#221f1f","x":79.2,"y":21.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":21.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":21.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":26.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":26.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":26.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.362,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":42.153,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.362,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":42.153,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":30,"w":0.75,"l":0.75},{"oc":"#221f1f","x":54.45,"y":30,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":30.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":30.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":30.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.362,"y":32.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":42.075,"y":32.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":32.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":32.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":32.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":32.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":33.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":35.234,"w":0.75,"l":10.531},{"oc":"#221f1f","x":79.2,"y":35.234,"w":0.75,"l":10.531},{"oc":"#221f1f","x":59.4,"y":35.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":35.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":35.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":35.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":35.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.913,"y":35.234,"w":0.75,"l":10.531},{"oc":"#221f1f","x":95.288,"y":35.234,"w":0.75,"l":10.531},{"oc":"#221f1f","x":59.4,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":35.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":37.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":37.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":37.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":37.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":37.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":38.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":38.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":38.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":38.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":38.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":38.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":39,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":39,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":39,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":39,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":39.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":39.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":39.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":39.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":39.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":40.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":40.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":40.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":40.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":41.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":41.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":41.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":41.25,"w":0.75,"l":0.75},{"dsh":1,"oc":"#221f1f","x":52.422,"y":42,"w":0.75,"l":0.625},{"dsh":1,"oc":"#221f1f","x":49.844,"y":42,"w":0.75,"l":0.625},{"oc":"#221f1f","x":59.4,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":42,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":42,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":42,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":42,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":42.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":42.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":42.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":42.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":42.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":43.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":43.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":43.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":43.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":43.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":44.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":44.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":44.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":44.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":44.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":45,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":45,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":45,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":45,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":45.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":45.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":45.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":46.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":46.476,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":46.476,"w":0.75,"l":0.789},{"oc":"#221f1f","x":56.87,"y":8.362,"w":0.73228425,"l":1.495},{"oc":"#221f1f","x":63.396,"y":8.328,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#e3f4f4","x":17.588,"y":1.567,"w":82.656,"h":45.631,"clr":-1},{"x":6.059,"y":3.094,"w":48.263,"h":0.75,"clr":1},{"x":54.321,"y":3.094,"w":14.85,"h":0.75,"clr":1},{"x":69.171,"y":3.094,"w":11.138,"h":0.75,"clr":1},{"x":80.309,"y":3.094,"w":18.563,"h":0.75,"clr":1},{"x":6.059,"y":3.844,"w":30.938,"h":1.5,"clr":1},{"x":36.996,"y":3.844,"w":43.313,"h":1.5,"clr":1},{"x":80.309,"y":3.844,"w":18.563,"h":1.5,"clr":1},{"x":6.059,"y":5.344,"w":30.938,"h":1.5,"clr":1},{"x":36.996,"y":5.344,"w":43.313,"h":1.5,"clr":1},{"x":80.309,"y":5.344,"w":18.563,"h":1.5,"clr":1},{"x":6.059,"y":6.844,"w":65.588,"h":1.5,"clr":1},{"x":71.646,"y":6.844,"w":8.663,"h":1.5,"clr":1},{"x":6.059,"y":8.344,"w":74.25,"h":1.5,"clr":1},{"x":6.059,"y":9.844,"w":38.362,"h":1.5,"clr":1},{"x":44.421,"y":9.844,"w":24.75,"h":1.5,"clr":1},{"x":69.171,"y":9.844,"w":11.138,"h":1.5,"clr":1},{"x":38.234,"y":13.594,"w":18.563,"h":0.75,"clr":1},{"x":76.596,"y":12.844,"w":22.275,"h":0.75,"clr":1},{"x":18.434,"y":17.344,"w":22.306,"h":0.722,"clr":1},{"x":40.739,"y":17.344,"w":14.467,"h":0.722,"clr":1},{"x":55.207,"y":17.344,"w":11.091,"h":0.722,"clr":1},{"x":66.297,"y":17.344,"w":14.827,"h":0.722,"clr":1},{"x":18.434,"y":18.066,"w":22.306,"h":0.75,"clr":1},{"x":40.739,"y":18.066,"w":14.467,"h":0.75,"clr":1},{"x":55.207,"y":18.066,"w":11.091,"h":0.75,"clr":1},{"x":66.297,"y":18.066,"w":14.827,"h":0.75,"clr":1},{"x":18.434,"y":18.816,"w":22.306,"h":0.75,"clr":1},{"x":40.739,"y":18.816,"w":14.467,"h":0.75,"clr":1},{"x":55.207,"y":18.816,"w":11.091,"h":0.75,"clr":1},{"x":66.297,"y":18.816,"w":14.827,"h":0.75,"clr":1},{"x":18.434,"y":19.566,"w":22.306,"h":0.75,"clr":1},{"x":40.739,"y":19.566,"w":14.467,"h":0.75,"clr":1},{"x":55.207,"y":19.566,"w":11.091,"h":0.75,"clr":1},{"x":66.297,"y":19.566,"w":14.827,"h":0.75,"clr":1},{"x":95.159,"y":14.719,"w":3.712,"h":0.75,"clr":1},{"x":95.159,"y":16.094,"w":3.712,"h":0.75,"clr":1},{"x":95.159,"y":17.844,"w":3.712,"h":0.75,"clr":1},{"x":95.159,"y":18.844,"w":3.712,"h":0.75,"clr":1},{"x":95.288,"y":20.438,"w":3.712,"h":1.125,"clr":1},{"x":82.913,"y":21.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":21.75,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":22.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":22.5,"w":3.712,"h":0.75,"clr":1},{"x":63.113,"y":23.25,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":23.25,"w":3.713,"h":0.75,"clr":1},{"oc":"#bdc0c2","x":79.2,"y":23.25,"w":3.712,"h":0.75,"clr":-1},{"x":82.913,"y":23.25,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":23.25,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":24,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":24,"w":3.712,"h":0.75,"clr":1},{"x":63.113,"y":24.75,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":24.75,"w":3.713,"h":0.75,"clr":1},{"oc":"#bdc0c2","x":79.2,"y":24.75,"w":3.712,"h":0.75,"clr":-1},{"x":82.913,"y":24.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":24.75,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":25.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":25.5,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":26.25,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":26.25,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":27,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":27,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":27.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":27.75,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":28.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":28.5,"w":3.712,"h":0.75,"clr":1},{"x":42.153,"y":29.25,"w":12.375,"h":0.75,"clr":1},{"x":54.45,"y":29.25,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":29.25,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":29.25,"w":3.712,"h":0.75,"clr":1},{"x":42.153,"y":30,"w":12.375,"h":0.75,"clr":1},{"x":54.45,"y":30,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":30,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":30,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":30.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":30.75,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":31.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":31.5,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":32.25,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":32.25,"w":3.712,"h":0.75,"clr":1},{"x":42.075,"y":33,"w":12.375,"h":0.75,"clr":1},{"x":54.45,"y":33,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":33,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":33,"w":3.712,"h":0.75,"clr":1},{"x":47.025,"y":33.813,"w":30.937,"h":0.687,"clr":1},{"x":82.913,"y":33.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":33.75,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":34.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":34.5,"w":3.712,"h":0.75,"clr":1},{"oc":"#bdc0c2","x":79.2,"y":35.25,"w":3.712,"h":10.5,"clr":-1},{"x":63.113,"y":35.25,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":35.25,"w":3.713,"h":0.75,"clr":1},{"x":82.913,"y":35.25,"w":12.375,"h":10.5,"clr":1},{"x":95.288,"y":35.25,"w":3.712,"h":10.5,"clr":1},{"x":63.113,"y":36,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":36,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":36.75,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":36.75,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":37.5,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":37.5,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":38.25,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":38.25,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":39,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":39,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":39.75,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":39.75,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":40.5,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":40.5,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":41.25,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":41.25,"w":3.713,"h":0.75,"clr":1},{"x":45.788,"y":42,"w":12.375,"h":0.75,"clr":1},{"x":63.113,"y":42,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":42,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":42.75,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":42.75,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":43.5,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":43.5,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":44.25,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":44.25,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":45,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":45,"w":3.713,"h":0.75,"clr":1},{"x":82.913,"y":45.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":45.75,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":46.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":46.5,"w":3.712,"h":0.75,"clr":1}],"Texts":[{"x":17.668,"y":20.219,"w":99.61600000000006,"clr":0,"A":"left","R":[{"T":"Enter%20additional%20dependents","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.304,"y":2.104,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0],"RA":90}]},{"oc":"#221f1f","x":8.284,"y":1.915,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"1040%20","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":18.321,"y":1.3370000000000002,"w":24.632999999999992,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%E2%80%94Internal%20Revenue%20Service%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":62.1,"y":2.094,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":47.522,"y":1.3439999999999999,"w":1.63,"clr":-1,"A":"left","R":[{"T":"(99)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.52,"y":2.052,"w":23.021,"clr":-1,"A":"left","R":[{"T":"IRS%20Use%20Only%E2%80%94Do%20not%20write%20or%20staple%20in%20this%20space.%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":18.321,"y":2.108,"w":16.449,"clr":-1,"A":"left","R":[{"T":"U.S.%20Individual%20Income%20Tax%20Return%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":52.046,"y":1.9860000000000002,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":54.886,"y":2.018,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":6.496,"y":2.856,"w":27.915000000000013,"clr":-1,"A":"left","R":[{"T":"For%20the%20year%20Jan.%201%E2%80%93Dec.%2031%2C%202013%2C%20or%20other%20tax%20year%20beginning%20","S":-1,"TS":[0,9.16,0,0]}]},{"oc":"#221f1f","x":54.071,"y":2.856,"w":6.652000000000001,"clr":-1,"A":"left","R":[{"T":"%2C%202013%2C%20ending%20","S":-1,"TS":[0,9.16,0,0]}]},{"oc":"#221f1f","x":68.921,"y":2.856,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"%2C%2020%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":80.746,"y":2.83,"w":11.631000000000002,"clr":-1,"A":"left","R":[{"T":"See%20separate%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.496,"y":3.513,"w":11.631999999999998,"clr":-1,"A":"left","R":[{"T":"Your%20first%20name%20and%20initial%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.434,"y":3.511,"w":4.946999999999999,"clr":-1,"A":"left","R":[{"T":"Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.746,"y":3.5140000000000002,"w":13.727000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":6.496,"y":5.001,"w":20.560000000000006,"clr":-1,"A":"left","R":[{"T":"If%20a%20joint%20return%2C%20spouse%E2%80%99s%20first%20name%20and%20initial%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.434,"y":5,"w":4.946999999999999,"clr":-1,"A":"left","R":[{"T":"Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.746,"y":5.003,"w":15.855000000000006,"clr":-1,"A":"left","R":[{"T":"Spouse's%20social%20security%20number%20","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":80.437,"y":6.879,"w":1,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":82.946,"y":6.679,"w":12.965000000000002,"clr":-1,"A":"left","R":[{"T":"Make%20sure%20the%20SSN(s)%20above%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.031,"y":7.204,"w":11.687000000000003,"clr":-1,"A":"left","R":[{"T":"and%20on%20line%206c%20are%20correct.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.496,"y":6.503,"w":34.15699999999999,"clr":-1,"A":"left","R":[{"T":"Home%20address%20(number%20and%20street).%20If%20you%20have%20a%20P.O.%20box%2C%20see%20instructions.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.954,"y":6.5,"w":3.798,"clr":-1,"A":"left","R":[{"T":"Apt.%20no.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.496,"y":7.991,"w":320.9849999999999,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office.%20If%20you%20have%20a%20foreign%20address%2C%20also%20complete%20spaces%20below%20(see%20instructions).%20","S":-1,"TS":[0,9.299958,0,0]}]},{"oc":"#221f1f","x":6.496,"y":9.529,"w":9.780000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.859,"y":9.533,"w":13.408000000000003,"clr":-1,"A":"left","R":[{"T":"Foreign%20province%2Fstate%2Fcounty","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.609,"y":9.529,"w":9.742,"clr":-1,"A":"left","R":[{"T":"Foreign%20postal%20code%20%20%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":81.597,"y":8.066,"w":14.949000000000007,"clr":-1,"A":"left","R":[{"T":"Presidential%20Election%20Campaign","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":80.402,"y":8.752,"w":18.502000000000006,"clr":-1,"A":"left","R":[{"T":"Check%20here%20if%20you%2C%20or%20your%20spouse%20if%20filing%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"oc":"#221f1f","x":80.402,"y":9.252,"w":19.69,"clr":-1,"A":"left","R":[{"T":"jointly%2C%20want%20%243%20to%20go%20to%20this%20fund.%20Checking%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"oc":"#221f1f","x":80.402,"y":9.752,"w":17.814000000000004,"clr":-1,"A":"left","R":[{"T":"a%20box%20below%20will%20not%20change%20your%20tax%20or%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"oc":"#221f1f","x":80.402,"y":10.252,"w":3.4270000000000005,"clr":-1,"A":"left","R":[{"T":"refund.%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"oc":"#221f1f","x":89.791,"y":10.356,"w":2.167,"clr":-1,"A":"left","R":[{"T":"You%20","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":94.598,"y":10.356,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.09,1,0]}]},{"oc":"#221f1f","x":5.809,"y":11.483,"w":6.279,"clr":-1,"A":"left","R":[{"T":"Filing%20Status%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.809,"y":12.655,"w":7.224,"clr":-1,"A":"left","R":[{"T":"Check%20only%20one%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.809,"y":13.255,"w":2.241,"clr":-1,"A":"left","R":[{"T":"box.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.894,"y":11.2,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":24.371,"y":11.201,"w":3.037,"clr":-1,"A":"left","R":[{"T":"Single%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.894,"y":11.951,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":24.371,"y":11.951,"w":22.281000000000002,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20jointly%20(even%20if%20only%20one%20had%20income)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.894,"y":12.701,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":24.371,"y":12.701,"w":23.501999999999995,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20separately.%20Enter%20spouse%E2%80%99s%20SSN%20above%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.371,"y":13.326,"w":8.818000000000001,"clr":-1,"A":"left","R":[{"T":"and%20full%20name%20here.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.496,"y":13.263,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":59.494,"y":11.201,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":63.971000000000004,"y":11.222,"w":28.706,"clr":-1,"A":"left","R":[{"T":"Head%20of%20household%20(with%20qualifying%20person).%20(See%20instructions.)%20If%20","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#221f1f","x":63.971000000000004,"y":11.91,"w":29.342000000000002,"clr":-1,"A":"left","R":[{"T":"the%20qualifying%20person%20is%20a%20child%20but%20not%20your%20dependent%2C%20enter%20this%20","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#221f1f","x":63.971000000000004,"y":12.597,"w":8.744,"clr":-1,"A":"left","R":[{"T":"child%E2%80%99s%20name%20here.%20%20","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#221f1f","x":74.191,"y":12.535,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":59.494,"y":13.326,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":63.971000000000004,"y":13.335,"w":18.926000000000005,"clr":-1,"A":"left","R":[{"T":"Qualifying%20widow(er)%20with%20dependent%20child%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.809,"y":14.477,"w":5.946,"clr":-1,"A":"left","R":[{"T":"Exemptions%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":19.894,"y":14.201,"w":1.112,"clr":-1,"A":"left","R":[{"T":"6a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":25.609,"y":14.201,"w":4.557,"clr":-1,"A":"left","R":[{"T":"Yourself.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":31.305,"y":14.201,"w":18.932000000000002,"clr":-1,"A":"left","R":[{"T":"If%20someone%20can%20claim%20you%20as%20a%20dependent%2C","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":54.759,"y":14.201,"w":3.611,"clr":-1,"A":"left","R":[{"T":"%20do%20not%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":59.553,"y":14.201,"w":6.298,"clr":-1,"A":"left","R":[{"T":"check%20box%206a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":71.809,"y":14.201,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":20.659,"y":14.951,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":25.609,"y":14.951,"w":4.168,"clr":-1,"A":"left","R":[{"T":"Spouse%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":81.296,"y":14.658,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":20.659,"y":15.701,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.134,"y":15.687999999999999,"w":6.612,"clr":-1,"A":"left","R":[{"T":"Dependents%3A%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":18.184,"y":16.406,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(1)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":19.762,"y":16.406,"w":4.4030000000000005,"clr":-1,"A":"left","R":[{"T":"%20First%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":31.990000000000002,"y":16.406,"w":4.106999999999999,"clr":-1,"A":"left","R":[{"T":"Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.139,"y":15.675,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(2)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":45.717,"y":15.675,"w":4.646,"clr":-1,"A":"left","R":[{"T":"Dependent%E2%80%99s","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":42.692,"y":16.2,"w":8.605,"clr":-1,"A":"left","R":[{"T":"social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.918,"y":15.675,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(3)","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":58.208,"y":15.675,"w":5.126000000000001,"clr":-1,"A":"left","R":[{"T":"%20Dependent%E2%80%99s%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.273,"y":16.2,"w":7.031000000000001,"clr":-1,"A":"left","R":[{"T":"relationship%20to%20you%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.429,"y":15.544,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(4)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":69.296,"y":15.544,"w":0.755,"clr":-1,"A":"left","R":[{"T":"%14","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.493,"y":15.544,"w":7.863000000000001,"clr":-1,"A":"left","R":[{"T":"if%20child%20under%20age%2017%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.235,"y":15.981000000000002,"w":10.733000000000002,"clr":-1,"A":"left","R":[{"T":"qualifying%20for%20child%20tax%20credit%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.75,"y":16.419,"w":6.552,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.809,"y":17.667,"w":7.965000000000002,"clr":-1,"A":"left","R":[{"T":"If%20more%20than%20four%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.809,"y":18.267,"w":8.003000000000002,"clr":-1,"A":"left","R":[{"T":"dependents%2C%20see%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.809,"y":18.867,"w":7.428000000000001,"clr":-1,"A":"left","R":[{"T":"instructions%20and%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.809,"y":19.488,"w":5.4830000000000005,"clr":-1,"A":"left","R":[{"T":"check%20here%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":13.348,"y":19.394,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":20.788,"y":20.794,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":20.794,"w":16.616,"clr":-1,"A":"left","R":[{"T":"Total%20number%20of%20exemptions%20claimed%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.188,"y":20.794,"w":25.5,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.771,"y":14.075,"w":7.559000000000001,"clr":-1,"A":"left","R":[{"T":"Boxes%20checked%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":83.771,"y":14.512,"w":6.1129999999999995,"clr":-1,"A":"left","R":[{"T":"on%206a%20and%206b","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":83.771,"y":15.106,"w":7.557000000000002,"clr":-1,"A":"left","R":[{"T":"No.%20of%20children%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":83.771,"y":15.544,"w":5.5009999999999994,"clr":-1,"A":"left","R":[{"T":"on%206c%20who%3A%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":83.771,"y":15.981000000000002,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.707,"y":15.981000000000002,"w":6.891,"clr":-1,"A":"left","R":[{"T":"lived%20with%20you%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":83.771,"y":16.487,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":84.64,"y":16.487,"w":7.835000000000001,"clr":-1,"A":"left","R":[{"T":"did%20not%20live%20with%20","S":-1,"TS":[0,9.5,1,0]}]},{"oc":"#221f1f","x":83.771,"y":16.893,"w":9.168999999999999,"clr":-1,"A":"left","R":[{"T":"you%20due%20to%20divorce%20","S":-1,"TS":[0,9.5,1,0]}]},{"oc":"#221f1f","x":83.771,"y":17.299,"w":6.335000000000001,"clr":-1,"A":"left","R":[{"T":"or%20separation","S":-1,"TS":[0,9.5,1,0]}]},{"oc":"#221f1f","x":83.771,"y":17.706,"w":8.334999999999999,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,9.5,1,0]}]},{"oc":"#221f1f","x":83.771,"y":18.403,"w":8.891,"clr":-1,"A":"left","R":[{"T":"Dependents%20on%206c%20","S":-1,"TS":[0,9.5,1,0]}]},{"oc":"#221f1f","x":83.771,"y":18.809,"w":8.891,"clr":-1,"A":"left","R":[{"T":"not%20entered%20above%20","S":-1,"TS":[0,9.5,1,0]}]},{"oc":"#221f1f","x":83.9,"y":20.337,"w":8.501000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20numbers%20on%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":83.9,"y":20.809,"w":6.003,"clr":-1,"A":"left","R":[{"T":"lines%20above%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":91.051,"y":20.746,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.938,"y":21.91,"w":3.7790000000000004,"clr":-1,"A":"left","R":[{"T":"Income%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.938,"y":23.606,"w":7.667000000000002,"clr":-1,"A":"left","R":[{"T":"Attach%20Form(s)%20%20","S":-1,"TS":[0,10.8,1,0]}]},{"oc":"#221f1f","x":5.938,"y":24.191,"w":7.5020000000000024,"clr":-1,"A":"left","R":[{"T":"W-2%20here.%20Also%20%20","S":-1,"TS":[0,10.8,1,0]}]},{"oc":"#221f1f","x":5.938,"y":24.776,"w":6.835000000000001,"clr":-1,"A":"left","R":[{"T":"attach%20Forms%20%20","S":-1,"TS":[0,10.8,1,0]}]},{"oc":"#221f1f","x":5.938,"y":25.361,"w":5.501000000000001,"clr":-1,"A":"left","R":[{"T":"W-2G%20and%20%20%20","S":-1,"TS":[0,10.8,1,0]}]},{"oc":"#221f1f","x":5.938,"y":25.946,"w":6.447000000000001,"clr":-1,"A":"left","R":[{"T":"1099-R%20if%20tax%20%20","S":-1,"TS":[0,10.8,1,0]}]},{"oc":"#221f1f","x":5.938,"y":26.531,"w":6.779999999999999,"clr":-1,"A":"left","R":[{"T":"was%20withheld.%20","S":-1,"TS":[0,10.8,1,0]}]},{"oc":"#221f1f","x":5.938,"y":28.112,"w":6.428000000000001,"clr":-1,"A":"left","R":[{"T":"If%20you%20did%20not%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":28.712,"w":5.5020000000000024,"clr":-1,"A":"left","R":[{"T":"get%20a%20W-2%2C%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":29.312,"w":7.594000000000001,"clr":-1,"A":"left","R":[{"T":"see%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":20.023,"y":21.607,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":21.607,"w":20.670000000000005,"clr":-1,"A":"left","R":[{"T":"Wages%2C%20salaries%2C%20tips%2C%20etc.%20Attach%20Form(s)%20W-2%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.375,"y":21.607,"w":18,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.424,"y":21.607,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":20.023,"y":22.357,"w":1.112,"clr":-1,"A":"left","R":[{"T":"8a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":22.357,"w":4.002,"clr":-1,"A":"left","R":[{"T":"Taxable%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":28.442,"y":22.357,"w":17.262,"clr":-1,"A":"left","R":[{"T":"interest.%20Attach%20Schedule%20B%20if%20required%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.375,"y":22.357,"w":18,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.03,"y":22.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"8a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":30.771,"y":23.107,"w":3.871,"clr":-1,"A":"left","R":[{"T":"interest.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":35.578,"y":23.107,"w":3.4440000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":40.169,"y":23.107,"w":8.095000000000002,"clr":-1,"A":"left","R":[{"T":"include%20on%20line%208a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.375,"y":23.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.438,"y":23.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":57.5,"y":23.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.204,"y":23.107,"w":1.445,"clr":-1,"A":"left","R":[{"T":"8b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":23.857,"w":22.374999999999996,"clr":-1,"A":"left","R":[{"T":"Ordinary%20dividends.%20Attach%20Schedule%20B%20if%20required%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.438,"y":23.857,"w":16.5,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.03,"y":23.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"9a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":20.788,"y":24.607,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":24.607,"w":8.817000000000002,"clr":-1,"A":"left","R":[{"T":"Qualified%20dividends%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.875,"y":24.607,"w":16.5,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.204,"y":24.607,"w":1.445,"clr":-1,"A":"left","R":[{"T":"9b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":25.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":25.357,"w":30.003,"clr":-1,"A":"left","R":[{"T":"Taxable%20refunds%2C%20credits%2C%20or%20offsets%20of%20state%20and%20local%20income%20taxes%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.75,"y":25.357,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.042,"y":25.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":26.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":26.107,"w":7.927,"clr":-1,"A":"left","R":[{"T":"Alimony%20received%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.813,"y":26.107,"w":31.5,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.042,"y":26.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":26.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":26.857,"w":24.392000000000003,"clr":-1,"A":"left","R":[{"T":"Business%20income%20or%20(loss).%20Attach%20Schedule%20C%20or%20C-EZ%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":57.5,"y":26.857,"w":15,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.042,"y":26.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":27.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":27.607,"w":24.373999999999985,"clr":-1,"A":"left","R":[{"T":"Capital%20gain%20or%20(loss).%20Attach%20Sch%20D.%20If%20not%20required%2C%20check%20here","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.963,"y":27.513,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.042,"y":27.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":28.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":28.357,"w":18.838000000000008,"clr":-1,"A":"left","R":[{"T":"Other%20gains%20or%20(losses).%20Attach%20Form%204797%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.25,"y":28.357,"w":21,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.042,"y":28.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":29.107,"w":7.649000000000001,"clr":-1,"A":"left","R":[{"T":"IRA%20distributions%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.813,"y":29.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.81,"y":29.107,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"15a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":59.15,"y":29.107,"w":1.167,"clr":-1,"A":"left","R":[{"T":"b%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.755,"y":29.107,"w":7.465,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount%20","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":71.937,"y":29.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":73.999,"y":29.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":76.061,"y":29.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":79.622,"y":29.107,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"15b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.262,"y":29.857,"w":10.614,"clr":-1,"A":"left","R":[{"T":"Pensions%20and%20annuities%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":38.81,"y":29.857,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"16a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":59.15,"y":29.857,"w":1.167,"clr":-1,"A":"left","R":[{"T":"b%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.755,"y":29.857,"w":7.465,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount%20","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":71.937,"y":29.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":73.999,"y":29.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":76.061,"y":29.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":79.622,"y":29.857,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"16b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":30.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":30.607,"w":39.44999999999998,"clr":-1,"A":"left","R":[{"T":"Rental%20real%20estate%2C%20royalties%2C%20partnerships%2C%20S%20corporations%2C%20trusts%2C%20etc.%20Attach%20Schedule%20E%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#181516","x":80.042,"y":30.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":31.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":31.357,"w":18.689000000000007,"clr":-1,"A":"left","R":[{"T":"Farm%20income%20or%20(loss).%20Attach%20Schedule%20F%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.25,"y":31.357,"w":21,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.042,"y":31.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":32.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":32.107,"w":13.450000000000003,"clr":-1,"A":"left","R":[{"T":"Unemployment%20compensation","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.063,"y":32.107,"w":25.5,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.042,"y":32.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.262,"y":32.857,"w":10.63,"clr":-1,"A":"left","R":[{"T":"Social%20security%20benefits%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":38.81,"y":32.857,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"20a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":59.15,"y":32.857,"w":1.167,"clr":-1,"A":"left","R":[{"T":"b%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.755,"y":32.857,"w":7.465,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount%20","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":71.937,"y":32.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":73.999,"y":32.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":76.061,"y":32.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":79.622,"y":32.857,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"20b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":33.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":33.607,"w":16.341000000000005,"clr":-1,"A":"left","R":[{"T":"Other%20income.%20List%20type%20and%20amount%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.042,"y":33.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":34.294,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":34.294,"w":35.641000000000005,"clr":-1,"A":"left","R":[{"T":"Combine%20the%20amounts%20in%20the%20far%20right%20column%20for%20lines%207%20through%2021.%20This%20is%20your%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":65.475,"y":34.294,"w":6.167999999999999,"clr":-1,"A":"left","R":[{"T":"total%20income%20","S":-1,"TS":[0,10.2,1,0]}]},{"oc":"#221f1f","x":75.406,"y":34.201,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,8.4,0,0]}]},{"oc":"#221f1f","x":80.042,"y":34.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.938,"y":35.675,"w":4.834000000000001,"clr":-1,"A":"left","R":[{"T":"Adjusted%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.938,"y":36.425,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Gross%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.938,"y":37.175,"w":3.7790000000000004,"clr":-1,"A":"left","R":[{"T":"Income%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":19.259,"y":35.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":35.107,"w":8.612,"clr":-1,"A":"left","R":[{"T":"Educator%20expenses","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":37.715,"y":35.107,"w":15,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":35.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":35.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":35.888,"w":28.670000000000005,"clr":-1,"A":"left","R":[{"T":"Certain%20business%20expenses%20of%20reservists%2C%20performing%20artists%2C%20and%20","S":-1,"TS":[0,10.04,0,0]}]},{"oc":"#221f1f","x":23.261,"y":36.576,"w":27.56200000000001,"clr":-1,"A":"left","R":[{"T":"fee-basis%20government%20officials.%20Attach%20Form%202106%20or%202106-EZ%20","S":-1,"TS":[0,10.04,0,0]}]},{"oc":"#221f1f","x":60.242,"y":36.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":37.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":37.357,"w":24.063000000000006,"clr":-1,"A":"left","R":[{"T":"Health%20savings%20account%20deduction.%20Attach%20Form%208889%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":57.5,"y":37.357,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":37.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":38.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":38.107,"w":16.709000000000003,"clr":-1,"A":"left","R":[{"T":"Moving%20expenses.%20Attach%20Form%203903%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.188,"y":38.107,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":38.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":38.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":38.857,"w":27.173,"clr":-1,"A":"left","R":[{"T":"Deductible%20part%20of%20self-employment%20tax.%20Attach%20Schedule%20SE%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":57.502,"y":38.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":60.242,"y":38.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":39.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":39.607,"w":22.097,"clr":-1,"A":"left","R":[{"T":"Self-employed%20SEP%2C%20SIMPLE%2C%20and%20qualified%20plans%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.438,"y":39.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":57.5,"y":39.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":39.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":40.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":40.357,"w":19.15300000000001,"clr":-1,"A":"left","R":[{"T":"Self-employed%20health%20insurance%20deduction%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.313,"y":40.357,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":40.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":41.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":41.107,"w":17.332,"clr":-1,"A":"left","R":[{"T":"Penalty%20on%20early%20withdrawal%20of%20savings%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.188,"y":41.107,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":41.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":41.857,"w":6.0760000000000005,"clr":-1,"A":"left","R":[{"T":"Alimony%20paid%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":30.378,"y":41.857,"w":1.167,"clr":-1,"A":"left","R":[{"T":"b%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":31.467,"y":41.857,"w":7.555999999999999,"clr":-1,"A":"left","R":[{"T":"Recipient%E2%80%99s%20SSN%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":44.253,"y":41.763,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":59.847,"y":41.857,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"31a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":42.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":42.607,"w":6.631,"clr":-1,"A":"left","R":[{"T":"IRA%20deduction%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.75,"y":42.607,"w":19.5,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":42.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":43.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":43.357,"w":21.87500000000001,"clr":-1,"A":"left","R":[{"T":"Student%20loan%20interest%20deduction%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":43.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":44.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":44.107,"w":15.709000000000007,"clr":-1,"A":"left","R":[{"T":"Tuition%20and%20fees.%20Attach%20Form%208917","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":45.125,"y":44.107,"w":10.5,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":44.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":44.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":44.857,"w":27.175000000000004,"clr":-1,"A":"left","R":[{"T":"Domestic%20production%20activities%20deduction.%20Attach%20Form%208903%20","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":60.242,"y":44.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":45.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":45.607,"w":10.949,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2023%20through%2035%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.938,"y":45.607,"w":28.5,"clr":-1,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.042,"y":45.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.259,"y":46.294,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.263,"y":46.294,"w":18.505000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2036%20from%20line%2022.%20This%20is%20your%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":46.301,"y":46.294,"w":11.170000000000003,"clr":-1,"A":"left","R":[{"T":"adjusted%20gross%20income%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":63.688,"y":46.294,"w":12,"clr":-1,"A":"left","R":[{"T":"%20.....%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.138,"y":46.201,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.042,"y":46.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.938,"y":47.107,"w":44.01399999999996,"clr":-1,"A":"left","R":[{"T":"For%20Disclosure%2C%20Privacy%20Act%2C%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":71.995,"y":47.125,"w":7.725000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011320B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.339,"y":47.071,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.301,"y":47.071,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"1040%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.117,"y":47.071,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":19.926,"y":23.888,"w":1.112,"clr":-1,"A":"left","R":[{"T":"9a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.057,"y":29.107,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"15a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":18.984,"y":29.819,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"16a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.156,"y":32.849,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"20a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.241,"y":41.787,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"31a","S":-1,"TS":[0,11,1,0]}]},{"x":83.655,"y":12.742,"w":32.016000000000005,"clr":0,"A":"left","R":[{"T":"and%20SSN","S":-1,"TS":[0,11,0,0]}]},{"x":31.074,"y":14.922,"w":15.552,"clr":0,"A":"left","R":[{"T":"First","S":-1,"TS":[0,11,0,0]}]},{"x":55.339,"y":14.848,"w":15.120000000000001,"clr":0,"A":"left","R":[{"T":"Last","S":-1,"TS":[0,11,0,0]}]},{"x":37.807,"y":13.348,"w":15.552,"clr":0,"A":"left","R":[{"T":"First","S":-1,"TS":[0,11,0,0]}]},{"x":48.034,"y":13.442,"w":15.120000000000001,"clr":0,"A":"left","R":[{"T":"Last","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":20.788,"y":23.107,"w":6.724,"clr":-1,"A":"left","R":[{"T":"b%20Tax-exempt%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":54.989,"y":43.371,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":57.052,"y":43.371,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":64.287,"y":8.053,"w":27.104,"clr":0,"A":"left","R":[{"T":"ZIP%20code","S":2,"TS":[0,10,0,0]}]},{"x":57.285,"y":8.016,"w":16.345,"clr":0,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INJUR","EN":0},"TI":0,"AM":0,"x":6.143,"y":0.811,"w":16.348,"h":0.833,"TU":"Injured spouse text"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DECE","EN":0},"TI":1,"AM":0,"x":24.485,"y":0.839,"w":25.033,"h":0.833,"TU":"Deceased date"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FY","EN":0},"TI":2,"AM":0,"x":46.571,"y":3.222,"w":6.984,"h":0.833,"TU":"Page 1. For the year January 1 through December 31, 2013, or other tax year beginning (enter date), 2013, ending (date), 20(two digit year).","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYE","EN":0},"TI":3,"AM":0,"x":61.777,"y":3.217,"w":6.457,"h":0.833,"TU":"Page 1. For the year January 1 through December 31, 2013, or other tax year beginning (enter ","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYEYR","EN":0},"TI":4,"AM":0,"x":71.362,"y":3.201,"w":4.054,"h":0.833,"MV":"yy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":5,"AM":0,"x":6.188,"y":4.386,"w":24.724,"h":0.852,"TU":"Your first name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI","EN":0},"TI":6,"AM":0,"x":31.944,"y":4.378,"w":4.669,"h":0.895,"TU":"Taxpayer middle initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAM","EN":0},"TI":7,"AM":0,"x":37.485,"y":4.386,"w":41.477,"h":0.852,"TU":"Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8,"AM":0,"x":80.798,"y":4.391,"w":18.202,"h":0.847,"TU":"Your social security number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SNAM","EN":0},"TI":9,"AM":0,"x":6.188,"y":5.978,"w":24.948,"h":0.876,"TU":"If a joint return, spouse's first name."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SMI","EN":0},"TI":10,"AM":0,"x":31.921,"y":6.015,"w":4.894,"h":0.833,"TU":"Spouse middle initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SLNM","EN":0},"TI":11,"AM":0,"x":37.575,"y":5.978,"w":41.531,"h":0.876,"TU":"Spouse's Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":12,"AM":0,"x":80.708,"y":5.955,"w":18.292,"h":0.875,"TU":"Spouse's social Security Number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":13,"AM":0,"x":6.188,"y":7.416,"w":64.796,"h":0.875,"TU":"Home address (number and street). If you have a Post Office Box, see instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":14,"AM":0,"x":72.045,"y":7.416,"w":7.691,"h":0.875,"TU":"Apartment number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":15,"AM":0,"x":6.188,"y":8.891,"w":49.818,"h":0.901,"TU":"City, town or post office. If you have a foreign address, also complete spaces below (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":16,"AM":0,"x":57.635,"y":8.92,"w":4.516,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":17,"AM":0,"x":64.364,"y":8.986,"w":7.611,"h":0.857,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":18,"AM":0,"x":6.433,"y":10.37,"w":36.556,"h":0.857,"PL":{"V":[null,"Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPC","EN":0},"TI":19,"AM":0,"x":44.73,"y":10.413,"w":23.581,"h":0.833,"TU":"Foreign province or state or county. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":20,"AM":0,"x":69.66,"y":10.413,"w":9.734,"h":0.844,"TU":"Foreign postal code. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAM","EN":0},"TI":27,"AM":0,"x":75.749,"y":12.844,"w":7.429,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN","EN":0},"TI":28,"AM":0,"x":90.275,"y":12.898,"w":8.758,"h":0.833,"TU":"Child SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNM","EN":0},"TI":29,"AM":0,"x":40.766,"y":13.611,"w":6.963,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNM","EN":0},"TI":30,"AM":0,"x":51.265,"y":13.601,"w":7.957,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNR","EN":0},"TI":34,"AM":0,"x":34.501,"y":15.157,"w":14.138,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNR","EN":0},"TI":35,"AM":0,"x":58.788,"y":15.168,"w":14.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6AB","EN":0},"TI":36,"AM":1024,"x":95.175,"y":14.729,"w":3.6,"h":0.833,"TU":"Line 6d. Total number of exemptions claimed. Boxes checked on 6a and 6b."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C1","EN":0},"TI":37,"AM":0,"x":95.287,"y":16.104,"w":3.713,"h":0.833,"TU":"Line 6d. Number of children on 6 c who: Lived with you."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_1_","EN":0},"TI":38,"AM":0,"x":18.563,"y":17.395,"w":10.781,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_1_","EN":0},"TI":39,"AM":0,"x":29.69,"y":17.416,"w":10.781,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. "},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_1_","EN":0},"TI":40,"AM":0,"x":41.037,"y":17.415,"w":14.186,"h":0.833,"TU":"Line 6. c. Dependent 1. (2) Dependent's Social Security Number. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_1_","EN":0},"TI":41,"AM":0,"x":55.441,"y":17.403,"w":10.334,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_2_","EN":0},"TI":43,"AM":0,"x":18.563,"y":18.158,"w":10.789,"h":0.833,"TU":"Line 6. c. Dependent 2. (1)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_2_","EN":0},"TI":44,"AM":0,"x":29.69,"y":18.179,"w":10.789,"h":0.833,"TU":"Line 6. c. Dependent 2. (1)."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_2_","EN":0},"TI":45,"AM":0,"x":40.924,"y":18.117,"w":14.242,"h":0.833,"TU":"Line 6. c. Dependent 2. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_2_","EN":0},"TI":46,"AM":0,"x":55.454,"y":18.192,"w":10.334,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C2","EN":0},"TI":48,"AM":0,"x":95.287,"y":17.854,"w":3.713,"h":0.833,"TU":"Line 6d. Number of children on 6 c who: Did not live with you due to divorce or separation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_3_","EN":0},"TI":49,"AM":0,"x":18.457,"y":18.867,"w":10.897,"h":0.833,"TU":"Line 6. c. Dependent 3. (1)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_3_","EN":0},"TI":50,"AM":0,"x":29.585,"y":18.929,"w":10.897,"h":0.833,"TU":"Line 6. c. Dependent 3. (1)."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_3_","EN":0},"TI":51,"AM":0,"x":41.037,"y":18.847,"w":14.186,"h":0.833,"TU":"Line 6. c. Dependent 3."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_3_","EN":0},"TI":52,"AM":0,"x":55.664,"y":18.937,"w":10.334,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece ","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C3","EN":0},"TI":54,"AM":0,"x":95.287,"y":18.854,"w":3.713,"h":0.833,"TU":"Line 6d. Dependents on 6 c not entered above."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_4_","EN":0},"TI":56,"AM":0,"x":18.563,"y":19.576,"w":10.751,"h":0.833,"TU":"Line 6. c. Dependent 4. (1)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_4_","EN":0},"TI":57,"AM":0,"x":29.69,"y":19.638,"w":10.751,"h":0.833,"TU":"Line 6. c. Dependent 4. (1)."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_4_","EN":0},"TI":58,"AM":0,"x":41.037,"y":19.637,"w":14.073,"h":0.833,"TU":"Line 6. c. Dependent 4."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_4_","EN":0},"TI":59,"AM":0,"x":55.436,"y":19.65,"w":10.334,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece ","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"]}},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FDEPEND"}},"id":{"Id":"Add_FDEPEND","EN":0},"TI":61,"AM":0,"x":35.682,"y":20.312,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6E","EN":0},"TI":62,"AM":1024,"x":95.287,"y":20.582,"w":3.713,"h":0.98,"TU":"Line 6d. Add numbers on lines above."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7W","EN":0},"TI":63,"AM":0,"x":56.425,"y":21.796,"w":9.235,"h":0.833,"PL":{"V":[" ","EXCESS ALLOWANCE","F8919","FB","FEC","DCB","HSH","SCH","PSO","PRI","DFC","NONE APPLY"],"D":[" ","EXCESS ALLOWANCE","F8919","FB","FEC","DCB","HSH","SCH","PSO","PRI","DFC","NONE"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7WAMT","EN":0},"TI":64,"AM":0,"x":67.099,"y":21.818,"w":9.203,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":65,"AM":0,"x":83.137,"y":21.791,"w":11.925,"h":0.833,"TU":"Line 7. Wages, salaries, tips, etc."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHB"}},"id":{"Id":"Add_SchB","EN":0},"TI":66,"AM":0,"x":52.324,"y":22.487,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":67,"AM":0,"x":83.081,"y":22.541,"w":12.037,"h":0.833,"TU":"Line 8. a. Taxable interest. Attach Schedule B if required. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":68,"AM":0,"x":63.112,"y":23.25,"w":12.375,"h":0.833,"TU":"Line 8. b. Tax-exempt interest. Do not include on line 8 a. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHB"}},"id":{"Id":"Add_SchB","EN":0},"TI":69,"AM":0,"x":53.118,"y":23.801,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"F8814T1","EN":0},"TI":70,"AM":0,"x":58.743,"y":24.067,"w":7.612,"h":0.833,"PL":{"V":[null," FORM 8814"],"D":[" ","FORM 8814"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8814A","EN":0},"TI":71,"AM":0,"x":69.58,"y":24.077,"w":9.053,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":72,"AM":0,"x":83.025,"y":24.041,"w":12.15,"h":0.833,"TU":"Line 9. a. Ordinary dividends. Attach Schedule B if required. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"F8814T2","EN":0},"TI":73,"AM":0,"x":37.857,"y":24.779,"w":7.973000000000001,"h":0.833,"PL":{"V":[null,"FORM 8814"],"D":[" ","FORM 8814"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8814A2","EN":0},"TI":74,"AM":0,"x":48.243,"y":24.789,"w":9.053,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALDIVS","EN":0},"TI":75,"AM":0,"x":63.112,"y":24.75,"w":12.375,"h":0.833,"TU":"Line 9. b. Qualified dividends. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":76,"AM":0,"x":83.137,"y":25.52,"w":11.981,"h":0.833,"TU":"Line 10. Taxable refunds, credits, or offsets of state and local income taxes. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":77,"AM":0,"x":83.025,"y":26.291,"w":12.094,"h":0.833,"TU":"Line 11. Alimony received. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":78,"AM":0,"x":83.025,"y":27.041,"w":11.981,"h":0.833,"TU":"Line 12. Business income or (loss). Attach Schedule C or C-E Z. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"F8814LIT","EN":0},"TI":80,"AM":0,"x":59.952,"y":27.903,"w":8.951,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8814AMT","EN":0},"TI":81,"AM":0,"x":69.513,"y":27.863,"w":8.829,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":82,"AM":0,"x":83.081,"y":27.77,"w":12.037,"h":0.833,"TU":"Line 13. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4797"}},"id":{"Id":"Add_F4797","EN":0},"TI":83,"AM":0,"x":47.299,"y":28.472,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14W","EN":0},"TI":84,"AM":0,"x":51.827,"y":28.585,"w":26.959,"h":0.833,"TU":"Line 21. Other income. List type and amount. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":85,"AM":0,"x":83.081,"y":28.52,"w":12.094,"h":0.833,"TU":"Line 14. Other gains or (losses). Attach Form 4797. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15A","EN":0},"TI":86,"AM":0,"x":42.153,"y":29.25,"w":12.503,"h":0.833,"TU":"Line 15. a. I R A distributions. Dollars."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"QCD","EN":0},"TI":87,"AM":0,"x":70.676,"y":29.337,"w":8.084,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":88,"AM":0,"x":83.025,"y":29.291,"w":12.094,"h":0.833,"TU":"Line 15. b. Taxable amount. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16A","EN":0},"TI":89,"AM":0,"x":42.228,"y":30.093,"w":12.311,"h":0.833,"TU":"Line 16. a. Pensions and annuities. Dollars."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSO","EN":0},"TI":90,"AM":0,"x":70.825,"y":30.072,"w":8.084,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16B","EN":0},"TI":91,"AM":0,"x":83.081,"y":30.02,"w":12.037,"h":0.833,"TU":"Line 16. b. Taxable amount. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHE1"}},"id":{"Id":"Add_SCHE","EN":0},"TI":92,"AM":0,"x":74.755,"y":30.72,"w":2.637,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":93,"AM":0,"x":83.025,"y":30.791,"w":12.094,"h":0.833,"TU":"Line 17. Rental real estate, royalties, partnerships, S corporations, trusts, etcetera. Attach Schedule E. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHF"}},"id":{"Id":"Add_SCHF","EN":0},"TI":94,"AM":0,"x":48.383,"y":31.483,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":95,"AM":0,"x":82.969,"y":31.561,"w":12.206,"h":0.833,"TU":"Line 18. Farm income or (loss). Attach Schedule F. Dollars."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L19T1","EN":0},"TI":96,"AM":0,"x":58.504,"y":32.272,"w":10.779,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19T2","EN":0},"TI":97,"AM":0,"x":69.859,"y":32.268,"w":9.053,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":98,"AM":0,"x":83.081,"y":32.27,"w":11.981,"h":0.833,"TU":"Line 19. Unemployment compensation. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20AMOD","EN":0},"TI":99,"AM":0,"x":41.996,"y":32.977,"w":12.27,"h":0.833,"TU":"Line 20. a. Social Security benefits. Dollars."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L20LSE","EN":0},"TI":100,"AM":0,"x":70.626,"y":33.125,"w":8.108,"h":0.833,"TU":"Line 20. a. Social Security benefits. Dollars.","MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20B","EN":0},"TI":101,"AM":0,"x":83.137,"y":33.02,"w":12.037,"h":0.833,"TU":"Line 20. b. Taxable amount. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHINC_L21DESC_1_","EN":0},"TI":102,"AM":0,"x":46.987,"y":33.826,"w":17.746,"h":0.833,"TU":"Line 21. Other income. List type."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHINC_L21DAMT_1_","EN":0},"TI":103,"AM":0,"x":65.723,"y":33.86,"w":12.15,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":104,"AM":0,"x":83.119,"y":33.791,"w":12.038,"h":0.833,"TU":"Line 21. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":105,"AM":1024,"x":83.137,"y":34.541,"w":11.981,"h":0.833,"TU":"Line 22. Combine the amounts in the far right column for lines 7 through 21. This is your total income. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":106,"AM":0,"x":63.281,"y":35.311,"w":12.15,"h":0.833,"TU":"Line 23. Educator expenses. dollars"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BUSEXP","EN":0},"TI":107,"AM":0,"x":63.281,"y":36.75,"w":11.981,"h":0.833,"TU":"Line 24. Certain business expenses of reservists, performing artists, and fee-basis government officials. Attach Form 2106 or 2106-E Z. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HSA","EN":0},"TI":108,"AM":0,"x":63.225,"y":37.541,"w":12.094,"h":0.833,"TU":"Line 25. Health savings account deduction. Attach Form 8889. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F3903"}},"id":{"Id":"Add_F3909","EN":0},"TI":109,"AM":0,"x":45.005,"y":38.132,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L26T","EN":0},"TI":110,"AM":0,"x":48.934,"y":38.199,"w":10.145,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":111,"AM":0,"x":63.281,"y":38.27,"w":11.925,"h":0.833,"TU":"Line 26. Moving expenses. Attach Form 3903. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":112,"AM":0,"x":63.281,"y":39.061,"w":12.094,"h":0.833,"TU":"Line 27. Deductible part of self-employment tax. Attach Schedule S E. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":113,"AM":0,"x":63.169,"y":39.811,"w":12.206,"h":0.833,"TU":"Line 28. Self-employed S E P, SIMPLE, and qualified plans. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L29W","EN":0},"TI":114,"AM":0,"x":50.012,"y":40.54,"w":8.458,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":115,"AM":0,"x":63.319,"y":40.541,"w":11.925,"h":0.833,"TU":"Line 29. Self-employed health insurance deduction. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":116,"AM":0,"x":63.337,"y":41.291,"w":11.925,"h":0.833,"TU":"Line 30. Penalty on early withdrawal of savings. Dollars."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A586_RSSN_1_","EN":0},"TI":117,"AM":0,"x":45.788,"y":42,"w":12.375,"h":0.833,"TU":"Line 31. b. Recipient’s S S N."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":118,"AM":0,"x":63.281,"y":42.061,"w":11.925,"h":0.833,"TU":"Line 31. a. Alimony paid. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":119,"AM":0,"x":63.225,"y":42.791,"w":12.094,"h":0.833,"TU":"Line 32. I R A deduction. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":120,"AM":0,"x":63.169,"y":43.541,"w":12.263,"h":0.833,"TU":"Line 33. Student loan interest deduction. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8917"}},"id":{"Id":"Add_F8917","EN":0},"TI":121,"AM":0,"x":45.352,"y":44.209,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32C","EN":0},"TI":122,"AM":0,"x":63.225,"y":44.291,"w":12.15,"h":0.833,"TU":"Line 34. Tuition and fees. Attach Form 8917. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8903"}},"id":{"Id":"Add_F8903","EN":0},"TI":123,"AM":0,"x":55.336,"y":44.936,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DPAD","EN":0},"TI":124,"AM":0,"x":63.337,"y":45.061,"w":11.925,"h":0.833,"TU":"Line 35. Domestic production activities deduction. Attach Form 8903. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T","EN":0},"TI":125,"AM":0,"x":58.449,"y":45.878,"w":10.779,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32W","EN":0},"TI":126,"AM":0,"x":69.805,"y":45.874,"w":9.053,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":127,"AM":1024,"x":83.081,"y":45.75,"w":12.037,"h":0.833,"TU":"Line 36. Add lines 23 through 35. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":128,"AM":1024,"x":83.137,"y":46.541,"w":11.925,"h":0.833,"TU":"Line 37. Subtract line 36 from line 22. This is your adjusted gross income. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PECY","EN":0},"TI":21,"AM":0,"x":88.037,"y":10.522,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SECY","EN":0},"TI":22,"AM":0,"x":92.762,"y":10.522,"w":1.439,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":23,"AM":0,"x":22.59,"y":11.361,"w":1.723,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS4","EN":0},"TI":24,"AM":0,"x":62.063,"y":11.4,"w":1.723,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":25,"AM":0,"x":22.461,"y":12.101,"w":1.723,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS3","EN":0},"TI":26,"AM":0,"x":22.469,"y":12.922,"w":1.839,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS5","EN":0},"TI":31,"AM":0,"x":62.053,"y":13.428,"w":1.723,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6A","EN":0},"TI":32,"AM":0,"x":23.856,"y":14.374,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6B","EN":0},"TI":33,"AM":0,"x":23.856,"y":15.063,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_1_","EN":0},"TI":42,"AM":0,"x":72.875,"y":17.299,"w":1.503,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_2_","EN":0},"TI":47,"AM":0,"x":72.819,"y":18.035,"w":1.503,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_3_","EN":0},"TI":53,"AM":0,"x":72.939,"y":18.846,"w":1.439,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPSX","EN":0},"TI":55,"AM":0,"x":15.194,"y":19.666,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_4_","EN":0},"TI":60,"AM":0,"x":72.939,"y":19.596,"w":1.351,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L13X","EN":0},"TI":79,"AM":0,"x":58.266,"y":27.832,"w":1.375,"h":0.833}]}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.402,"y":1.266,"w":1.5,"l":86.711},{"oc":"#221f1f","x":93.028,"y":1.266,"w":1.5,"l":6.081},{"oc":"#221f1f","x":79.415,"y":2.016,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.128,"y":1.266,"w":1.5,"l":12.461},{"oc":"#221f1f","x":83.128,"y":2.016,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.503,"y":1.266,"w":1.5,"l":3.798},{"oc":"#221f1f","x":95.503,"y":2.016,"w":0.75,"l":3.798},{"oc":"#221f1f","x":75.745,"y":3.443,"w":1.5,"l":3.625},{"oc":"#221f1f","x":75.745,"y":2.016,"w":1.5,"l":3.625},{"oc":"#221f1f","x":79.415,"y":2.016,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.128,"y":2.016,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.503,"y":2.016,"w":0.75,"l":3.798},{"oc":"#221f1f","x":5.809,"y":17.875,"w":0.75,"l":8.181},{"oc":"#221f1f","x":5.809,"y":5.25,"w":0.75,"l":8.181},{"oc":"#221f1f","x":15.065,"y":4.266,"w":0.75,"l":2.561},{"oc":"#221f1f","x":15.065,"y":5.016,"w":0.75,"l":2.561},{"oc":"#221f1f","x":79.415,"y":5.016,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.128,"y":5.016,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.503,"y":5.016,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.415,"y":5.766,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.17,"y":5.766,"w":0.75,"l":12.375},{"oc":"#221f1f","x":83.17,"y":5.016,"w":0.75,"l":12.375},{"oc":"#221f1f","x":95.503,"y":5.016,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.503,"y":5.766,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.415,"y":6.516,"w":1.125,"l":3.798},{"oc":"#221f1f","x":83.128,"y":5.766,"w":0.75,"l":12.461},{"oc":"#221f1f","x":83.128,"y":6.516,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.503,"y":5.766,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.503,"y":6.516,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.415,"y":7.266,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.128,"y":6.516,"w":1.125,"l":12.461},{"oc":"#221f1f","x":83.128,"y":7.266,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.503,"y":6.516,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.503,"y":7.266,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.913,"y":9.75,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":9,"w":0.75,"l":12.375},{"oc":"#221f1f","x":95.503,"y":7.266,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.913,"y":10.5,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":9.75,"w":0.75,"l":12.375},{"oc":"#221f1f","x":95.245,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.913,"y":11.25,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":10.5,"w":0.75,"l":12.375},{"oc":"#221f1f","x":95.245,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":11.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.07,"y":12.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.488,"y":12.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":12,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":12.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.07,"y":13.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.488,"y":13.5,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":12.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":13.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.07,"y":14.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.488,"y":14.25,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":13.5,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":14.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.07,"y":15,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.488,"y":15,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":14.25,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":15,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.07,"y":15.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.488,"y":15.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":15,"w":0.75,"l":3.713},{"oc":"#221f1f","x":54.188,"y":16.57,"w":0.75,"l":5.036},{"oc":"#221f1f","x":59.357,"y":16.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.07,"y":15.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.07,"y":16.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.445,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":75.445,"y":16.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":17.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":17.252,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":17.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":17.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.87,"y":18,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":17.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.245,"y":18,"w":0.75,"l":3.798},{"oc":"#181616","x":6.188,"y":18,"w":0.75,"l":92.813},{"oc":"#221f1f","x":79.157,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":18,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":18.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":18.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":19.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.286,"y":20.719,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":19.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.999,"y":20.719,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.374,"y":20.719,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":21.844,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.999,"y":20.719,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":21.844,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.374,"y":20.719,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":21.844,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":22.594,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":21.844,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":22.594,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":21.844,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":22.594,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":68.02,"y":23.344,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.157,"y":23.344,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":22.594,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":23.344,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":22.594,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":23.344,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":23.344,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":23.344,"w":1.125,"l":3.798},{"oc":"#181616","x":6.188,"y":24.094,"w":0.75,"l":92.813},{"oc":"#221f1f","x":59.357,"y":24.844,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":24.094,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.07,"y":24.844,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.488,"y":24.844,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":24.094,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":25.594,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":24.844,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.07,"y":25.594,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.488,"y":25.594,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":24.844,"w":0.75,"l":3.713},{"oc":"#221f1f","x":79.157,"y":24.094,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":24.094,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":24.094,"w":0.75,"l":3.798},{"oc":"#221f1f","x":5.809,"y":28.213,"w":0.75,"l":8.181},{"oc":"#221f1f","x":5.809,"y":25.212,"w":0.75,"l":8.181},{"oc":"#221f1f","x":14.807,"y":25.594,"w":0.75,"l":2.561},{"oc":"#221f1f","x":14.807,"y":26.344,"w":0.75,"l":2.561},{"oc":"#221f1f","x":59.357,"y":26.344,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":25.594,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.07,"y":26.344,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.488,"y":26.344,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":25.594,"w":0.75,"l":3.713},{"oc":"#221f1f","x":39.557,"y":27.094,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.27,"y":27.094,"w":0.75,"l":12.461},{"oc":"#221f1f","x":55.645,"y":27.094,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":26.344,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":26.344,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":26.344,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":27.844,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":27.844,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.445,"y":27.844,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.357,"y":28.594,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":28.594,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":27.844,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":28.594,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":27.844,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":29.348,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":29.348,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":28.598,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":29.348,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":28.598,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":30.094,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":30.098,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":29.348,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":30.098,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":29.348,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":30.848,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":30.848,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":30.098,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":30.848,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":30.098,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":31.594,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.113,"y":31.594,"w":0.75,"l":12.375},{"oc":"#221f1f","x":63.113,"y":30.844,"w":0.75,"l":12.375},{"oc":"#221f1f","x":75.488,"y":31.594,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":30.844,"w":0.75,"l":3.713},{"oc":"#221f1f","x":59.357,"y":32.344,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.07,"y":31.594,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.07,"y":32.344,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.445,"y":31.594,"w":0.75,"l":3.798},{"oc":"#221f1f","x":75.445,"y":32.344,"w":1.125,"l":3.798},{"oc":"#221f1f","x":78.513,"y":33.516,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.225,"y":33.516,"w":0.75,"l":12.461},{"oc":"#221f1f","x":94.6,"y":33.516,"w":0.75,"l":3.798},{"oc":"#181616","x":5.543,"y":33.516,"w":0.75,"l":92.813},{"oc":"#221f1f","x":78.513,"y":34.266,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.268,"y":34.266,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.268,"y":33.516,"w":0.75,"l":12.375},{"oc":"#221f1f","x":94.6,"y":33.516,"w":0.75,"l":3.798},{"oc":"#221f1f","x":94.6,"y":34.266,"w":0.75,"l":3.798},{"oc":"#221f1f","x":75.187,"y":34.891,"w":0.75,"l":1.375},{"oc":"#221f1f","x":75.187,"y":34.391,"w":0.75,"l":1.375},{"oc":"#221f1f","x":78.513,"y":35.016,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.268,"y":35.016,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.268,"y":34.266,"w":0.75,"l":12.375},{"oc":"#221f1f","x":94.6,"y":34.266,"w":0.75,"l":3.798},{"oc":"#221f1f","x":94.6,"y":35.016,"w":0.75,"l":3.798},{"oc":"#221f1f","x":31.487,"y":35.766,"w":0.75,"l":22.336},{"oc":"#221f1f","x":78.513,"y":35.016,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.225,"y":35.016,"w":0.75,"l":12.461},{"oc":"#221f1f","x":94.6,"y":35.016,"w":0.75,"l":3.798},{"oc":"#221f1f","x":31.516,"y":36.509,"w":0.75,"l":42.037},{"oc":"#181616","x":5.543,"y":37.266,"w":0.75,"l":73.013},{"oc":"#221f1f","x":78.513,"y":38.016,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.225,"y":38.016,"w":0.75,"l":12.461},{"oc":"#221f1f","x":94.6,"y":38.016,"w":0.75,"l":3.798},{"oc":"#221f1f","x":78.513,"y":38.016,"w":0.75,"l":19.886},{"oc":"#221f1f","x":78.513,"y":38.766,"w":0.75,"l":19.886},{"oc":"#181616","x":5.543,"y":38.766,"w":1.2000000000000002,"l":92.813},{"oc":"#181616","x":5.543,"y":41.016,"w":1.2000000000000002,"l":92.813},{"oc":"#221f1f","x":5.5,"y":45.516,"w":1.125,"l":8.748},{"oc":"#221f1f","x":15.399,"y":44.016,"w":0.75,"l":31.034},{"oc":"#221f1f","x":46.338,"y":44.016,"w":0.75,"l":8.748},{"oc":"#221f1f","x":55,"y":44.016,"w":0.75,"l":23.579},{"oc":"#221f1f","x":78.513,"y":44.016,"w":0.75,"l":19.895},{"oc":"#221f1f","x":15.399,"y":44.016,"w":0.75,"l":31.034},{"oc":"#221f1f","x":15.399,"y":45.512,"w":1.125,"l":31.034},{"oc":"#221f1f","x":14.163,"y":45.516,"w":1.125,"l":2.561},{"oc":"#221f1f","x":46.338,"y":44.016,"w":0.75,"l":8.748},{"oc":"#221f1f","x":46.338,"y":45.512,"w":1.125,"l":8.748},{"oc":"#221f1f","x":55,"y":44.016,"w":0.75,"l":23.579},{"oc":"#221f1f","x":55,"y":45.512,"w":1.125,"l":23.579},{"oc":"#221f1f","x":78.513,"y":44.016,"w":0.75,"l":19.886},{"oc":"#221f1f","x":78.513,"y":45.516,"w":0.75,"l":19.886},{"oc":"#221f1f","x":15.4,"y":45.516,"w":1.125,"l":19.886},{"oc":"#221f1f","x":15.4,"y":47.016,"w":0.75,"l":19.886},{"oc":"#221f1f","x":35.2,"y":45.516,"w":1.125,"l":31.023},{"oc":"#221f1f","x":35.2,"y":47.016,"w":0.75,"l":31.023},{"oc":"#221f1f","x":66.138,"y":45.516,"w":1.125,"l":12.461},{"oc":"#221f1f","x":66.138,"y":47.016,"w":0.75,"l":12.461},{"oc":"#221f1f","x":78.513,"y":45.516,"w":1.125,"l":8.748},{"oc":"#221f1f","x":78.513,"y":47.016,"w":0.75,"l":8.748},{"oc":"#221f1f","x":87.175,"y":45.516,"w":1.125,"l":11.223},{"oc":"#221f1f","x":87.175,"y":47.016,"w":0.75,"l":11.223},{"oc":"#221f1f","x":15.4,"y":47.016,"w":0.75,"l":52.061},{"oc":"#221f1f","x":15.4,"y":47.766,"w":0.75,"l":52.061},{"oc":"#221f1f","x":67.375,"y":47.016,"w":0.75,"l":31.023},{"oc":"#221f1f","x":67.375,"y":47.766,"w":0.75,"l":31.023},{"oc":"#221f1f","x":67.375,"y":47.766,"w":0.75,"l":31.023},{"oc":"#221f1f","x":5.5,"y":48.516,"w":1.5,"l":92.899},{"oc":"#221f1f","x":55.645,"y":32.344,"w":0.75,"l":3.798},{"oc":"#221f1f","x":34.143,"y":9.937,"w":0.75,"l":5.036},{"oc":"#57585a","x":84.829,"y":40.984,"w":1.5,"l":12.203},{"oc":"#57585a","x":84.829,"y":40.297,"w":1.5,"l":12.203},{"oc":"#57585a","x":86.067,"y":45.484,"w":1.5,"l":12.203},{"oc":"#57585a","x":86.067,"y":44.797,"w":1.5,"l":12.203}],"VLines":[{"oc":"#221f1f","x":83.17,"y":1.25,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.458,"y":1.25,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.545,"y":1.234,"w":0.75,"l":0.797},{"oc":"#221f1f","x":83.17,"y":1.234,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.545,"y":1.234,"w":0.75,"l":0.797},{"oc":"#221f1f","x":79.371,"y":2.016,"w":1.5,"l":1.427},{"oc":"#221f1f","x":75.745,"y":2.016,"w":1.5,"l":1.427},{"oc":"#221f1f","x":83.17,"y":2,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.458,"y":2,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.545,"y":2,"w":0.75,"l":2.281},{"oc":"#221f1f","x":83.17,"y":2,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.545,"y":2,"w":0.75,"l":2.281},{"oc":"#221f1f","x":4.95,"y":5.562,"w":0.75,"l":12},{"oc":"#221f1f","x":14.85,"y":5.562,"w":0.75,"l":12},{"oc":"#221f1f","x":83.17,"y":4.25,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.458,"y":4.25,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.545,"y":4.25,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.17,"y":4.25,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.545,"y":4.25,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.17,"y":5,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.458,"y":5,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.545,"y":5.016,"w":0.75,"l":0.75},{"oc":"#221f1f","x":83.17,"y":5.016,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.545,"y":5,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.17,"y":5.75,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.458,"y":5.75,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.545,"y":5.75,"w":0.75,"l":0.789},{"oc":"#221f1f","x":83.17,"y":5.75,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.545,"y":5.75,"w":0.75,"l":0.789},{"oc":"#221f1f","x":83.17,"y":6.492,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.458,"y":6.492,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.545,"y":6.492,"w":0.75,"l":0.789},{"oc":"#221f1f","x":83.17,"y":6.492,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.545,"y":6.492,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.887,"y":8.892,"w":0.75,"l":0.779},{"oc":"#221f1f","x":79.148,"y":9.01,"w":0.75,"l":0.729},{"oc":"#221f1f","x":95.288,"y":9,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.913,"y":9,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.262,"y":9.311,"w":0.75,"l":0.41},{"oc":"#221f1f","x":82.913,"y":9.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":9.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":9.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.913,"y":9.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":9.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":10.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":10.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":10.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.913,"y":10.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":11.235,"w":0.75,"l":5.281},{"oc":"#221f1f","x":79.2,"y":11.235,"w":0.75,"l":5.281},{"oc":"#221f1f","x":95.288,"y":11.235,"w":0.75,"l":5.289},{"oc":"#221f1f","x":82.913,"y":11.235,"w":0.75,"l":5.289},{"oc":"#221f1f","x":95.288,"y":11.235,"w":0.75,"l":5.289},{"oc":"#221f1f","x":59.4,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":12,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":12,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":12.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":12.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":13.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":13.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":14.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":14.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":15,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":15,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":15.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.113,"y":15.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":15.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.488,"y":15.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":16.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":16.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":16.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":17.227,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":17.227,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":17.227,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.329,"y":20.703,"w":0.75,"l":0.781},{"oc":"#221f1f","x":83.042,"y":20.703,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.417,"y":20.703,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":21.828,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":21.828,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":21.828,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":22.578,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":22.578,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":22.578,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":23.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":23.32,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":23.32,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.4,"y":24.078,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":24.078,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":24.094,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":24.094,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":24.828,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":24.828,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":24.844,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":24.844,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.913,"y":24.078,"w":0.75,"l":8.281},{"oc":"#221f1f","x":79.2,"y":24.078,"w":0.75,"l":8.281},{"oc":"#221f1f","x":95.288,"y":24.078,"w":0.75,"l":8.281},{"oc":"#221f1f","x":82.913,"y":24.078,"w":0.75,"l":8.281},{"oc":"#221f1f","x":95.288,"y":24.078,"w":0.75,"l":8.281},{"oc":"#221f1f","x":4.95,"y":25.525,"w":0.75,"l":2.375},{"oc":"#221f1f","x":14.85,"y":25.525,"w":0.75,"l":2.375},{"oc":"#221f1f","x":59.4,"y":25.578,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":25.578,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":25.594,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":25.594,"w":0.75,"l":0.75},{"oc":"#221f1f","x":43.313,"y":26.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.6,"y":26.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.313,"y":26.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":26.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.688,"y":26.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":26.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":26.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":26.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":26.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":26.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":26.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":27.078,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":27.078,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.113,"y":27.078,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":27.078,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":27.078,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":27.828,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":27.844,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":27.844,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":27.844,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":27.844,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":28.582,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":28.598,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":28.598,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":28.598,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":28.598,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":29.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":29.348,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":29.348,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":29.348,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":29.348,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":30.082,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":30.098,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":30.098,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":30.098,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":30.098,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":30.828,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":30.844,"w":0.75,"l":0.75},{"oc":"#221f1f","x":63.113,"y":30.844,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.2,"y":30.844,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":30.844,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.4,"y":31.578,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.488,"y":31.578,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.113,"y":31.578,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":31.578,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.488,"y":31.578,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":32.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":32.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":32.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":32.328,"w":0.75,"l":0.781},{"oc":"#221f1f","x":78.556,"y":33.5,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.643,"y":33.516,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.268,"y":33.516,"w":0.75,"l":0.75},{"oc":"#221f1f","x":94.643,"y":33.5,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.562,"y":34.391,"w":0.75,"l":0.5},{"oc":"#221f1f","x":75.187,"y":34.391,"w":0.75,"l":0.5},{"oc":"#221f1f","x":78.556,"y":34.25,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.643,"y":34.266,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.268,"y":34.266,"w":0.75,"l":0.75},{"oc":"#221f1f","x":94.643,"y":34.25,"w":0.75,"l":0.781},{"dsh":1,"oc":"#221f1f","x":31.53,"y":35.078,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":34.005,"y":35.078,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":36.48,"y":35.078,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":38.955,"y":35.078,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":41.43,"y":35.078,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":43.906,"y":35.078,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":46.381,"y":35.078,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":48.856,"y":35.078,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":51.331,"y":35.078,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":53.806,"y":35.078,"w":0.75,"l":0.688},{"oc":"#221f1f","x":82.268,"y":35,"w":0.75,"l":2.281},{"oc":"#221f1f","x":78.556,"y":35,"w":0.75,"l":2.281},{"oc":"#221f1f","x":94.643,"y":35,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.268,"y":35,"w":0.75,"l":2.281},{"oc":"#221f1f","x":94.643,"y":35,"w":0.75,"l":2.281},{"dsh":1,"oc":"#221f1f","x":31.53,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":34.005,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":36.48,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":38.955,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":41.43,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":43.906,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":46.381,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":48.856,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":51.331,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":53.806,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":56.401,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":58.756,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":61.387,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":63.706,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":66.181,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":68.656,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":71.131,"y":35.791,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":73.606,"y":35.791,"w":0.75,"l":0.688},{"oc":"#221f1f","x":62.468,"y":36.592,"w":0.75,"l":0.656},{"oc":"#221f1f","x":58.756,"y":36.592,"w":0.75,"l":0.656},{"oc":"#221f1f","x":74.843,"y":36.592,"w":0.75,"l":0.656},{"oc":"#221f1f","x":62.468,"y":36.592,"w":0.75,"l":0.656},{"oc":"#221f1f","x":78.556,"y":36.592,"w":0.75,"l":0.656},{"oc":"#221f1f","x":74.843,"y":36.592,"w":0.75,"l":0.656},{"oc":"#221f1f","x":78.556,"y":37.25,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.643,"y":37.25,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.268,"y":37.25,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.643,"y":37.25,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.756,"y":38,"w":0.75,"l":0.781},{"oc":"#221f1f","x":62.468,"y":38,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.843,"y":38,"w":0.75,"l":0.781},{"oc":"#221f1f","x":78.556,"y":38,"w":0.75,"l":0.781},{"oc":"#221f1f","x":46.39,"y":42.5,"w":0.75,"l":1.531},{"oc":"#221f1f","x":55.043,"y":42.5,"w":0.75,"l":1.531},{"oc":"#221f1f","x":46.381,"y":42.5,"w":0.75,"l":1.531},{"oc":"#221f1f","x":78.537,"y":42.5,"w":0.75,"l":1.531},{"oc":"#221f1f","x":55.043,"y":42.5,"w":0.75,"l":1.531},{"oc":"#221f1f","x":78.556,"y":42.5,"w":0.75,"l":1.531},{"oc":"#221f1f","x":46.39,"y":44,"w":0.75,"l":1.535},{"oc":"#221f1f","x":55.043,"y":44,"w":0.75,"l":1.535},{"oc":"#221f1f","x":46.381,"y":44,"w":0.75,"l":1.535},{"oc":"#221f1f","x":78.537,"y":44,"w":0.75,"l":1.535},{"oc":"#221f1f","x":55.043,"y":44,"w":0.75,"l":1.535},{"oc":"#221f1f","x":78.556,"y":44,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.243,"y":45.492,"w":0.75,"l":1.539},{"oc":"#221f1f","x":78.556,"y":45.492,"w":0.75,"l":1.539},{"oc":"#221f1f","x":66.181,"y":45.492,"w":0.75,"l":1.539},{"oc":"#221f1f","x":78.556,"y":45.492,"w":0.75,"l":1.539},{"oc":"#221f1f","x":87.218,"y":45.492,"w":0.75,"l":1.539},{"oc":"#221f1f","x":67.418,"y":47,"w":0.75,"l":0.781},{"oc":"#221f1f","x":67.418,"y":47.75,"w":0.75,"l":0.781},{"oc":"#221f1f","x":67.418,"y":47,"w":0.75,"l":0.781},{"oc":"#221f1f","x":67.418,"y":47.75,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.4,"y":31.578,"w":0.75,"l":0.781},{"oc":"#57585a","x":97.032,"y":40.297,"w":1.5,"l":0.687},{"oc":"#57585a","x":84.829,"y":40.297,"w":1.5,"l":0.687},{"oc":"#57585a","x":87.218,"y":40.328,"w":1.5,"l":0.656},{"oc":"#57585a","x":89.693,"y":40.328,"w":1.5,"l":0.656},{"oc":"#57585a","x":92.168,"y":40.328,"w":1.5,"l":0.656},{"oc":"#57585a","x":94.643,"y":40.328,"w":1.5,"l":0.656},{"oc":"#57585a","x":94.643,"y":40.328,"w":1.5,"l":0.656},{"oc":"#57585a","x":98.27,"y":44.797,"w":1.5,"l":0.687},{"oc":"#57585a","x":86.067,"y":44.797,"w":1.5,"l":0.687},{"oc":"#57585a","x":88.043,"y":44.828,"w":1.5,"l":0.656},{"oc":"#57585a","x":90.106,"y":44.828,"w":1.5,"l":0.656},{"oc":"#57585a","x":92.168,"y":44.828,"w":1.5,"l":0.656},{"oc":"#57585a","x":94.231,"y":44.828,"w":1.5,"l":0.656},{"oc":"#57585a","x":96.293,"y":44.828,"w":1.5,"l":0.656},{"oc":"#57585a","x":96.293,"y":44.828,"w":1.5,"l":0.656}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#e4f3f3","x":5.079,"y":0.469,"w":95.288,"h":1.5,"clr":-1},{"oc":"#e4f3f3","x":14.85,"y":2.25,"w":84.15,"h":45,"clr":-1},{"oc":"#e4f3f3","x":4.305,"y":48.516,"w":95.288,"h":0.75,"clr":-1},{"x":31.53,"y":35.016,"w":22.275,"h":0.75,"clr":1},{"x":31.53,"y":35.766,"w":42.075,"h":0.687,"clr":1},{"x":83.17,"y":1.266,"w":12.375,"h":0.75,"clr":1},{"x":95.545,"y":1.266,"w":3.712,"h":0.75,"clr":1},{"x":75.745,"y":2.016,"w":3.625,"h":1.427,"clr":1},{"oc":"#bebfc1","x":79.458,"y":2.016,"w":3.712,"h":2.25,"clr":-1},{"x":83.17,"y":2.016,"w":12.375,"h":2.25,"clr":1},{"x":95.545,"y":2.016,"w":3.712,"h":2.25,"clr":1},{"oc":"#ecf7f9","x":4.95,"y":5.25,"w":9.9,"h":12.625,"clr":-1},{"x":5.672,"y":5.375,"w":9.109,"h":12.249,"clr":1},{"x":13.87,"y":4.265,"w":1.375,"h":0.75,"clr":1},{"x":15.108,"y":4.266,"w":2.475,"h":0.75,"clr":1},{"x":83.17,"y":4.266,"w":12.375,"h":0.75,"clr":1},{"x":95.545,"y":4.266,"w":3.712,"h":0.75,"clr":1},{"x":83.17,"y":5.016,"w":12.375,"h":0.75,"clr":1},{"x":95.545,"y":5.016,"w":3.712,"h":0.75,"clr":1},{"x":83.17,"y":5.766,"w":12.375,"h":0.75,"clr":1},{"x":95.545,"y":5.766,"w":3.712,"h":0.75,"clr":1},{"x":83.17,"y":6.516,"w":12.375,"h":0.75,"clr":1},{"x":95.545,"y":6.516,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":9,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":9,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":9.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":9.75,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":10.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":10.5,"w":3.712,"h":0.75,"clr":1},{"x":63.113,"y":11.25,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":11.25,"w":3.713,"h":0.75,"clr":1},{"oc":"#bebfc1","x":79.2,"y":11.25,"w":3.712,"h":5.25,"clr":-1},{"x":82.913,"y":11.25,"w":12.375,"h":5.25,"clr":1},{"x":95.288,"y":11.25,"w":3.712,"h":5.25,"clr":1},{"x":63.113,"y":12,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":12,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":12.75,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":12.75,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":13.5,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":13.5,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":14.25,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":14.25,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":15,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":15,"w":3.713,"h":0.75,"clr":1},{"x":54.231,"y":15.774,"w":4.95,"h":0.75,"clr":1},{"x":63.113,"y":15.75,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":15.75,"w":3.713,"h":0.75,"clr":1},{"x":82.913,"y":16.502,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":16.5,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":17.25,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":17.25,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":18,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":18,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":18.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":18.75,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":19.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":19.5,"w":3.712,"h":0.75,"clr":1},{"x":83.042,"y":20.719,"w":12.375,"h":0.75,"clr":1},{"x":95.417,"y":20.719,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":21.844,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":21.844,"w":3.712,"h":0.75,"clr":1},{"x":68.063,"y":22.656,"w":9.9,"h":0.687,"clr":1},{"x":82.913,"y":22.594,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":22.594,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":23.344,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":23.344,"w":3.712,"h":0.75,"clr":1},{"x":63.113,"y":24.094,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":24.094,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":24.844,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":24.844,"w":3.713,"h":0.75,"clr":1},{"oc":"#bebfc1","x":79.2,"y":24.094,"w":3.712,"h":8.25,"clr":-1},{"x":82.913,"y":24.094,"w":12.375,"h":8.25,"clr":1},{"x":95.288,"y":24.094,"w":3.712,"h":8.25,"clr":1},{"oc":"#ecf7f9","x":4.95,"y":25.212,"w":9.9,"h":3,"clr":-1},{"x":14.437,"y":25.61,"w":0.515,"h":0.688,"clr":1},{"x":5.672,"y":25.351,"w":9.109,"h":2.75,"clr":1},{"x":14.85,"y":25.594,"w":2.475,"h":0.75,"clr":1},{"x":63.113,"y":25.594,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":25.594,"w":3.713,"h":0.75,"clr":1},{"x":43.313,"y":26.344,"w":12.375,"h":0.75,"clr":1},{"x":55.688,"y":26.344,"w":3.712,"h":0.75,"clr":1},{"oc":"#bebfc1","x":59.4,"y":26.344,"w":3.713,"h":0.75,"clr":-1},{"x":63.113,"y":26.344,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":26.344,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":27.094,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":27.094,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":27.844,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":27.844,"w":3.713,"h":0.75,"clr":1},{"oc":"#bebfc1","x":63.113,"y":28.598,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":75.488,"y":28.598,"w":3.713,"h":0.75,"clr":-1},{"x":63.113,"y":29.348,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":29.348,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":30.098,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":30.098,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":30.844,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":30.844,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":31.594,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":31.594,"w":3.713,"h":0.75,"clr":1},{"x":82.913,"y":32.344,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":32.344,"w":3.712,"h":0.75,"clr":1},{"x":82.268,"y":33.516,"w":12.375,"h":0.75,"clr":1},{"x":94.643,"y":33.516,"w":3.712,"h":0.75,"clr":1},{"x":82.268,"y":34.266,"w":12.375,"h":0.75,"clr":1},{"x":94.643,"y":34.266,"w":3.712,"h":0.75,"clr":1},{"oc":"#bebfc1","x":78.556,"y":35.016,"w":3.712,"h":2.25,"clr":-1},{"x":82.268,"y":35.016,"w":12.375,"h":2.25,"clr":1},{"x":94.643,"y":35.016,"w":3.712,"h":2.25,"clr":1},{"x":62.468,"y":36.608,"w":12.375,"h":0.625,"clr":1},{"x":74.843,"y":36.608,"w":3.713,"h":0.625,"clr":1},{"x":82.268,"y":37.266,"w":12.375,"h":0.75,"clr":1},{"x":94.643,"y":37.266,"w":3.712,"h":0.75,"clr":1},{"x":62.468,"y":38.016,"w":12.375,"h":0.75,"clr":1},{"x":74.843,"y":38.016,"w":3.713,"h":0.75,"clr":1},{"oc":"#bebfc1","x":78.556,"y":38.016,"w":19.8,"h":0.75,"clr":-1},{"x":24.105,"y":39.516,"w":22.275,"h":1.5,"clr":1},{"x":52.568,"y":39.512,"w":16.088,"h":1.5,"clr":1},{"x":84.743,"y":40.266,"w":12.375,"h":0.75,"clr":1},{"x":15.442,"y":42.516,"w":30.948,"h":1.5,"clr":1},{"x":46.381,"y":42.516,"w":8.662,"h":1.5,"clr":1},{"x":55.043,"y":42.516,"w":23.493,"h":1.5,"clr":1},{"x":78.556,"y":42.516,"w":19.809,"h":1.5,"clr":1},{"x":15.442,"y":44.016,"w":30.948,"h":1.496,"clr":1},{"x":46.381,"y":44.016,"w":8.662,"h":1.496,"clr":1},{"x":55.043,"y":44.016,"w":23.493,"h":1.496,"clr":1},{"x":78.556,"y":44.016,"w":19.8,"h":1.5,"clr":1},{"x":85.981,"y":44.766,"w":12.375,"h":0.75,"clr":1},{"x":15.443,"y":45.516,"w":19.8,"h":1.5,"clr":1},{"x":35.243,"y":45.516,"w":30.938,"h":1.5,"clr":1},{"x":66.181,"y":45.516,"w":12.375,"h":1.5,"clr":1},{"x":78.556,"y":45.516,"w":8.662,"h":1.5,"clr":1},{"x":87.218,"y":45.516,"w":11.137,"h":1.5,"clr":1},{"x":15.443,"y":47.016,"w":51.975,"h":0.75,"clr":1},{"x":15.443,"y":47.766,"w":51.975,"h":0.75,"clr":1},{"x":67.418,"y":47.016,"w":30.938,"h":0.75,"clr":1},{"x":67.418,"y":47.766,"w":30.938,"h":0.75,"clr":1},{"x":55.688,"y":31.594,"w":3.712,"h":0.75,"clr":1},{"x":34.392,"y":9.281,"w":4.95,"h":0.75,"clr":1}],"Texts":[{"oc":"#221f1f","x":6.195,"y":0.23399999999999999,"w":8.134000000000002,"clr":-1,"A":"left","R":[{"T":"Form%201040%20(2013)%20","S":-1,"TS":[0,9.7,0,0]}]},{"oc":"#221f1f","x":94.763,"y":0.2749999999999999,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.86,"y":0.274,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.195,"y":1.412,"w":4.335000000000001,"clr":-1,"A":"left","R":[{"T":"Tax%20and%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.195,"y":2.251,"w":3.4450000000000003,"clr":-1,"A":"left","R":[{"T":"Credits","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":15.803999999999998,"y":1.123,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.808,"y":1.123,"w":20.284000000000006,"clr":-1,"A":"left","R":[{"T":"Amount%20from%20line%2037%20(adjusted%20gross%20income)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.508,"y":1.123,"w":21,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.3,"y":1.123,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.803999999999998,"y":1.8730000000000002,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"39a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.808,"y":1.935,"w":3.149,"clr":-1,"A":"left","R":[{"T":"Check%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.808,"y":2.623,"w":1.074,"clr":-1,"A":"left","R":[{"T":"if%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.208,"y":2.303,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7B","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":28.539,"y":1.8730000000000002,"w":1.889,"clr":-1,"A":"left","R":[{"T":"You","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":30.94,"y":1.8730000000000002,"w":15.911000000000008,"clr":-1,"A":"left","R":[{"T":"%20were%20born%20before%20January%202%2C%201949%2C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.339,"y":1.8730000000000002,"w":2.556,"clr":-1,"A":"left","R":[{"T":"Blind.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.539,"y":2.623,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":33.283,"y":2.623,"w":15.541000000000007,"clr":-1,"A":"left","R":[{"T":"%20was%20born%20before%20January%202%2C%201949%2C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.339,"y":2.623,"w":2.556,"clr":-1,"A":"left","R":[{"T":"Blind.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.121,"y":2.29,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":64.358,"y":1.935,"w":6.1129999999999995,"clr":-1,"A":"left","R":[{"T":"Total%20boxes%20%20","S":-1,"TS":[0,10.2,1,0]}]},{"oc":"#221f1f","x":64.358,"y":2.623,"w":4.002,"clr":-1,"A":"left","R":[{"T":"checked","S":-1,"TS":[0,10.2,1,0]}]},{"oc":"#221f1f","x":70.006,"y":2.529,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":71.783,"y":2.623,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"39a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":17.333,"y":3.373,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.808,"y":3.3550000000000004,"w":39.33799999999998,"clr":-1,"A":"left","R":[{"T":"If%20your%20spouse%20itemizes%20on%20a%20separate%20return%20or%20you%20were%20a%20dual-status%20alien%2C%20%20check%20here","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":71.774,"y":3.261,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,8.1,0,0]}]},{"oc":"#221f1f","x":74.602,"y":3.373,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"39b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.195,"y":3.4130000000000003,"w":4.890000000000001,"clr":-1,"A":"left","R":[{"T":"Standard%20%20","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":6.195,"y":3.8499999999999996,"w":5.445,"clr":-1,"A":"left","R":[{"T":"Deduction%20%20","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":6.195,"y":4.288,"w":1.666,"clr":-1,"A":"left","R":[{"T":"for-","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":6.195,"y":4.912,"w":6.611000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20People%20who%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.195,"y":5.35,"w":5.113000000000001,"clr":-1,"A":"left","R":[{"T":"check%20any%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.195,"y":5.787,"w":5.464,"clr":-1,"A":"left","R":[{"T":"box%20on%20line%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.195,"y":6.224,"w":5.095000000000001,"clr":-1,"A":"left","R":[{"T":"39a%20or%2039b%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":12.763,"y":6.224,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.195,"y":6.662,"w":5.481999999999999,"clr":-1,"A":"left","R":[{"T":"who%20can%20be%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.067,"y":7.146,"w":6.186999999999999,"clr":-1,"A":"left","R":[{"T":"claimed%20as%20a%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.067,"y":7.583,"w":5.651000000000002,"clr":-1,"A":"left","R":[{"T":"dependent%2C%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.068,"w":1.8519999999999999,"clr":-1,"A":"left","R":[{"T":"see%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.505,"w":5.742000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.809,"y":9.458,"w":5.519000000000002,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20All%20others%3A%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":10.317,"w":4.5,"clr":-1,"A":"left","R":[{"T":"Single%20or%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":10.754,"w":6.352,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.192,"w":5.445,"clr":-1,"A":"left","R":[{"T":"separately%2C%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.629,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"%246%2C100%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":12.723,"w":6.352,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":13.16,"w":4.352,"clr":-1,"A":"left","R":[{"T":"jointly%20or%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":13.597,"w":5.001000000000001,"clr":-1,"A":"left","R":[{"T":"Qualifying%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":14.035,"w":5.127000000000001,"clr":-1,"A":"left","R":[{"T":"widow(er)%2C%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":14.472,"w":4.17,"clr":-1,"A":"left","R":[{"T":"%2412%2C200%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":15.706,"w":4.093,"clr":-1,"A":"left","R":[{"T":"Head%20of%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":16.144,"w":5.502000000000001,"clr":-1,"A":"left","R":[{"T":"household%2C%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":16.581,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"%248%2C950%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":32.642,"y":4.123,"w":8.242,"clr":-1,"A":"left","R":[{"T":"(from%20Schedule%20A)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.116,"y":4.123,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":44.873,"y":4.123,"w":2.241,"clr":-1,"A":"left","R":[{"T":"your%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.782,"y":4.123,"w":9.557,"clr":-1,"A":"left","R":[{"T":"standard%20deduction%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.087,"y":4.123,"w":7.371,"clr":-1,"A":"left","R":[{"T":"(see%20left%20margin)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":71.508,"y":4.123,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":73.571,"y":4.123,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.3,"y":4.123,"w":1.112,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.803999999999998,"y":4.873,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.808,"y":4.873,"w":12.856000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2040%20from%20line%2038%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":39.195,"y":4.873,"w":28.5,"clr":-1,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.3,"y":4.873,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":27.794,"y":5.623,"w":43.885999999999974,"clr":-1,"A":"left","R":[{"T":"If%20line%2038%20is%20%24150%2C000%20or%20less%2C%20multiply%20%243%2C900%20by%20the%20number%20on%20line%206d.%20Otherwise%2C%20see%20instructions","S":-1,"TS":[0,9.45,0,0]}]},{"oc":"#221f1f","x":80.3,"y":5.623,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":30.109,"y":6.373,"w":30.640000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2042%20from%20line%2041.%20If%20line%2042%20is%20more%20than%20line%2041%2C%20enter%20-0-%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":73.056,"y":6.373,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":75.118,"y":6.373,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.3,"y":6.373,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.675,"y":6.935,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.679,"y":6.935,"w":2.2790000000000004,"clr":-1,"A":"left","R":[{"T":"Tax%20%20","S":-1,"TS":[0,10.2,1,0]}]},{"oc":"#221f1f","x":19.92,"y":7.5920000000000005,"w":8.15,"clr":-1,"A":"left","R":[{"T":"Check%20if%20any%20from%3A","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":30.559,"y":7.5920000000000005,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":34.34,"y":7.5920000000000005,"w":6.132,"clr":-1,"A":"left","R":[{"T":"Form(s)%208814%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":30.559,"y":8.248,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":30.61,"y":9.091,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":80.042,"y":8.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":9.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":9.607,"w":12.170000000000002,"clr":-1,"A":"left","R":[{"T":"Alternative%20minimum%20tax%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":35.189,"y":9.607,"w":16.412000000000006,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).%20Attach%20Form%206251%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.042,"y":9.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":10.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"46%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":10.357,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2044%20and%2045%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.75,"y":10.357,"w":33,"clr":-1,"A":"left","R":[{"T":".....................%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.622,"y":10.263,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.042,"y":10.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"46%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":11.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"47%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.549,"y":11.107,"w":21.467,"clr":-1,"A":"left","R":[{"T":"Foreign%20tax%20credit.%20Attach%20Form%201116%20if%20required%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.25,"y":11.107,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":11.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"47%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":11.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"48%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.549,"y":11.866,"w":29.304000000000006,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20child%20and%20dependent%20care%20expenses.%20Attach%20Form%202441%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":60.242,"y":11.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"48%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":12.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"49%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.549,"y":12.607,"w":19.025000000000006,"clr":-1,"A":"left","R":[{"T":"Education%20credits%20from%20Form%208863%2C%20line%2019%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.188,"y":12.607,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":12.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"49%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":13.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"50%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.549,"y":13.357,"w":26.081000000000007,"clr":-1,"A":"left","R":[{"T":"Retirement%20savings%20contributions%20credit.%20Attach%20Form%208880","S":-1,"TS":[0,11.4,0,0]}]},{"oc":"#221f1f","x":60.242,"y":13.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"50%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":14.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"51%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.549,"y":14.107,"w":22.264,"clr":-1,"A":"left","R":[{"T":"Child%20tax%20credit.%20Attach%20Schedule%208812%2C%20if%20required","S":-1,"TS":[0,11.24,0,0]}]},{"oc":"#221f1f","x":51.313,"y":14.107,"w":4.287,"clr":-1,"A":"left","R":[{"T":"...","S":-1,"TS":[0,11.4,0,0]}]},{"oc":"#221f1f","x":60.242,"y":14.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"51%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":14.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"52%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.549,"y":14.857,"w":20.134000000000007,"clr":-1,"A":"left","R":[{"T":"Residential%20energy%20credits.%20Attach%20Form%205695","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.25,"y":14.857,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":14.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"52%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":15.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"53%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.597,"y":15.607,"w":11.318000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20credits%20from%20Form%3A%20","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#221f1f","x":33.163,"y":15.607,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":36.186,"y":15.582,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"3800%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.961,"y":15.597000000000001,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":44.89,"y":15.629000000000001,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8801%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":50.268,"y":15.631,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":15.607,"w":1.112,"clr":-1,"A":"left","R":[{"T":"53","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.546,"y":16.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"54%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":16.357,"w":18.135000000000005,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2047%20through%2053.%20These%20are%20your%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":42.423,"y":16.357,"w":5.946,"clr":-1,"A":"left","R":[{"T":"total%20credits%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":53.375,"y":16.357,"w":18,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.042,"y":16.357,"w":1.112,"clr":-1,"A":"left","R":[{"T":"54","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":17.045,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"55%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":17.045,"w":30.640000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2054%20from%20line%2046.%20If%20line%2054%20is%20more%20than%20line%2046%2C%20enter%20-0-%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.688,"y":17.045,"w":10.5,"clr":-1,"A":"left","R":[{"T":"......%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.622,"y":16.951,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.042,"y":17.107,"w":1.112,"clr":-1,"A":"left","R":[{"T":"55","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.938,"y":18.138,"w":3.223,"clr":-1,"A":"left","R":[{"T":"Other%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.938,"y":19.038,"w":3.113,"clr":-1,"A":"left","R":[{"T":"Taxes%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":15.546,"y":17.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"56%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":17.857,"w":19.023000000000003,"clr":-1,"A":"left","R":[{"T":"Self-employment%20tax.%20Attach%20Schedule%20SE%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.042,"y":17.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"56%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":18.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"57%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":18.607,"w":25.299999999999997,"clr":-1,"A":"left","R":[{"T":"Unreported%20social%20security%20and%20Medicare%20tax%20from%20Form%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.438,"y":18.607,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":59.081,"y":18.607,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"4137%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.337,"y":18.607,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.981,"y":18.607,"w":2.7800000000000002,"clr":-1,"A":"left","R":[{"T":"8919%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.063,"y":18.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.042,"y":18.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"57%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.675,"y":19.826,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"58%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.679,"y":19.831,"w":39.915999999999976,"clr":-1,"A":"left","R":[{"T":"Additional%20tax%20on%20IRAs%2C%20other%20qualified%20retirement%20plans%2C%20etc.%20Attach%20Form%205329%20if%20required%20","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":74.132,"y":19.831,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":76.194,"y":19.831,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":80.171,"y":19.826,"w":1.112,"clr":-1,"A":"left","R":[{"T":"58","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":20.951,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"59a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":79.647,"y":20.951,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"59a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":17.075,"y":21.701,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":79.622,"y":21.701,"w":1.723,"clr":-1,"A":"left","R":[{"T":"59b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":20.956,"w":21.135,"clr":-1,"A":"left","R":[{"T":"Household%20employment%20taxes%20from%20Schedule%20H","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":19.544,"y":21.706,"w":30.787000000000006,"clr":-1,"A":"left","R":[{"T":"First-time%20homebuyer%20credit%20repayment.%20Attach%20Form%205405%20if%20required","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":61.62,"y":21.706,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":63.682,"y":21.706,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":65.744,"y":21.706,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":67.806,"y":21.706,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":69.868,"y":21.706,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":71.93,"y":21.706,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":73.992,"y":21.706,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":76.054,"y":21.706,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":15.546,"y":22.451,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"60%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":22.451,"w":5.2780000000000005,"clr":-1,"A":"left","R":[{"T":"Taxes%20from%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.212,"y":22.451,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":31.688,"y":22.426,"w":4.836,"clr":-1,"A":"left","R":[{"T":"Form%208959","S":-1,"TS":[0,10.04,0,0]}]},{"oc":"#221f1f","x":38.113,"y":22.451,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":41.564,"y":22.426,"w":4.836,"clr":-1,"A":"left","R":[{"T":"Form%208960","S":-1,"TS":[0,10.04,0,0]}]},{"oc":"#221f1f","x":48.117,"y":22.451,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.523,"y":22.426,"w":11.594000000000003,"clr":-1,"A":"left","R":[{"T":"Instructions%3B%20enter%20code(s)","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":80.042,"y":22.451,"w":1.112,"clr":-1,"A":"left","R":[{"T":"60","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":23.201,"w":1.112,"clr":-1,"A":"left","R":[{"T":"61","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":23.201,"w":16.597999999999995,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2055%20through%2060.%20This%20is%20your%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":40.31,"y":23.201,"w":4.112,"clr":-1,"A":"left","R":[{"T":"total%20tax%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":49.25,"y":23.201,"w":19.5,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.521,"y":23.107,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.042,"y":23.201,"w":1.112,"clr":-1,"A":"left","R":[{"T":"61","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.938,"y":24.04,"w":5.002000000000001,"clr":-1,"A":"left","R":[{"T":"Payments%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":15.546,"y":23.951,"w":1.112,"clr":-1,"A":"left","R":[{"T":"62","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":23.951,"w":24.914,"clr":-1,"A":"left","R":[{"T":"Federal%20income%20tax%20withheld%20from%20Forms%20W-2%20and%201099%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.438,"y":23.951,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":57.501,"y":23.951,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":23.951,"w":1.112,"clr":-1,"A":"left","R":[{"T":"62","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":24.701,"w":1.112,"clr":-1,"A":"left","R":[{"T":"63","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":24.701,"w":30.45800000000001,"clr":-1,"A":"left","R":[{"T":"2013%20estimated%20tax%20payments%20and%20amount%20applied%20from%202012%20return%20","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":60.242,"y":24.701,"w":1.112,"clr":-1,"A":"left","R":[{"T":"63","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.938,"y":25.234,"w":6.241999999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20a%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":25.797,"w":4.834,"clr":-1,"A":"left","R":[{"T":"qualifying%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":26.359,"w":6.039,"clr":-1,"A":"left","R":[{"T":"child%2C%20attach%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":26.922,"w":6.612000000000002,"clr":-1,"A":"left","R":[{"T":"Schedule%20EIC.%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":15.546,"y":25.451,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"64a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.525,"y":25.451,"w":13.059000000000003,"clr":-1,"A":"left","R":[{"T":"Earned%20income%20credit%20(EIC)%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":38.938,"y":25.451,"w":15,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.847,"y":25.451,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"64a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":17.075,"y":26.201,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":26.201,"w":14.762000000000002,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20combat%20pay%20election%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":40.022,"y":26.201,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"64b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":26.951,"w":1.112,"clr":-1,"A":"left","R":[{"T":"65","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.549,"y":26.951,"w":22.061000000000007,"clr":-1,"A":"left","R":[{"T":"Additional%20child%20tax%20credit.%20Attach%20Schedule%208812%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":49.251,"y":26.951,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":51.314,"y":26.951,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":53.377,"y":26.951,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":55.439,"y":26.951,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":56.676,"y":26.951,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"%20%20.","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":60.242,"y":26.951,"w":1.112,"clr":-1,"A":"left","R":[{"T":"65","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":27.701,"w":1.112,"clr":-1,"A":"left","R":[{"T":"66","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.549,"y":27.701,"w":23.1,"clr":-1,"A":"left","R":[{"T":"American%20opportunity%20credit%20from%20Form%208863%2C%20line%208%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.313,"y":27.701,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":27.701,"w":1.112,"clr":-1,"A":"left","R":[{"T":"66","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":28.455,"w":1.112,"clr":-1,"A":"left","R":[{"T":"67","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":28.451,"w":4.7780000000000005,"clr":-1,"A":"left","R":[{"T":"Reserved%20.","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":28.625,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":30.687,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":32.749,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":34.811,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":36.873,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":38.935,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":40.997,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":43.059,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":45.121,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":47.183,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":49.245,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":51.307,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":53.369,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":55.431,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":57.493,"y":28.451,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"oc":"#221f1f","x":60.242,"y":28.455,"w":1.112,"clr":-1,"A":"left","R":[{"T":"67","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":29.205,"w":1.112,"clr":-1,"A":"left","R":[{"T":"68","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":29.201,"w":20.29900000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20paid%20with%20request%20for%20extension%20to%20file","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.25,"y":29.201,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.242,"y":29.201,"w":1.112,"clr":-1,"A":"left","R":[{"T":"68","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":29.955,"w":1.112,"clr":-1,"A":"left","R":[{"T":"69","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":29.954,"w":22.889000000000006,"clr":-1,"A":"left","R":[{"T":"Excess%20social%20security%20and%20tier%201%20RRTA%20tax%20withheld","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":49.25,"y":29.954,"w":7.355,"clr":-1,"A":"left","R":[{"T":"%20....","S":-1,"TS":[0,11.16,0,0]}]},{"oc":"#221f1f","x":60.242,"y":29.954,"w":1.112,"clr":-1,"A":"left","R":[{"T":"69","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":30.701,"w":1.112,"clr":-1,"A":"left","R":[{"T":"70","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":30.701,"w":21.559000000000008,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20federal%20tax%20on%20fuels.%20Attach%20Form%204136","S":-1,"TS":[0,11.16,0,0]}]},{"oc":"#221f1f","x":51.312,"y":30.701,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"oc":"#221f1f","x":53.375,"y":30.701,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"oc":"#221f1f","x":55.439,"y":30.701,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"oc":"#221f1f","x":57.502,"y":30.701,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"oc":"#221f1f","x":60.242,"y":30.701,"w":1.112,"clr":-1,"A":"left","R":[{"T":"70","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.546,"y":31.451,"w":1.112,"clr":-1,"A":"left","R":[{"T":"71","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.55,"y":31.451,"w":8.724,"clr":-1,"A":"left","R":[{"T":"Credits%20from%20Form%3A%20","S":-1,"TS":[0,9.4,0,0]}]},{"oc":"#221f1f","x":29.45,"y":31.451,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":32.87,"y":31.451,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2439%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.094,"y":31.441000000000003,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":40.416,"y":31.451,"w":4.2219999999999995,"clr":-1,"A":"left","R":[{"T":"Reserved","S":-1,"TS":[0,7.8,0,0]}]},{"oc":"#221f1f","x":44.524,"y":31.451,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":47.757,"y":31.451,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"8885%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.726,"y":31.451,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.242,"y":31.451,"w":1.112,"clr":-1,"A":"left","R":[{"T":"71","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":14.902,"y":32.56,"w":1.112,"clr":-1,"A":"left","R":[{"T":"72","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":18.906,"y":32.56,"w":25.640000000000004,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2062%2C%2063%2C%2064a%2C%20and%2065%20through%2071.%20These%20are%20your%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":50.895,"y":32.56,"w":7.335000000000001,"clr":-1,"A":"left","R":[{"T":"total%20payments%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":65.106,"y":32.56,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":75.876,"y":32.466,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":79.397,"y":32.623,"w":1.112,"clr":-1,"A":"left","R":[{"T":"72","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.293,"y":33.399,"w":3.722,"clr":-1,"A":"left","R":[{"T":"Refund%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.293,"y":34.963,"w":7.372000000000002,"clr":-1,"A":"left","R":[{"T":"Direct%20deposit%3F%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.293,"y":35.488,"w":2,"clr":-1,"A":"left","R":[{"T":"See%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.293,"y":36.013,"w":5.742000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":14.902,"y":33.373,"w":1.112,"clr":-1,"A":"left","R":[{"T":"73","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":18.905,"y":33.373,"w":36.71699999999999,"clr":-1,"A":"left","R":[{"T":"If%20line%2072%20is%20more%20than%20line%2061%2C%20subtract%20line%2061%20from%20line%2072.%20This%20is%20the%20amount%20you%20","S":-1,"TS":[0,11.16,0,0]}]},{"oc":"#221f1f","x":64.557,"y":33.373,"w":4.446,"clr":-1,"A":"left","R":[{"T":"overpaid%20","S":-1,"TS":[0,11.16,1,0]}]},{"oc":"#221f1f","x":79.397,"y":33.373,"w":1.112,"clr":-1,"A":"left","R":[{"T":"73","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":14.902,"y":34.123,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"74a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":18.906,"y":34.123,"w":12.485000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20line%2073%20you%20want%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.526,"y":34.123,"w":7.833999999999998,"clr":-1,"A":"left","R":[{"T":"refunded%20to%20you.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":44.732,"y":34.123,"w":16.63500000000001,"clr":-1,"A":"left","R":[{"T":"%20If%20Form%208888%20is%20attached%2C%20check%20here","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":73.391,"y":34.029,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":79.003,"y":34.123,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"74a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":14.059,"y":34.706,"w":1.28,"clr":-1,"A":"left","R":[{"T":"a%01","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":14.059,"y":35.518,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":16.431,"y":34.873,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":18.906,"y":34.873,"w":7.466000000000001,"clr":-1,"A":"left","R":[{"T":"Routing%20number%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.165,"y":34.779,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":56.483,"y":34.873,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,10.2,1,0]}]},{"oc":"#221f1f","x":57.537,"y":34.873,"w":2.7600000000000002,"clr":-1,"A":"left","R":[{"T":"Type%3A%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":63.387,"y":34.873,"w":4.223,"clr":-1,"A":"left","R":[{"T":"Checking","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":72.049,"y":34.873,"w":3.537,"clr":-1,"A":"left","R":[{"T":"Savings","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":16.431,"y":35.619,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":18.906,"y":35.623,"w":7.429,"clr":-1,"A":"left","R":[{"T":"Account%20number","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.902,"y":36.369,"w":1.112,"clr":-1,"A":"left","R":[{"T":"75","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":18.905,"y":36.369,"w":12.485000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20line%2073%20you%20want%20","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":34.527,"y":36.369,"w":16.339000000000006,"clr":-1,"A":"left","R":[{"T":"applied%20to%20your%202014%20estimated%20tax","S":-1,"TS":[0,10.52,1,0]}]},{"oc":"#221f1f","x":56.604,"y":36.275,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":59.597,"y":36.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"75","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.293,"y":37.037,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Amount%20%20","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#221f1f","x":5.293,"y":37.749,"w":4.557,"clr":-1,"A":"left","R":[{"T":"You%20Owe%20","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#221f1f","x":14.902,"y":37.06,"w":1.112,"clr":-1,"A":"left","R":[{"T":"76","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":18.906,"y":37.06,"w":8.333999999999998,"clr":-1,"A":"left","R":[{"T":"Amount%20you%20owe.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":29.625,"y":37.06,"w":33.17400000000001,"clr":-1,"A":"left","R":[{"T":"%20Subtract%20line%2072%20from%20line%2061.%20For%20details%20on%20how%20to%20pay%2C%20see%20instructions%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.308,"y":36.967,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":79.397,"y":37.123,"w":1.112,"clr":-1,"A":"left","R":[{"T":"76","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":14.902,"y":37.873,"w":1.112,"clr":-1,"A":"left","R":[{"T":"77","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":18.906,"y":37.873,"w":17.781000000000002,"clr":-1,"A":"left","R":[{"T":"Estimated%20tax%20penalty%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":44.481,"y":37.873,"w":10.5,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.597,"y":37.873,"w":1.112,"clr":-1,"A":"left","R":[{"T":"77","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.293,"y":38.9,"w":5.835000000000001,"clr":-1,"A":"left","R":[{"T":"Third%20Party%20%20","S":-1,"TS":[0,13.4,1,0]}]},{"oc":"#221f1f","x":5.293,"y":39.65,"w":4.724,"clr":-1,"A":"left","R":[{"T":"Designee%20","S":-1,"TS":[0,13.4,1,0]}]},{"oc":"#221f1f","x":16.431,"y":38.623,"w":40.15199999999999,"clr":-1,"A":"left","R":[{"T":"Do%20you%20want%20to%20allow%20another%20person%20to%20discuss%20this%20return%20with%20the%20IRS%20(see%20instructions)%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":75.762,"y":38.623,"w":2.3350000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.971,"y":38.623,"w":7.871,"clr":-1,"A":"left","R":[{"T":"Complete%20below.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.324,"y":38.623,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":16.43,"y":39.551,"w":5.501000000000001,"clr":-1,"A":"left","R":[{"T":"Designee%E2%80%99s%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":16.43,"y":40.141,"w":3.039,"clr":-1,"A":"left","R":[{"T":"name%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.087,"y":40.047,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":46.977,"y":39.551,"w":3.4270000000000005,"clr":-1,"A":"left","R":[{"T":"Phone%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":46.977,"y":40.141,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"no.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.34,"y":40.047,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":69.643,"y":39.551,"w":10.167,"clr":-1,"A":"left","R":[{"T":"Personal%20identification%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.643,"y":40.141,"w":10.023000000000007,"clr":-1,"A":"left","R":[{"T":"number%20(PIN)%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.702,"y":40.047,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.293,"y":40.876,"w":2.723,"clr":-1,"A":"left","R":[{"T":"Sign%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.293,"y":41.626,"w":2.501,"clr":-1,"A":"left","R":[{"T":"Here%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.293,"y":42.575,"w":7.928000000000001,"clr":-1,"A":"left","R":[{"T":"Joint%20return%3F%20See%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":5.293,"y":43.1,"w":6.020000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.%20%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":5.293,"y":43.625,"w":7.390000000000001,"clr":-1,"A":"left","R":[{"T":"Keep%20a%20copy%20for%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":5.293,"y":44.15,"w":6.204000000000001,"clr":-1,"A":"left","R":[{"T":"your%20records.%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":16.43,"y":42.266,"w":6.797000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20signature%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":46.818,"y":42.266,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":55.481,"y":42.266,"w":7.668000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20occupation%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.993,"y":42.266,"w":10.468,"clr":-1,"A":"left","R":[{"T":"Daytime%20phone%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":16.43,"y":43.766,"w":16.151000000000003,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20signature.%20If%20a%20joint%20return%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":35.689,"y":43.766,"w":2.444,"clr":-1,"A":"left","R":[{"T":"both%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":38.459,"y":43.766,"w":4.91,"clr":-1,"A":"left","R":[{"T":"must%20sign.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":14.729,"y":42.262,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,38.9996,0,0],"RA":90}]},{"oc":"#221f1f","x":46.818,"y":43.766,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":55.481,"y":43.766,"w":9.465,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20occupation","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.993,"y":43.766,"w":18.318000000000005,"clr":-1,"A":"left","R":[{"T":"If%20the%20IRS%20sent%20you%20an%20Identity%20Protection%20","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"oc":"#221f1f","x":78.993,"y":44.203,"w":5.834000000000001,"clr":-1,"A":"left","R":[{"T":"PIN%2C%20enter%20it%20%20","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"oc":"#221f1f","x":78.993,"y":44.641,"w":6.482000000000001,"clr":-1,"A":"left","R":[{"T":"here%20(see%20inst.)","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"oc":"#221f1f","x":5.293,"y":45.648,"w":2.668,"clr":-1,"A":"left","R":[{"T":"Paid%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.293,"y":46.398,"w":4.6690000000000005,"clr":-1,"A":"left","R":[{"T":"Preparer%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.293,"y":47.148,"w":4.613000000000001,"clr":-1,"A":"left","R":[{"T":"Use%20Only%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":16.396,"y":45.234,"w":12.502000000000006,"clr":-1,"A":"left","R":[{"T":"Print%2FType%20preparer%E2%80%99s%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":36.231,"y":45.266,"w":9.315000000000003,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20signature%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.618,"y":45.266,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.993,"y":45.603,"w":6.447000000000003,"clr":-1,"A":"left","R":[{"T":"Check%20%20%20%20%20%20%20%20%20if%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.993,"y":46.041,"w":6.353,"clr":-1,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.656,"y":45.234,"w":2.481,"clr":-1,"A":"left","R":[{"T":"%20PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":16.396,"y":46.891,"w":6.911000000000001,"clr":-1,"A":"left","R":[{"T":"Firm%E2%80%99s%20name%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":24.711,"y":46.828,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":16.396,"y":47.641,"w":6.908999999999999,"clr":-1,"A":"left","R":[{"T":"Firm%E2%80%99s%20address%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":24.708,"y":47.578,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":67.856,"y":46.891,"w":5.186,"clr":-1,"A":"left","R":[{"T":"Firm's%20EIN%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.095,"y":46.828,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":67.856,"y":47.641,"w":4.835000000000001,"clr":-1,"A":"left","R":[{"T":"Phone%20no.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.364,"y":48.341,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.506,"y":48.341,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"1040%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":94.807,"y":48.341,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":77.867,"y":7.327999999999999,"w":112.728,"clr":0,"A":"left","R":[{"T":"Click%20%22Do%20the%20math%22","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":21.993,"y":6.975,"w":8.112000000000002,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).%20","S":-1,"TS":[0,10.2,0,0]}]},{"x":32.43,"y":32.003,"w":53.36,"clr":0,"A":"left","R":[{"T":"Taxpayer%208885","S":-1,"TS":[0,11,0,0]}]},{"x":47.019,"y":32.049,"w":47.144,"clr":0,"A":"left","R":[{"T":"Spouse%208885","S":-1,"TS":[0,11,0,0]}]},{"x":48.875,"y":20.958,"w":57.35199999999999,"clr":0,"A":"left","R":[{"T":"Taxpayer%20Sch%20H","S":-1,"TS":[0,11,0,0]}]},{"x":63.2,"y":20.86,"w":51.135999999999996,"clr":0,"A":"left","R":[{"T":"Spouse%20Sch%20H","S":-1,"TS":[0,11,0,0]}]},{"x":21.718,"y":20.426,"w":74.256,"clr":0,"A":"left","R":[{"T":"Taxpayer%20Copy%205329","S":-1,"TS":[0,11,0,0]}]},{"x":40.082,"y":20.422,"w":68.04,"clr":0,"A":"left","R":[{"T":"Spouse%20Copy%205329","S":-1,"TS":[0,11,0,0]}]},{"x":21.691,"y":19.112,"w":53.36,"clr":0,"A":"left","R":[{"T":"Taxpayer%204137","S":-1,"TS":[0,11,0,0]}]},{"x":35.917,"y":19.117,"w":47.144,"clr":0,"A":"left","R":[{"T":"Spouse%204137","S":-1,"TS":[0,11,0,0]}]},{"x":51.968,"y":19.114,"w":53.36,"clr":0,"A":"left","R":[{"T":"Taxpayer%208919","S":-1,"TS":[0,11,0,0]}]},{"x":65.606,"y":19.126,"w":47.144,"clr":0,"A":"left","R":[{"T":"Spouse%208919","S":-1,"TS":[0,11,0,0]}]},{"x":46.445,"y":17.799,"w":33.344,"clr":0,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,11,0,0]}]},{"x":57.184,"y":17.813,"w":27.128,"clr":0,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11,0,0]}]},{"x":53.146,"y":8.289,"w":27.128,"clr":0,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11,0,0]}]},{"x":77.094,"y":8.031,"w":126.70799999999994,"clr":0,"A":"left","R":[{"T":"before%20calculating%20tax.","S":-1,"TS":[0,16,1,0]}]},{"x":47.432,"y":7.586,"w":27.568,"clr":0,"A":"left","R":[{"T":"Amount","S":-1,"TS":[0,11,0,0]}]},{"x":19.441,"y":32,"w":38.68,"clr":0,"A":"left","R":[{"T":"Form%202439","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.803999999999998,"y":4.123,"w":1.112,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.808,"y":4.123,"w":9.891,"clr":-1,"A":"left","R":[{"T":"Itemized%20deductions%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.803999999999998,"y":5.623,"w":1.112,"clr":-1,"A":"left","R":[{"T":"42","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.808,"y":5.623,"w":5.946,"clr":-1,"A":"left","R":[{"T":"Exemptions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":15.803999999999998,"y":6.373,"w":1.112,"clr":-1,"A":"left","R":[{"T":"43","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.808,"y":6.373,"w":8.337,"clr":-1,"A":"left","R":[{"T":"Taxable%20income.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":34.341,"y":8.248,"w":4.836,"clr":-1,"A":"left","R":[{"T":"Form%204972","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.544,"y":8.248,"w":4.1290000000000004,"clr":-1,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":16.431,"y":40.861,"w":68.33299999999996,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20return%20and%20accompanying%20schedules%20and%20statements%2C%20and%20to%20the%20best%20of%20my%20knowledge%20and","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":16.431,"y":41.348,"w":68.65599999999993,"clr":-1,"A":"left","R":[{"T":"belief%2C%20they%20are%20true%2C%20correct%2C%20and%20complete.%20Declaration%20of%20preparer%20(other%20than%20taxpayer)%20is%20based%20on%20all%20information%20of%20which%20preparer%20has%20any%20knowledge.","S":-1,"TS":[0,9.5,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":129,"AM":1024,"x":18.405,"y":0.285,"w":48.185,"h":0.852,"TU":"Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":130,"AM":1024,"x":69.869,"y":0.34,"w":18.563,"h":0.847,"TU":"Your social security number. 9 digits."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":131,"AM":1024,"x":83.029,"y":1.288,"w":12.375,"h":0.833,"TU":"Page 2. Tax and credits. Line 38. Amount from line 37 (adjusted gross income). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N35A","EN":0},"TI":134,"AM":1024,"x":75.604,"y":2.121,"w":3.625,"h":1.344,"TU":"Line 39. a. Total Boxes Checked."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHA"}},"id":{"Id":"A507","EN":0},"TI":137,"AM":0,"x":73.173,"y":4.142,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":139,"AM":0,"x":83.029,"y":4.288,"w":12.375,"h":0.833,"TU":"Line 40. Itemized deductions (from Schedule A) or your standard deduction (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":140,"AM":1024,"x":83.029,"y":5.038,"w":12.375,"h":0.833,"TU":"Line 41. Subtract line 40 from line 38. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":141,"AM":0,"x":83.029,"y":5.788,"w":12.375,"h":0.833,"TU":"Line 42. Exemptions. If line 38 is $150,000 or less, multiply $3,900 by the number on line 6d. Otherwise, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":142,"AM":1024,"x":83.029,"y":6.538,"w":12.375,"h":0.833,"TU":"Line 43. Taxable income. Subtract line 42 from line 41. If line 42 is more than line 41, enter zero. Dollars. "},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8814"}},"id":{"Id":"Add_F8814","EN":0},"TI":144,"AM":0,"x":43.097,"y":7.65,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT8814","EN":0},"TI":145,"AM":0,"x":52.077,"y":7.766,"w":3.078,"h":0.833,"TU":"Line 44. C. Form (Enter number)."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4972T"}},"id":{"Id":"Add_F4972T","EN":0},"TI":147,"AM":0,"x":47.744,"y":8.269,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4972S"}},"id":{"Id":"Add_F4972S","EN":0},"TI":148,"AM":0,"x":58.387,"y":8.296,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40FM","EN":0},"TI":150,"AM":0,"x":34.333,"y":9.185,"w":4.95,"h":0.833,"TU":"Line 44. C. Form (Enter number)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L40T","EN":0},"TI":151,"AM":0,"x":71.927,"y":8.96,"w":3.078,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40W","EN":0},"TI":152,"AM":0,"x":75.6,"y":8.961,"w":3.078,"h":0.833,"TU":"Line 44. C. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":153,"AM":0,"x":82.912,"y":9,"w":12.375,"h":0.833,"TU":"Line 44. Tax. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6251"}},"id":{"Id":"Add_F6251","EN":0},"TI":154,"AM":0,"x":57.203,"y":9.775,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":155,"AM":1024,"x":82.912,"y":9.75,"w":12.375,"h":0.833,"TU":"Line 45. Alternative minimum tax (see instructions). Attach Form 6251. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":156,"AM":1024,"x":82.912,"y":10.473,"w":12.375,"h":0.833,"TU":"Line 46. Add lines 44 and 45. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1116"}},"id":{"Id":"Add_F1116","EN":0},"TI":157,"AM":0,"x":47.87,"y":11.251,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L43","EN":0},"TI":158,"AM":0,"x":63.112,"y":11.25,"w":12.375,"h":0.833,"TU":"Line 47. Foreign tax credit. Attach Form 1116 if required. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2441"}},"id":{"Id":"Add_F2441","EN":0},"TI":159,"AM":0,"x":54.695,"y":12.03,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L44","EN":0},"TI":160,"AM":1024,"x":63.112,"y":12,"w":12.375,"h":0.833,"TU":"Line 48. Credit for child and dependent care expenses. Attach Form 2441. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8863"}},"id":{"Id":"Add_F8863_Line19","EN":0},"TI":161,"AM":0,"x":45.187,"y":12.664,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L46","EN":0},"TI":162,"AM":1024,"x":63.112,"y":12.75,"w":12.375,"h":0.833,"TU":"Line 49. Education credits from Form 8863, line 19. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8880"}},"id":{"Id":"Add_F8880","EN":0},"TI":163,"AM":0,"x":54.855,"y":13.429,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RSCCRED","EN":0},"TI":164,"AM":1024,"x":63.112,"y":13.5,"w":12.375,"h":0.833,"TU":"Line 50. Retirement savings contributions credit. Attach Form 8880. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L47","EN":0},"TI":165,"AM":0,"x":63.112,"y":14.25,"w":12.375,"h":0.833,"TU":"Line 51. Child tax credit. Attach Schedule 8812, if required. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F5695"}},"id":{"Id":"Add_F5695","EN":0},"TI":166,"AM":0,"x":46.528,"y":15.002,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RESENRGY","EN":0},"TI":167,"AM":1024,"x":63.112,"y":15,"w":12.375,"h":0.833,"TU":"Line 52. Residential energy credits. Attach Form 5695. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F3800"}},"id":{"Id":"Add_F3800","EN":0},"TI":169,"AM":0,"x":39.196,"y":15.679,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8801"}},"id":{"Id":"Add_F8801","EN":0},"TI":171,"AM":0,"x":47.628,"y":15.72,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L49FM","EN":0},"TI":173,"AM":0,"x":54.394,"y":15.771,"w":4.95,"h":0.833,"TU":"Line 53. C. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L49","EN":0},"TI":174,"AM":0,"x":63.112,"y":15.75,"w":12.375,"h":0.833,"TU":"Line 53. Other Credits. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L50","EN":0},"TI":175,"AM":1024,"x":82.912,"y":16.502,"w":12.375,"h":0.833,"TU":"Line 54. Add lines 47 through 53. These are your total credits. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L51","EN":0},"TI":176,"AM":1024,"x":82.912,"y":17.25,"w":12.375,"h":0.833,"TU":"Line 55. Subtract line 54 from line 46. If line 54 is more than line 46, enter zero. Dollars. "},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHSEST"}},"id":{"Id":"Add_SchSET","EN":0},"TI":177,"AM":0,"x":52.698,"y":17.997,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHSESS"}},"id":{"Id":"Add_SchSES","EN":0},"TI":178,"AM":0,"x":61.976,"y":17.942,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L52T","EN":0},"TI":179,"AM":0,"x":71.293,"y":18.08,"w":7.536,"h":0.833,"TU":"Line 53. C. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L52","EN":0},"TI":180,"AM":0,"x":82.912,"y":18,"w":12.375,"h":0.833,"TU":"Line 56. Self-employment tax. Attach Schedule S E. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L53","EN":0},"TI":181,"AM":0,"x":82.912,"y":18.75,"w":12.375,"h":0.833,"TU":"Line 57. Unreported social security and Medicare Tax. Dollars. "},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4137T"}},"id":{"Id":"Add_F4137T","EN":0},"TI":182,"AM":0,"x":30.994,"y":19.206,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4137S"}},"id":{"Id":"Add_F4137S","EN":0},"TI":183,"AM":0,"x":43.9,"y":19.327,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8919T"}},"id":{"Id":"Add_F8919T","EN":0},"TI":185,"AM":0,"x":61.279,"y":19.228,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8919S"}},"id":{"Id":"Add_F8919S","EN":0},"TI":187,"AM":0,"x":73.581,"y":19.172,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L54","EN":0},"TI":188,"AM":0,"x":83.063,"y":19.8,"w":12.375,"h":0.833,"TU":"Line 58. Additional tax on I R A s, other qualified retirement plans, etcetera. Attach Form 5329 if required. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F5329T"}},"id":{"Id":"Add_F5329T","EN":0},"TI":189,"AM":0,"x":34.498,"y":20.48,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F5329S"}},"id":{"Id":"Add_F5329S","EN":0},"TI":190,"AM":0,"x":51.152,"y":20.469,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L54W","EN":0},"TI":191,"AM":0,"x":72.767,"y":20.126,"w":6.223,"h":0.833,"TU":"Line 53. C. Form (Enter number)."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHHT"}},"id":{"Id":"Add_SchHT","EN":0},"TI":192,"AM":0,"x":59.055,"y":20.897,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHHS"}},"id":{"Id":"Add_SchHS","EN":0},"TI":193,"AM":0,"x":71.765,"y":20.93,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L56","EN":0},"TI":194,"AM":0,"x":83.063,"y":20.932,"w":12.375,"h":0.833,"TU":"Line 59a. Household employment taxes from Schedule H. Dollars"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F5405"}},"id":{"Id":"Add_F5405","EN":0},"TI":195,"AM":0,"x":61.699,"y":21.798,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTHCR","EN":0},"TI":196,"AM":0,"x":83.063,"y":21.845,"w":12.375,"h":0.833,"TU":"Line 59b. First-time homebuyer credit repayment. Attach Form 5405 if required.\tDollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L57T","EN":0},"TI":200,"AM":0,"x":68.655,"y":22.641,"w":9.337,"h":0.833,"TU":"Line 60. Instructions; Enter code(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L57W","EN":0},"TI":201,"AM":0,"x":82.987,"y":22.596,"w":12.375,"h":0.833,"TU":"Line 60. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L57","EN":0},"TI":202,"AM":1024,"x":82.987,"y":23.345,"w":12.375,"h":0.833,"TU":"Line 61. Add lines 55 through 60. This is your total tax. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L58","EN":0},"TI":203,"AM":0,"x":63.187,"y":24.096,"w":12.375,"h":0.833,"TU":"Line 62. Federal income tax withheld from Forms W-2 and 1099."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L59W","EN":0},"TI":204,"AM":0,"x":52.968,"y":24.828,"w":3.078,"h":0.833,"TU":"Line 44. C. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L59S","EN":0},"TI":205,"AM":0,"x":56.232,"y":24.864,"w":3.078,"h":0.833,"TU":"Line 44. C. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L59","EN":0},"TI":206,"AM":0,"x":63.187,"y":24.846,"w":12.375,"h":0.833,"TU":"Line 63. 2013 estimated tax payments and amount applied from 2012 return. Dollars."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L60C","EN":0},"TI":207,"AM":0,"x":38.889,"y":25.68,"w":6.223,"h":0.833,"TU":"Line 53. C. Form (Enter number).","MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L60","EN":0},"TI":208,"AM":0,"x":63.187,"y":25.595,"w":12.375,"h":0.833,"TU":"Line 64. a. Earned income credit (E I C). If you have a qualifying child, attach Schedule E I C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCOMBAT","EN":0},"TI":209,"AM":0,"x":43.387,"y":26.346,"w":12.375,"h":0.833,"TU":"Line 64. b. Nontaxable combat pay election. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8812"}},"id":{"Id":"Add_F8812","EN":0},"TI":210,"AM":0,"x":49.845,"y":27.016,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L62","EN":0},"TI":211,"AM":1024,"x":63.187,"y":27.096,"w":12.375,"h":0.833,"TU":"Line 65. Additional child tax credit. Attach schedule 8812. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8863"}},"id":{"Id":"Add_F8863","EN":0},"TI":212,"AM":0,"x":52.497,"y":27.873,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOPE","EN":0},"TI":213,"AM":1024,"x":63.187,"y":27.845,"w":12.375,"h":0.833,"TU":"Line 66. American opportunity credit from Form 8863, line 8. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L63","EN":0},"TI":214,"AM":0,"x":63.112,"y":29.307,"w":12.375,"h":0.833,"TU":"Line 68. Amount paid with request for extension to file."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L61","EN":0},"TI":215,"AM":0,"x":63.112,"y":30.057,"w":12.375,"h":0.833,"TU":"Line 69. Excess social security and tier 1 RRTA tax withheld. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4136"}},"id":{"Id":"A577","EN":0},"TI":216,"AM":0,"x":48.952,"y":30.831,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F4136AMT","EN":0},"TI":217,"AM":1024,"x":63.187,"y":30.846,"w":12.375,"h":0.833,"TU":"Line 70. Credit for federal tax on fuels. Attach Form 4136. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L64","EN":0},"TI":218,"AM":1024,"x":63.187,"y":31.596,"w":12.375,"h":0.833,"TU":"Line 71. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2439"}},"id":{"Id":"Add_F2439","EN":0},"TI":219,"AM":0,"x":26.888,"y":32.143,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8885T"}},"id":{"Id":"Add_F8885T","EN":0},"TI":221,"AM":0,"x":42.179,"y":32.066,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L64W","EN":0},"TI":224,"AM":0,"x":82.947,"y":31.498,"w":5.855,"h":0.912,"PL":{"V":[null,"IRC1341","NONE APPLY"],"D":[" ","IRC1341","NONE"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L64A","EN":0},"TI":225,"AM":0,"x":89.807,"y":31.573,"w":5.399,"h":0.833,"TU":"Line 44. C. Form (Enter number)."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8885S"}},"id":{"Id":"Add_F8885S","EN":0},"TI":226,"AM":0,"x":55.327,"y":32.187,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L65T","EN":0},"TI":227,"AM":0,"x":65.112,"y":32.744,"w":5.913,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L65W","EN":0},"TI":228,"AM":0,"x":71.676,"y":32.741,"w":4.412,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L65","EN":0},"TI":229,"AM":0,"x":82.838,"y":32.618,"w":12.375,"h":0.833,"TU":"Line 72. Add lines 62, 63, 64a, and 65 through 71. These are your total payments. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L66","EN":0},"TI":230,"AM":1024,"x":82.387,"y":33.532,"w":12.375,"h":0.833,"TU":"Refund. Line 73. If line 72 is more than line 61, subtract line 61 from line 72. This is the amount you overpaid. Dollars. "},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8888"}},"id":{"Id":"A552","EN":0},"TI":231,"AM":0,"x":69.624,"y":34.089,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L67A","EN":0},"TI":233,"AM":1024,"x":82.387,"y":34.282,"w":12.375,"h":0.833,"TU":"Line 74. a. Dollars."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ROUTNO","EN":0},"TI":234,"AM":0,"x":31.694,"y":35.033,"w":22.107,"h":0.833,"TU":"Line 74b. Routing number.","MV":"maxl:9"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCNO","EN":0},"TI":237,"AM":0,"x":31.591,"y":35.796,"w":42.154,"h":0.833,"TU":"Line 74d. Account number.","MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L68","EN":0},"TI":238,"AM":0,"x":62.587,"y":36.624,"w":12.375,"h":0.833,"TU":"Line 75. Amount of line 73 you want applied to your 2014 estimated tax. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L69","EN":0},"TI":239,"AM":1024,"x":82.387,"y":37.282,"w":12.375,"h":0.833,"TU":"Line 76. Amount you owe. Subtract line 72 from line 61. For details on how to pay, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L70","EN":0},"TI":240,"AM":0,"x":62.587,"y":38.032,"w":12.375,"h":0.833,"TU":"Line 77. Estimated tax penalty (see instructions). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESNAM","EN":0},"TI":243,"AM":0,"x":24.13,"y":39.901,"w":21.706,"h":1.023,"TU":"Designee's name."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DESPH","EN":0},"TI":244,"AM":0,"x":52.296,"y":39.939,"w":16.841,"h":1.038,"TU":"Designee's Phone number."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DESPIN","EN":0},"TI":245,"AM":0,"x":85.17,"y":40.261,"w":11.813,"h":0.833,"TU":"Designee's Personal Identification Number (PIN).","MV":"99999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":246,"AM":0,"x":55.142,"y":43.192,"w":19.152,"h":0.833,"TU":"Your occupation"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DTPHO","EN":0},"TI":247,"AM":0,"x":79.326,"y":43.149,"w":18.782,"h":0.896,"TU":"Daytime phone number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SOCC","EN":0},"TI":248,"AM":0,"x":55.602,"y":44.632,"w":18.924,"h":0.905,"TU":"Spouse’s occupation"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"IDTHEFT","EN":0},"TI":249,"AM":0,"x":85.877,"y":44.718,"w":12.21,"h":0.833,"TU":"If the IRS sent you an Identity Protection PIN, enter it here (see instructions).","MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIG","EN":0},"TI":250,"AM":1024,"x":35.507,"y":46.165,"w":25.446,"h":0.833,"V":"Not for use by paid preparers"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":251,"AM":1024,"x":26.636,"y":47.101,"w":26.446,"h":0.833,"V":"Self-prepared"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A1","EN":0},"TI":132,"AM":0,"x":26.448,"y":2.1,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A2","EN":0},"TI":133,"AM":0,"x":57.385,"y":2.1,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A3","EN":0},"TI":135,"AM":0,"x":26.448,"y":2.85,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A4","EN":0},"TI":136,"AM":0,"x":57.385,"y":2.85,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35BB","EN":0},"TI":138,"AM":0,"x":77.185,"y":3.6,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L40BA","EN":0},"TI":143,"AM":0,"x":32.247,"y":7.811,"w":1.555,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L40BB","EN":0},"TI":146,"AM":0,"x":32.139,"y":8.413,"w":1.465,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX962","EN":0},"TI":149,"AM":0,"x":32.099,"y":9.18,"w":1.735,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L49BA","EN":0},"TI":168,"AM":0,"x":34.65,"y":15.75,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L49BC","EN":0},"TI":170,"AM":0,"x":43.65,"y":15.832,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L49BD","EN":0},"TI":172,"AM":0,"x":51.819,"y":15.771,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F4137BX","EN":0},"TI":184,"AM":0,"x":57.146,"y":18.787,"w":1.561,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8919BX","EN":0},"TI":186,"AM":0,"x":67.065,"y":18.765,"w":1.561,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX8959","EN":0},"TI":197,"AM":1024,"x":29.936,"y":22.578,"w":1.842,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX8960","EN":0},"TI":198,"AM":1024,"x":39.954,"y":22.578,"w":1.745,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXOTHTAX","EN":0},"TI":199,"AM":0,"x":49.972,"y":22.613,"w":1.649,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L64BA","EN":0},"TI":220,"AM":0,"x":31.141,"y":31.629,"w":1.649,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX8885","EN":0},"TI":222,"AM":1024,"x":46.119,"y":31.685,"w":1.649,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L64FM","EN":0},"TI":223,"AM":1024,"x":53.339,"y":31.561,"w":2.014,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8888","EN":0},"TI":232,"AM":1024,"x":75.306,"y":34.282,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCC","EN":0},"TI":235,"AM":0,"x":61.652,"y":35.115,"w":1.423,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCS","EN":0},"TI":236,"AM":0,"x":70.336,"y":35.033,"w":1.348,"h":0.833,"checked":false}],"id":{"Id":"ACCRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PPDY","EN":0},"TI":241,"AM":0,"x":74.005,"y":38.818,"w":1.423,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PPDN","EN":0},"TI":242,"AM":0,"x":92.647,"y":38.818,"w":1.423,"h":0.833,"checked":false}],"id":{"Id":"PPDRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.7","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"U.S. Individual Income Tax Return","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Adobe Acrobat Pro 10.1.8","CreationDate":"D:20131203133943-08'00'","ModDate":"D:20140131180702-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.188,"y":3.094,"w":1.5,"l":0.931,"oc":"#221f1f"},{"x":3.087,"y":3.094,"w":1.5,"l":3.181,"oc":"#221f1f"},{"x":22.438,"y":3.094,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.938,"y":3.094,"w":1.5,"l":9.031,"oc":"#221f1f"},{"x":6.237,"y":3.094,"w":1.5,"l":12.631,"oc":"#221f1f"},{"x":18.838,"y":3.094,"w":1.5,"l":3.609,"oc":"#221f1f"},{"x":2.188,"y":3.094,"w":1.5,"l":17.581,"oc":"#221f1f"},{"x":19.738,"y":3.094,"w":1.5,"l":5.431,"oc":"#221f1f"},{"x":25.138,"y":3.094,"w":1.5,"l":4.081,"oc":"#221f1f"},{"x":29.188,"y":3.094,"w":1.5,"l":6.781,"oc":"#221f1f"},{"x":29.188,"y":3.844,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":2.188,"y":3.844,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":2.188,"y":5.344,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":13.453,"y":5.344,"w":0.75,"l":15.75,"oc":"#221f1f"},{"x":13.453,"y":3.844,"w":0.75,"l":15.75,"oc":"#221f1f"},{"x":2.188,"y":5.344,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":2.188,"y":6.844,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":13.453,"y":6.844,"w":0.75,"l":15.75,"oc":"#221f1f"},{"x":13.453,"y":5.344,"w":0.75,"l":15.75,"oc":"#221f1f"},{"x":29.188,"y":5.344,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":29.188,"y":6.844,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":29.188,"y":8.344,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.088,"y":8.344,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":2.188,"y":6.844,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":2.188,"y":8.344,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":26.053,"y":8.344,"w":0.75,"l":3.15,"oc":"#221f1f"},{"x":26.053,"y":6.844,"w":0.75,"l":3.15,"oc":"#221f1f"},{"x":2.188,"y":8.344,"w":0.75,"l":27.031,"oc":"#221f1f"},{"x":2.188,"y":9.844,"w":0.75,"l":27.031,"oc":"#221f1f"},{"x":2.188,"y":9.844,"w":0.75,"l":13.981,"oc":"#221f1f"},{"x":2.188,"y":11.344,"w":0.75,"l":13.981,"oc":"#221f1f"},{"x":16.153,"y":11.344,"w":0.75,"l":9,"oc":"#221f1f"},{"x":16.153,"y":9.844,"w":0.75,"l":9,"oc":"#221f1f"},{"x":25.153,"y":11.344,"w":0.75,"l":4.05,"oc":"#221f1f"},{"x":25.153,"y":9.844,"w":0.75,"l":4.05,"oc":"#221f1f"},{"x":29.188,"y":8.344,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":29.188,"y":11.344,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":27.838,"y":13.594,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":2.203,"y":14.344,"w":1.2,"l":33.75,"oc":"#181516"},{"x":6.688,"y":15.844,"w":0.75,"l":8.142,"oc":"#221f1f"},{"x":6.688,"y":17.344,"w":0.75,"l":8.142,"oc":"#221f1f"},{"x":14.799,"y":15.844,"w":0.75,"l":5.292,"oc":"#221f1f"},{"x":14.799,"y":17.344,"w":0.75,"l":5.292,"oc":"#221f1f"},{"x":20.059,"y":15.844,"w":0.75,"l":4.064,"oc":"#221f1f"},{"x":20.059,"y":17.344,"w":0.75,"l":4.064,"oc":"#221f1f"},{"x":24.093,"y":15.844,"w":0.75,"l":5.423,"oc":"#221f1f"},{"x":24.093,"y":17.344,"w":0.75,"l":5.423,"oc":"#221f1f"},{"x":6.688,"y":17.344,"w":0.75,"l":8.142,"oc":"#221f1f"},{"x":6.688,"y":18.066,"w":0.75,"l":8.142,"oc":"#221f1f"},{"x":14.799,"y":17.344,"w":0.75,"l":5.292,"oc":"#221f1f"},{"x":14.799,"y":18.066,"w":0.75,"l":5.292,"oc":"#221f1f"},{"x":20.059,"y":17.344,"w":0.75,"l":4.064,"oc":"#221f1f"},{"x":20.059,"y":18.066,"w":0.75,"l":4.064,"oc":"#221f1f"},{"x":24.093,"y":17.344,"w":0.75,"l":5.423,"oc":"#221f1f"},{"x":24.093,"y":18.066,"w":0.75,"l":5.423,"oc":"#221f1f"},{"x":6.688,"y":18.066,"w":0.75,"l":8.142,"oc":"#221f1f"},{"x":6.688,"y":18.816,"w":0.75,"l":8.142,"oc":"#221f1f"},{"x":14.799,"y":18.066,"w":0.75,"l":5.292,"oc":"#221f1f"},{"x":14.799,"y":18.816,"w":0.75,"l":5.292,"oc":"#221f1f"},{"x":20.059,"y":18.066,"w":0.75,"l":4.064,"oc":"#221f1f"},{"x":20.059,"y":18.816,"w":0.75,"l":4.064,"oc":"#221f1f"},{"x":24.093,"y":18.066,"w":0.75,"l":5.423,"oc":"#221f1f"},{"x":24.093,"y":18.816,"w":0.75,"l":5.423,"oc":"#221f1f"},{"x":6.688,"y":18.816,"w":0.75,"l":8.142,"oc":"#221f1f"},{"x":6.688,"y":19.566,"w":0.75,"l":8.142,"oc":"#221f1f"},{"x":14.799,"y":18.816,"w":0.75,"l":5.292,"oc":"#221f1f"},{"x":14.799,"y":19.566,"w":0.75,"l":5.292,"oc":"#221f1f"},{"x":20.059,"y":18.816,"w":0.75,"l":4.064,"oc":"#221f1f"},{"x":20.059,"y":19.566,"w":0.75,"l":4.064,"oc":"#221f1f"},{"x":24.093,"y":18.816,"w":0.75,"l":5.423,"oc":"#221f1f"},{"x":24.093,"y":19.566,"w":0.75,"l":5.423,"oc":"#221f1f"},{"x":6.688,"y":19.566,"w":0.75,"l":8.142,"oc":"#221f1f"},{"x":6.688,"y":20.316,"w":0.75,"l":8.142,"oc":"#221f1f"},{"x":14.799,"y":19.566,"w":0.75,"l":5.292,"oc":"#221f1f"},{"x":14.799,"y":20.316,"w":0.75,"l":5.292,"oc":"#221f1f"},{"x":20.059,"y":19.566,"w":0.75,"l":4.064,"oc":"#221f1f"},{"x":20.059,"y":20.316,"w":0.75,"l":4.064,"oc":"#221f1f"},{"x":24.093,"y":19.566,"w":0.75,"l":5.423,"oc":"#221f1f"},{"x":24.093,"y":20.316,"w":0.75,"l":5.423,"oc":"#221f1f"},{"x":34.588,"y":15.469,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.588,"y":16.844,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.588,"y":18.594,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.588,"y":19.594,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.65,"y":21.563,"w":2.25,"l":1.35,"oc":"#221f1f"},{"x":34.65,"y":20.438,"w":2.25,"l":1.35,"oc":"#221f1f"},{"x":2.25,"y":21.75,"w":1.2,"l":33.75,"oc":"#221f1f"},{"x":28.784,"y":22.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":21.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":22.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":21.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":22.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":23.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":22.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":23.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":22.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":23.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.584,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":24,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.434,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":23.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":23.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":23.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":24.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":24.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":24.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.584,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":25.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.434,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":24.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":24.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":24.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":26.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":27,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":26.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":27,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":27,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":27.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":27,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":27.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":27,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":27.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":27.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":28.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":27.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":29.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":28.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":29.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":29.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.934,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":15.313,"y":30,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":19.784,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":29.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":30,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":29.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.934,"y":30.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":15.313,"y":30,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":15.313,"y":30.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":19.8,"y":30.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":19.8,"y":30,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":28.784,"y":30.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":30,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":30.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":30.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":30.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":31.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":30.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":32.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":31.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":32.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":32.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":33,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":32.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":33,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":32.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":33,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.934,"y":33.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":15.284,"y":33.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":19.784,"y":33.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":33.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":33,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":33,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":17.084,"y":34.5,"w":0.75,"l":11.281,"oc":"#221f1f","dsh":1},{"x":28.784,"y":34.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":33.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":34.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":33.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":34.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":34.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":34.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.25,"y":35.25,"w":1.2,"l":33.75,"oc":"#181516"},{"x":28.784,"y":35.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.584,"y":36,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":36,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":35.25,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":36,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":35.25,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":30.134,"y":35.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":35.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":36,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.434,"y":36,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.584,"y":37.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":37.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.434,"y":37.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.584,"y":38.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":38.25,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":37.5,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":38.25,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":37.5,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":39,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":39,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":38.25,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":39,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":38.25,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":39.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":39.75,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":39,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":39.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":39,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":40.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":40.5,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":39.75,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":40.5,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":39.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":41.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":41.25,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":40.5,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":41.25,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":40.5,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":42,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":42,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":41.25,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":42,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":41.25,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":16.634,"y":42.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.584,"y":42.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":42.75,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":42,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":42.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":42,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":43.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":43.5,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":42.75,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":43.5,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":42.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":44.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":44.25,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":43.5,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":44.25,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":43.5,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":45,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":45,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":44.25,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":45,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":44.25,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":45.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":45.75,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":45,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":45.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":45,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":28.784,"y":46.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":46.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":46.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":46.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":46.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":47.25,"w":1.5,"l":22.058,"oc":"#221f1f"},{"x":24.284,"y":47.25,"w":1.5,"l":7.231,"oc":"#221f1f"},{"x":31.484,"y":47.25,"w":1.5,"l":4.531,"oc":"#221f1f"}],"VLines":[{"x":26.953,"y":1.578,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.431,"y":1.578,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":18.853,"y":1.578,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":29.203,"y":3.063,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":13.453,"y":3.828,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.203,"y":3.844,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":13.453,"y":3.844,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":29.203,"y":3.813,"w":0.75,"l":1.563,"oc":"#221f1f"},{"x":31.315,"y":4.594,"w":0.75,"l":0.625,"oc":"#221f1f","dsh":1},{"x":32.665,"y":4.594,"w":0.75,"l":0.625,"oc":"#221f1f","dsh":1},{"x":13.453,"y":5.328,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.203,"y":5.344,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":13.453,"y":5.344,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":29.203,"y":5.328,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.315,"y":6.094,"w":0.75,"l":0.625,"oc":"#221f1f","dsh":1},{"x":32.665,"y":6.094,"w":0.75,"l":0.625,"oc":"#221f1f","dsh":1},{"x":26.053,"y":6.828,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.203,"y":6.844,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":26.053,"y":6.844,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":29.203,"y":8.328,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.153,"y":9.828,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.153,"y":9.844,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":16.153,"y":9.844,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":29.203,"y":9.844,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":25.153,"y":9.844,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":14.814,"y":15.828,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":20.075,"y":15.828,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.108,"y":15.828,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.814,"y":17.328,"w":0.75,"l":0.754,"oc":"#221f1f"},{"x":20.075,"y":17.328,"w":0.75,"l":0.754,"oc":"#221f1f"},{"x":24.108,"y":17.328,"w":0.75,"l":0.754,"oc":"#221f1f"},{"x":14.814,"y":18.05,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":20.075,"y":18.05,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.108,"y":18.05,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.814,"y":18.8,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":20.075,"y":18.8,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.108,"y":18.8,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.814,"y":19.55,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":20.075,"y":19.55,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.108,"y":19.55,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.653,"y":17.391,"w":0.75,"l":0.656,"oc":"#221f1f","dsh":1},{"x":16.465,"y":17.391,"w":0.75,"l":0.656,"oc":"#221f1f","dsh":1},{"x":17.653,"y":18.141,"w":0.75,"l":0.656,"oc":"#221f1f","dsh":1},{"x":16.465,"y":18.141,"w":0.75,"l":0.656,"oc":"#221f1f","dsh":1},{"x":17.653,"y":18.891,"w":0.75,"l":0.656,"oc":"#221f1f","dsh":1},{"x":16.465,"y":18.891,"w":0.75,"l":0.656,"oc":"#221f1f","dsh":1},{"x":17.653,"y":19.641,"w":0.75,"l":0.656,"oc":"#221f1f","dsh":1},{"x":16.465,"y":19.641,"w":0.75,"l":0.656,"oc":"#221f1f","dsh":1},{"x":36,"y":20.438,"w":2.25,"l":1.125,"oc":"#221f1f"},{"x":34.65,"y":20.438,"w":2.25,"l":1.125,"oc":"#221f1f"},{"x":28.8,"y":21.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":21.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":21.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.6,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":23.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":23.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":23.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.6,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":26.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":26.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":26.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":26.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":26.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":26.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":27.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":27.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":27.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":28.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":28.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":28.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.95,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":15.329,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.8,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.95,"y":29.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":15.329,"y":29.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":30,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":19.8,"y":30,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":29.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":29.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":29.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":30.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":30.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":30.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":31.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":31.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":31.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.95,"y":32.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":15.3,"y":32.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":32.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.8,"y":32.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":32.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":32.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":33.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":33.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":33.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":34.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":34.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":34.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":35.234,"w":0.75,"l":10.531,"oc":"#221f1f"},{"x":28.8,"y":35.234,"w":0.75,"l":10.531,"oc":"#221f1f"},{"x":21.6,"y":35.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":35.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":35.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":35.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":35.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":30.15,"y":35.234,"w":0.75,"l":10.531,"oc":"#221f1f"},{"x":34.65,"y":35.234,"w":0.75,"l":10.531,"oc":"#221f1f"},{"x":21.6,"y":35.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":35.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":35.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":35.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":35.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.6,"y":36.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":36.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":36.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":36.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":36.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.6,"y":37.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":37.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":37.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":37.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":37.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":38.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":38.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":38.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":38.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":38.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":38.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":39,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":39,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":39,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":39,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":39.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":39.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":39.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":39.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":39.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":40.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":40.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":40.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":40.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":40.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":41.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":41.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":41.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":41.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":41.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":19.063,"y":42,"w":0.75,"l":0.625,"oc":"#221f1f","dsh":1},{"x":18.125,"y":42,"w":0.75,"l":0.625,"oc":"#221f1f","dsh":1},{"x":21.6,"y":41.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":42,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":42,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":42,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":42,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":42.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":42.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":42.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":42.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":42.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":43.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":43.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":43.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":43.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":43.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":44.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":44.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":44.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":44.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":44.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":44.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":45,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":45,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":45,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":45,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":45.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":45.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":45.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":46.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":46.476,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":46.476,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":20.991,"y":8.328,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":23.553,"y":8.328,"w":0.75,"l":1.531,"oc":"#221f1f"}],"Fills":[{"x":6.396,"y":1.567,"w":30.057,"h":45.631,"oc":"#e3f4f4"},{"x":2.203,"y":3.094,"w":17.55,"h":0.75,"clr":1},{"x":19.753,"y":3.094,"w":5.4,"h":0.75,"clr":1},{"x":25.153,"y":3.094,"w":4.05,"h":0.75,"clr":1},{"x":29.203,"y":3.094,"w":6.75,"h":0.75,"clr":1},{"x":2.203,"y":3.844,"w":11.25,"h":1.5,"clr":1},{"x":13.453,"y":3.844,"w":15.75,"h":1.5,"clr":1},{"x":29.203,"y":3.844,"w":6.75,"h":1.5,"clr":1},{"x":2.203,"y":5.344,"w":11.25,"h":1.5,"clr":1},{"x":13.453,"y":5.344,"w":15.75,"h":1.5,"clr":1},{"x":29.203,"y":5.344,"w":6.75,"h":1.5,"clr":1},{"x":2.203,"y":6.844,"w":23.85,"h":1.5,"clr":1},{"x":26.053,"y":6.844,"w":3.15,"h":1.5,"clr":1},{"x":2.203,"y":8.344,"w":27,"h":1.5,"clr":1},{"x":2.203,"y":9.844,"w":13.95,"h":1.5,"clr":1},{"x":16.153,"y":9.844,"w":9,"h":1.5,"clr":1},{"x":25.153,"y":9.844,"w":4.05,"h":1.5,"clr":1},{"x":13.903,"y":13.594,"w":6.75,"h":0.75,"clr":1},{"x":27.853,"y":12.844,"w":8.1,"h":0.75,"clr":1},{"x":6.703,"y":17.344,"w":8.111,"h":0.722,"clr":1},{"x":14.814,"y":17.344,"w":5.261,"h":0.722,"clr":1},{"x":20.075,"y":17.344,"w":4.033,"h":0.722,"clr":1},{"x":24.108,"y":17.344,"w":5.392,"h":0.722,"clr":1},{"x":6.703,"y":18.066,"w":8.111,"h":0.75,"clr":1},{"x":14.814,"y":18.066,"w":5.261,"h":0.75,"clr":1},{"x":20.075,"y":18.066,"w":4.033,"h":0.75,"clr":1},{"x":24.108,"y":18.066,"w":5.392,"h":0.75,"clr":1},{"x":6.703,"y":18.816,"w":8.111,"h":0.75,"clr":1},{"x":14.814,"y":18.816,"w":5.261,"h":0.75,"clr":1},{"x":20.075,"y":18.816,"w":4.033,"h":0.75,"clr":1},{"x":24.108,"y":18.816,"w":5.392,"h":0.75,"clr":1},{"x":6.703,"y":19.566,"w":8.111,"h":0.75,"clr":1},{"x":14.814,"y":19.566,"w":5.261,"h":0.75,"clr":1},{"x":20.075,"y":19.566,"w":4.033,"h":0.75,"clr":1},{"x":24.108,"y":19.566,"w":5.392,"h":0.75,"clr":1},{"x":30.15,"y":21.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":22.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":23.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":23.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":24,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":24.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":24.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":25.5,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":26.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":27,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":27.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":28.5,"w":4.5,"h":0.75,"clr":1},{"x":15.329,"y":29.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":29.25,"w":4.5,"h":0.75,"clr":1},{"x":15.329,"y":30,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":30,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":30.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":31.5,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":32.25,"w":4.5,"h":0.75,"clr":1},{"x":15.3,"y":33,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":33,"w":4.5,"h":0.75,"clr":1},{"x":17.1,"y":33.813,"w":11.25,"h":0.687,"clr":1},{"x":30.15,"y":33.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":34.5,"w":4.5,"h":0.75,"clr":1},{"x":28.8,"y":35.25,"w":1.35,"h":10.5,"oc":"#bdc0c2"},{"x":22.95,"y":35.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":35.25,"w":4.5,"h":10.5,"clr":1},{"x":34.65,"y":35.25,"w":1.35,"h":10.5,"clr":1},{"x":22.95,"y":36,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":36.75,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":37.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":38.25,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":39,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":39.75,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":40.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":41.25,"w":4.5,"h":0.75,"clr":1},{"x":16.65,"y":42,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":42,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":42.75,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":43.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":44.25,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":45,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":45.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":46.5,"w":4.5,"h":0.75,"clr":1}],"Texts":[{"x":6.266,"y":20.219,"w":99.616,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Enter additional dependents","S":-1,"TS":[0,11,0,0]}]},{"x":2.497,"y":2.104,"w":2.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0],"RA":90}]},{"x":2.853,"y":1.915,"w":2.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1040 ","S":-1,"TS":[0,28,1,0]}]},{"x":6.503,"y":1.3370000000000002,"w":24.633,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury—Internal Revenue Service ","S":51,"TS":[0,9,0,0]}]},{"x":22.423,"y":2.094,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":17.122,"y":1.3439999999999999,"w":1.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(99)","S":2,"TS":[0,10,0,0]}]},{"x":26.939,"y":2.052,"w":23.021,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"IRS Use Only—Do not write or staple in this space. ","S":51,"TS":[0,9,0,0]}]},{"x":6.503,"y":2.108,"w":16.449,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"U.S. Individual Income Tax Return ","S":-1,"TS":[0,16,1,0]}]},{"x":18.767,"y":1.9860000000000002,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":19.799,"y":2.018,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":2.203,"y":2.856,"w":27.915,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"For the year Jan. 1–Dec. 31, 2013, or other tax year beginning ","S":-1,"TS":[0,9.16,0,0]}]},{"x":19.503,"y":2.856,"w":6.652,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":", 2013, ending ","S":-1,"TS":[0,9.16,0,0]}]},{"x":24.903,"y":2.856,"w":1.946,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":", 20 ","S":-1,"TS":[0,9.3,0,0]}]},{"x":29.203,"y":2.83,"w":11.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"See separate instructions.","S":-1,"TS":[0,11,0,0]}]},{"x":2.203,"y":3.513,"w":11.632,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your first name and initial ","S":2,"TS":[0,10,0,0]}]},{"x":13.453,"y":3.511,"w":4.947,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Last name ","S":2,"TS":[0,10,0,0]}]},{"x":29.203,"y":3.5140000000000002,"w":13.727,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Your social security number ","S":8,"TS":[0,10,1,0]}]},{"x":2.203,"y":5.001,"w":20.56,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If a joint return, spouse’s first name and initial ","S":2,"TS":[0,10,0,0]}]},{"x":13.453,"y":5,"w":4.947,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Last name ","S":2,"TS":[0,10,0,0]}]},{"x":29.203,"y":5.003,"w":15.855,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Spouse's social security number ","S":-1,"TS":[0,9.3,1,0]}]},{"x":29.091,"y":6.879,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c","S":-1,"TS":[0,13,0,0]}]},{"x":30.003,"y":6.679,"w":12.965,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Make sure the SSN(s) above ","S":2,"TS":[0,10,0,0]}]},{"x":30.034,"y":7.204,"w":11.687,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and on line 6c are correct.","S":2,"TS":[0,10,0,0]}]},{"x":2.203,"y":6.503,"w":34.157,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Home address (number and street). If you have a P.O. box, see instructions. ","S":2,"TS":[0,10,0,0]}]},{"x":26.733,"y":6.5,"w":3.798,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Apt. no. ","S":2,"TS":[0,10,0,0]}]},{"x":2.209,"y":7.978999999999999,"w":320.985,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"City, town or post office. If you have a foreign address, also complete spaces below (see instructions). ","S":-1,"TS":[0,9.3,0,0]}]},{"x":2.203,"y":9.529,"w":9.78,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Foreign country name","S":2,"TS":[0,10,0,0]}]},{"x":16.153,"y":9.533,"w":13.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Foreign province/state/county","S":2,"TS":[0,10,0,0]}]},{"x":25.153,"y":9.529,"w":9.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Foreign postal code ","S":-1,"TS":[0,9.3,0,0]}]},{"x":29.512,"y":8.066,"w":14.949,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Presidential Election Campaign","S":-1,"TS":[0,9.3,1,0]}]},{"x":29.078,"y":8.752,"w":18.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check here if you, or your spouse if filing ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":29.078,"y":9.252,"w":19.69,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"jointly, want $3 to go to this fund. Checking ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":29.078,"y":9.752,"w":17.814,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a box below will not change your tax or ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":29.078,"y":10.252,"w":3.427,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"refund. ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":32.492,"y":10.356,"w":2.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You ","S":-1,"TS":[0,9.3,1,0]}]},{"x":34.24,"y":10.356,"w":3.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.09,1,0]}]},{"x":1.9529999999999998,"y":11.483,"w":6.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Filing Status ","S":10,"TS":[0,14,1,0]}]},{"x":1.9529999999999998,"y":12.655,"w":7.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check only one ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":13.255,"w":2.241,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"box. ","S":-1,"TS":[0,11,0,0]}]},{"x":7.075,"y":11.2,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.703,"y":11.201,"w":3.037,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Single ","S":-1,"TS":[0,11,0,0]}]},{"x":7.075,"y":11.951,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.703,"y":11.951,"w":22.281,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Married filing jointly (even if only one had income) ","S":-1,"TS":[0,11,0,0]}]},{"x":7.075,"y":12.701,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.703,"y":12.701,"w":23.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Married filing separately. Enter spouse’s SSN above ","S":-1,"TS":[0,11,0,0]}]},{"x":8.703,"y":13.326,"w":8.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and full name here. ","S":-1,"TS":[0,11,0,0]}]},{"x":13.112,"y":13.263,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":21.475,"y":11.201,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":-1,"TS":[0,11,1,0]}]},{"x":23.103,"y":11.222,"w":28.706,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Head of household (with qualifying person). (See instructions.) If ","S":-1,"TS":[0,9.8,0,0]}]},{"x":23.103,"y":11.91,"w":29.342,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the qualifying person is a child but not your dependent, enter this ","S":-1,"TS":[0,9.8,0,0]}]},{"x":23.103,"y":12.597,"w":8.744,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"child’s name here. ","S":-1,"TS":[0,9.8,0,0]}]},{"x":26.819,"y":12.535,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":21.475,"y":13.326,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":-1,"TS":[0,11,1,0]}]},{"x":23.103,"y":13.335,"w":18.926,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Qualifying widow(er) with dependent child ","S":-1,"TS":[0,10.5,0,0]}]},{"x":1.9529999999999998,"y":14.477,"w":5.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Exemptions ","S":10,"TS":[0,14,1,0]}]},{"x":7.075,"y":14.201,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6a","S":-1,"TS":[0,11,1,0]}]},{"x":9.153,"y":14.201,"w":4.557,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yourself. ","S":-1,"TS":[0,11,1,0]}]},{"x":11.225,"y":14.201,"w":18.932,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If someone can claim you as a dependent,","S":-1,"TS":[0,11,0,0]}]},{"x":19.753,"y":14.201,"w":3.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" do not ","S":-1,"TS":[0,11,1,0]}]},{"x":21.497,"y":14.201,"w":6.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"check box 6a ","S":-1,"TS":[0,11,0,0]}]},{"x":25.953,"y":14.201,"w":7.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"x":7.353,"y":14.951,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":9.153,"y":14.951,"w":4.168,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Spouse ","S":-1,"TS":[0,11,1,0]}]},{"x":29.403,"y":14.658,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[2,15,0,0]}]},{"x":7.353,"y":15.701,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,1,0]}]},{"x":8.253,"y":15.687999999999999,"w":6.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Dependents: ","S":-1,"TS":[0,11,1,0]}]},{"x":6.453,"y":16.406,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(1) ","S":8,"TS":[0,10,1,0]}]},{"x":7.027,"y":16.406,"w":4.403,"oc":"#221f1f","sw":0.3125,"A":"left","R":[{"T":" First name ","S":2,"TS":[0,10,0,0]}]},{"x":11.473,"y":16.406,"w":4.107,"oc":"#221f1f","sw":0.3125,"A":"left","R":[{"T":"Last name ","S":2,"TS":[0,10,0,0]}]},{"x":15.890999999999998,"y":15.675,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(2) ","S":8,"TS":[0,10,1,0]}]},{"x":16.465,"y":15.675,"w":4.646,"oc":"#221f1f","sw":0.3125,"A":"left","R":[{"T":"Dependent’s","S":2,"TS":[0,10,0,0]}]},{"x":18.545,"y":16.331,"w":0.24,"oc":"#221f1f","sw":0.3125,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":15.365,"y":16.2,"w":8.605,"oc":"#221f1f","sw":0.3125,"A":"left","R":[{"T":"social security number ","S":2,"TS":[0,10,0,0]}]},{"x":20.538,"y":15.675,"w":1.222,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(3)","S":8,"TS":[0,10,1,0]}]},{"x":21.007,"y":15.675,"w":5.126,"oc":"#221f1f","sw":0.3125,"A":"left","R":[{"T":" Dependent’s ","S":2,"TS":[0,10,0,0]}]},{"x":23.297,"y":16.331,"w":0.24,"oc":"#221f1f","sw":0.3125,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":20.304,"y":16.2,"w":7.031,"oc":"#221f1f","sw":0.3125,"A":"left","R":[{"T":"relationship to you ","S":2,"TS":[0,10,0,0]}]},{"x":24.361,"y":15.544,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(4) ","S":8,"TS":[0,10,1,0]}]},{"x":25.04,"y":15.544,"w":0.755,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"\u0014","S":2,"TS":[0,10,0,0]}]},{"x":25.417,"y":16.2,"w":0.24,"oc":"#221f1f","sw":0.3125,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":25.475,"y":15.544,"w":7.863,"oc":"#221f1f","sw":0.3125,"A":"left","R":[{"T":"if child under age 17 ","S":2,"TS":[0,10,0,0]}]},{"x":24.29,"y":15.981000000000002,"w":10.733,"oc":"#221f1f","sw":0.3125,"A":"left","R":[{"T":"qualifying for child tax credit ","S":2,"TS":[0,10,0,0]}]},{"x":25.204,"y":16.419,"w":6.552,"oc":"#221f1f","sw":0.3125,"A":"left","R":[{"T":"(see instructions) ","S":2,"TS":[0,10,0,0]}]},{"x":1.9529999999999998,"y":17.667,"w":7.965,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If more than four ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":18.267,"w":8.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"dependents, see ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":18.867,"w":7.428,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions and ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":19.488,"w":5.483,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"check here ","S":-1,"TS":[0,11,0,0]}]},{"x":4.695,"y":19.394,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":7.4,"y":20.794,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":20.794,"w":16.616,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total number of exemptions claimed ","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":20.794,"w":25.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"x":30.303,"y":14.075,"w":7.559,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Boxes checked ","S":8,"TS":[0,10,1,0]}]},{"x":30.303,"y":14.512,"w":6.113,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"on 6a and 6b","S":8,"TS":[0,10,1,0]}]},{"x":30.303,"y":15.106,"w":7.557,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No. of children ","S":8,"TS":[0,10,1,0]}]},{"x":30.303,"y":15.544,"w":5.501,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"on 6c who: ","S":8,"TS":[0,10,1,0]}]},{"x":30.303,"y":15.981000000000002,"w":0.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• ","S":2,"TS":[0,10,0,0]}]},{"x":30.644,"y":15.981000000000002,"w":6.891,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"lived with you ","S":8,"TS":[0,10,1,0]}]},{"x":30.303,"y":16.487,"w":0.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• ","S":-1,"TS":[0,9.5,0,0]}]},{"x":30.619,"y":16.487,"w":7.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"did not live with ","S":-1,"TS":[0,9.5,1,0]}]},{"x":30.303,"y":16.893,"w":9.169,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"you due to divorce ","S":-1,"TS":[0,9.5,1,0]}]},{"x":30.303,"y":17.299,"w":6.335,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"or separation","S":-1,"TS":[0,9.5,1,0]}]},{"x":32.883,"y":17.299,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.5,0,0]}]},{"x":30.303,"y":17.706,"w":8.335,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(see instructions)","S":-1,"TS":[0,9.5,1,0]}]},{"x":30.303,"y":18.403,"w":8.891,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Dependents on 6c ","S":-1,"TS":[0,9.5,1,0]}]},{"x":30.303,"y":18.809,"w":8.891,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"not entered above ","S":-1,"TS":[0,9.5,1,0]}]},{"x":30.35,"y":20.337,"w":8.501,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Add numbers on ","S":8,"TS":[0,10,1,0]}]},{"x":30.35,"y":20.809,"w":6.003,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"lines above ","S":8,"TS":[0,10,1,0]}]},{"x":32.951,"y":20.746,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":2,"y":21.91,"w":3.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Income ","S":-1,"TS":[0,16,1,0]}]},{"x":2,"y":23.606,"w":7.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach Form(s) ","S":-1,"TS":[0,10.8,1,0]}]},{"x":2,"y":24.191,"w":7.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"W-2 here. Also ","S":-1,"TS":[0,10.8,1,0]}]},{"x":2,"y":24.776,"w":6.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"attach Forms ","S":-1,"TS":[0,10.8,1,0]}]},{"x":2,"y":25.361,"w":5.501,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"W-2G and ","S":-1,"TS":[0,10.8,1,0]}]},{"x":2,"y":25.946,"w":6.447,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1099-R if tax ","S":-1,"TS":[0,10.8,1,0]}]},{"x":2,"y":26.531,"w":6.78,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"was withheld. ","S":-1,"TS":[0,10.8,1,0]}]},{"x":2,"y":28.112,"w":6.428,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you did not ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":28.712,"w":5.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"get a W-2, ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":29.312,"w":7.594,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"see instructions. ","S":-1,"TS":[0,11,0,0]}]},{"x":7.122,"y":21.607,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":21.607,"w":20.67,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Wages, salaries, tips, etc. Attach Form(s) W-2 ","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":21.607,"w":18,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11,0,0]}]},{"x":29.086,"y":21.607,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":-1,"TS":[0,11,1,0]}]},{"x":7.122,"y":22.357,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8a","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":22.357,"w":4.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Taxable ","S":-1,"TS":[0,11,1,0]}]},{"x":10.184,"y":22.357,"w":17.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"interest. Attach Schedule B if required ","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":22.357,"w":18,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11,0,0]}]},{"x":28.943,"y":22.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8a ","S":-1,"TS":[0,11,1,0]}]},{"x":11.03,"y":23.107,"w":3.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"interest. ","S":-1,"TS":[0,11,0,0]}]},{"x":12.778,"y":23.107,"w":3.444,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not ","S":-1,"TS":[0,11,1,0]}]},{"x":14.448,"y":23.107,"w":8.095,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"include on line 8a ","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":23.107,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":23.107,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":23.107,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.733,"y":23.107,"w":1.445,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8b ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":23.857,"w":22.375,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Ordinary dividends. Attach Schedule B if required ","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":23.857,"w":16.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11,0,0]}]},{"x":28.943,"y":23.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9a ","S":-1,"TS":[0,11,1,0]}]},{"x":7.4,"y":24.607,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":24.607,"w":8.817,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Qualified dividends ","S":-1,"TS":[0,11,0,0]}]},{"x":13.25,"y":24.607,"w":16.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11,0,0]}]},{"x":21.733,"y":24.607,"w":1.445,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9b ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":25.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":25.357,"w":30.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable refunds, credits, or offsets of state and local income taxes ","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":25.357,"w":9,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":25.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":26.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":26.107,"w":7.927,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Alimony received ","S":-1,"TS":[0,11,0,0]}]},{"x":12.5,"y":26.107,"w":31.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":26.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":26.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":26.857,"w":24.392,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business income or (loss). Attach Schedule C or C-EZ ","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":26.857,"w":15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":26.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":27.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":27.607,"w":35.635,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Capital gain or (loss). Attach Schedule D if required. If not required, check here ","S":-1,"TS":[0,11,0,0]}]},{"x":26.117,"y":27.513,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":28.947,"y":27.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":28.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":28.357,"w":18.838,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other gains or (losses). Attach Form 4797 ","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":28.357,"w":21,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":28.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":29.107,"w":7.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"IRA distributions ","S":-1,"TS":[0,11,0,0]}]},{"x":12.5,"y":29.107,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":13.954,"y":29.107,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15a ","S":-1,"TS":[0,11,1,0]}]},{"x":21.35,"y":29.107,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":21.934,"y":29.107,"w":7.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable amount ","S":-1,"TS":[0,10.36,0,0]}]},{"x":26,"y":29.107,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":26.75,"y":29.107,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":27.499,"y":29.107,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":28.794,"y":29.107,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15b ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":29.857,"w":10.614,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Pensions and annuities ","S":-1,"TS":[0,10.6,0,0]}]},{"x":13.954,"y":29.857,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16a ","S":-1,"TS":[0,11,1,0]}]},{"x":21.35,"y":29.857,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":21.934,"y":29.857,"w":7.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable amount ","S":-1,"TS":[0,10.36,0,0]}]},{"x":26,"y":29.857,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":26.75,"y":29.857,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":27.499,"y":29.857,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":28.794,"y":29.857,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16b ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":30.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"17 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":30.607,"w":39.45,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Rental real estate, royalties, partnerships, S corporations, trusts, etc. Attach Schedule E ","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":30.607,"w":1.39,"oc":"#181516","sw":0.32553125,"A":"left","R":[{"T":"17 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":31.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"18 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":31.357,"w":18.689,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Farm income or (loss). Attach Schedule F ","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":31.357,"w":21,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":31.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"18 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":32.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"19 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":32.107,"w":13.45,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Unemployment compensation","S":-1,"TS":[0,11,0,0]}]},{"x":15.5,"y":32.107,"w":25.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":32.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"19 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":32.857,"w":10.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Social security benefits ","S":-1,"TS":[0,10.6,0,0]}]},{"x":13.954,"y":32.857,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20a ","S":-1,"TS":[0,11,1,0]}]},{"x":21.35,"y":32.857,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":21.934,"y":32.857,"w":7.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable amount ","S":-1,"TS":[0,10.36,0,0]}]},{"x":26,"y":32.857,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":26.75,"y":32.857,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":27.499,"y":32.857,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":28.794,"y":32.857,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20b ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":33.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":33.607,"w":16.341,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other income. List type and amount ","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":33.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":34.294,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":34.294,"w":35.641,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine the amounts in the far right column for lines 7 through 21. This is your ","S":-1,"TS":[0,10.2,0,0]}]},{"x":23.65,"y":34.294,"w":6.168,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"total income ","S":-1,"TS":[0,10.2,1,0]}]},{"x":27.261,"y":34.201,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,8.4,0,0]}]},{"x":28.947,"y":34.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22 ","S":-1,"TS":[0,11,1,0]}]},{"x":2,"y":35.675,"w":4.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Adjusted ","S":-1,"TS":[0,16,1,0]}]},{"x":2,"y":36.425,"w":3.446,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Gross ","S":-1,"TS":[0,16,1,0]}]},{"x":2,"y":37.175,"w":3.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Income ","S":-1,"TS":[0,16,1,0]}]},{"x":6.844,"y":35.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":35.107,"w":8.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Educator expenses","S":-1,"TS":[0,11,0,0]}]},{"x":13.556,"y":35.107,"w":15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":35.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":35.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":35.888,"w":28.67,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Certain business expenses of reservists, performing artists, and ","S":-1,"TS":[0,10.04,0,0]}]},{"x":8.3,"y":36.576,"w":27.562,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"fee-basis government officials. Attach Form 2106 or 2106-EZ ","S":-1,"TS":[0,10.04,0,0]}]},{"x":21.747,"y":36.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":37.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"25 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":37.357,"w":24.063,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Health savings account deduction. Attach Form 8889 ","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":37.357,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":37.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"25 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":38.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":38.107,"w":16.709,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Moving expenses. Attach Form 3903 ","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":38.107,"w":9,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":38.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":38.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":38.857,"w":27.173,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Deductible part of self-employment tax. Attach Schedule SE ","S":-1,"TS":[0,10.2,0,0]}]},{"x":20.751,"y":38.857,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.2,0,0]}]},{"x":21.747,"y":38.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":39.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":39.607,"w":22.097,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Self-employed SEP, SIMPLE, and qualified plans ","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":39.607,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":39.607,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":39.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":40.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"29 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":40.357,"w":19.153,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Self-employed health insurance deduction ","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":40.357,"w":6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":40.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"29 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":41.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"30 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":41.107,"w":17.332,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Penalty on early withdrawal of savings ","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":41.107,"w":9,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":41.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"30 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":41.857,"w":6.076,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Alimony paid ","S":-1,"TS":[0,10.2,0,0]}]},{"x":10.887,"y":41.857,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":11.283,"y":41.857,"w":7.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Recipient’s SSN ","S":-1,"TS":[0,11,0,0]}]},{"x":15.933,"y":41.763,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":21.604,"y":41.857,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"31a ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":42.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":42.607,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"IRA deduction ","S":-1,"TS":[0,11,0,0]}]},{"x":11.75,"y":42.607,"w":19.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":42.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":43.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"33 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":43.357,"w":21.875,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Student loan interest deduction (see instructions)","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":43.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"33 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":44.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"34 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":44.107,"w":15.709,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Tuition and fees. Attach Form 8917","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":44.107,"w":10.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":44.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"34 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":44.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"35 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":44.857,"w":27.175,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Domestic production activities deduction. Attach Form 8903 ","S":-1,"TS":[0,10.36,0,0]}]},{"x":21.747,"y":44.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"35 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":45.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"36 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":45.607,"w":10.949,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 23 through 35 ","S":-1,"TS":[0,11,0,0]}]},{"x":14,"y":45.607,"w":28.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":45.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"36 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.844,"y":46.294,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"37 ","S":-1,"TS":[0,11,1,0]}]},{"x":8.3,"y":46.294,"w":18.505,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 36 from line 22. This is your ","S":-1,"TS":[0,11,0,0]}]},{"x":16.677,"y":46.294,"w":11.17,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"adjusted gross income ","S":-1,"TS":[0,11,1,0]}]},{"x":23,"y":46.294,"w":9,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" .....","S":-1,"TS":[0,11,0,0]}]},{"x":27.115,"y":46.294,"w":1.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.253,"y":46.294,"w":1.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.528,"y":46.201,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":28.947,"y":46.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"37 ","S":-1,"TS":[0,11,1,0]}]},{"x":2,"y":47.107,"w":44.014,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Disclosure, Privacy Act, and Paperwork Reduction Act Notice, see separate instructions.","S":-1,"TS":[0,11,1,0]}]},{"x":26.021,"y":47.125,"w":7.725,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11320B ","S":2,"TS":[0,10,0,0]}]},{"x":31.601,"y":47.071,"w":2.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":32.678,"y":47.071,"w":2.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1040 ","S":10,"TS":[0,14,1,0]}]},{"x":34.429,"y":47.071,"w":3.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":7.087,"y":23.888,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9a","S":-1,"TS":[0,11,1,0]}]},{"x":8.265,"y":23.888,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":6.771,"y":29.107,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15a","S":-1,"TS":[0,11,1,0]}]},{"x":8.218,"y":29.107,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,1,0]}]},{"x":6.744,"y":29.819,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16a","S":-1,"TS":[0,11,1,0]}]},{"x":8.191,"y":29.818,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,1,0]}]},{"x":6.807,"y":32.849,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20a","S":-1,"TS":[0,11,1,0]}]},{"x":8.254,"y":32.85,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,1,0]}]},{"x":6.838,"y":41.787,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"31a","S":-1,"TS":[0,11,1,0]}]},{"x":8.285,"y":41.787,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,1,0]}]},{"x":30.261,"y":12.742,"w":32.016,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"and SSN","S":-1,"TS":[0,11,0,0]}]},{"x":11.141,"y":14.922,"w":15.552,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"First","S":-1,"TS":[0,11,0,0]}]},{"x":19.964,"y":14.848,"w":15.12,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Last","S":-1,"TS":[0,11,0,0]}]},{"x":13.589,"y":13.348,"w":15.552,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"First","S":-1,"TS":[0,11,0,0]}]},{"x":17.308,"y":13.442,"w":15.12,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Last","S":-1,"TS":[0,11,0,0]}]},{"x":7.4,"y":23.107,"w":6.724,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b Tax-exempt ","S":-1,"TS":[0,11,1,0]}]},{"x":19.837,"y":43.371,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.587,"y":43.371,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.783,"y":7.994,"w":28.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"ZIP code","S":-1,"TS":[0,9.3,0,0]}]},{"x":21.094,"y":7.994999999999999,"w":16.345,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INJUR","EN":0},"TI":172,"AM":0,"TU":"Injured spouse text","x":2.234,"y":0.811,"w":5.945,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DECE","EN":0},"TI":173,"AM":0,"TU":"Deceased date","x":8.904,"y":0.839,"w":9.103,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FY","EN":0},"TI":174,"AM":0,"TU":"Page 1. For the year January 1 through December 31, 2013, or other tax year beginning (enter date), 2013, ending (date), 20(two digit year).","x":16.935,"y":3.222,"w":2.54,"h":0.833,"MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYE","EN":0},"TI":175,"AM":0,"TU":"Page 1. For the year January 1 through December 31, 2013, or other tax year beginning (enter ","x":22.464,"y":3.217,"w":2.348,"h":0.833,"MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYEYR","EN":0},"TI":176,"AM":0,"x":25.95,"y":3.201,"w":1.474,"h":0.833,"MV":"yy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":177,"AM":0,"TU":"Your first name.","x":2.25,"y":4.386,"w":8.99,"h":0.852},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI","EN":0},"TI":178,"AM":0,"TU":"Taxpayer middle initial","x":11.616,"y":4.378,"w":1.698,"h":0.895,"MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAM","EN":0},"TI":179,"AM":0,"TU":"Last name.","x":13.631,"y":4.386,"w":15.083,"h":0.852},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":180,"AM":0,"TU":"Your social security number. 9 digits.","x":29.381,"y":4.391,"w":6.619,"h":0.847},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SNAM","EN":0},"TI":181,"AM":0,"TU":"If a joint return, spouse's first name.","x":2.25,"y":5.978,"w":9.072,"h":0.876},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SMI","EN":0},"TI":182,"AM":0,"TU":"Spouse middle initial","x":11.608,"y":6.015,"w":1.78,"h":0.833,"MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SLNM","EN":0},"TI":183,"AM":0,"TU":"Spouse's Last name.","x":13.664,"y":5.978,"w":15.102,"h":0.876},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":184,"AM":0,"TU":"Spouse's social Security Number. 9 digits.","x":29.348,"y":5.955,"w":6.652,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":185,"AM":0,"TU":"Home address (number and street). If you have a Post Office Box, see instructions.","x":2.25,"y":7.416,"w":23.562,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":186,"AM":0,"TU":"Apartment number.","x":26.198,"y":7.416,"w":2.797,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":187,"AM":0,"TU":"City, town or post office. If you have a foreign address, also complete spaces below (see instructions).","x":2.25,"y":8.891,"w":18.222,"h":0.901},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":188,"AM":0,"TU":"State","x":21.354,"y":8.911,"w":1.324,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AP"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":189,"AM":0,"TU":"Zip code.","x":23.908,"y":8.94,"w":2.768,"h":0.856},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":190,"AM":0,"TU":"Foreign country name.","x":2.339,"y":10.37,"w":12.975,"h":0.857,"PL":{"V":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"]},"V":" "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPC","EN":0},"TI":191,"AM":0,"TU":"Foreign province or state or county. ","x":16.265,"y":10.413,"w":8.575,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":192,"AM":0,"TU":"Foreign postal code. ","x":25.331,"y":10.413,"w":3.54,"h":0.844},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAM","EN":0},"TI":199,"AM":0,"x":27.545,"y":12.844,"w":2.701,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN","EN":0},"TI":200,"AM":0,"TU":"Child SSN","x":32.827,"y":12.898,"w":3.185,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNM","EN":0},"TI":201,"AM":0,"x":14.824,"y":13.611,"w":2.532,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNM","EN":0},"TI":202,"AM":0,"x":18.642,"y":13.601,"w":2.893,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNR","EN":0},"TI":206,"AM":0,"x":12.546,"y":15.157,"w":5.141,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNR","EN":0},"TI":207,"AM":0,"x":21.378,"y":15.168,"w":5.227,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6AB","EN":0},"TI":208,"AM":1024,"TU":"Line 6d. Total number of exemptions claimed. Boxes checked on 6a and 6b.","x":34.609,"y":14.729,"w":1.309,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C1","EN":0},"TI":209,"AM":0,"TU":"Line 6d. Number of children on 6 c who: Lived with you.","x":34.65,"y":16.104,"w":1.35,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_1_","EN":0},"TI":210,"AM":0,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. ","x":6.75,"y":17.395,"w":3.92,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_1_","EN":0},"TI":211,"AM":0,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. ","x":10.796,"y":17.416,"w":3.92,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_1_","EN":0},"TI":212,"AM":0,"TU":"Line 6. c. Dependent 1. (2) Dependent's Social Security Number. ","x":14.923,"y":17.415,"w":5.158,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_1_","EN":0},"TI":213,"AM":0,"TU":"Dependent's relationship","x":20.16,"y":17.403,"w":3.44,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_2_","EN":0},"TI":215,"AM":0,"TU":"Line 6. c. Dependent 2. (1).","x":6.75,"y":18.158,"w":3.923,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_2_","EN":0},"TI":216,"AM":0,"TU":"Line 6. c. Dependent 2. (1).","x":10.796,"y":18.179,"w":3.923,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_2_","EN":0},"TI":217,"AM":0,"TU":"Line 6. c. Dependent 2. ","x":14.882,"y":18.117,"w":5.179,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_2_","EN":0},"TI":218,"AM":0,"TU":"Dependent's relationship","x":20.165,"y":18.192,"w":3.44,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C2","EN":0},"TI":220,"AM":0,"TU":"Line 6d. Number of children on 6 c who: Did not live with you due to divorce or separation (see instructions).","x":34.65,"y":17.854,"w":1.35,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_3_","EN":0},"TI":221,"AM":0,"TU":"Line 6. c. Dependent 3. (1).","x":6.712,"y":18.867,"w":3.963,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_3_","EN":0},"TI":222,"AM":0,"TU":"Line 6. c. Dependent 3. (1).","x":10.758,"y":18.929,"w":3.963,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_3_","EN":0},"TI":223,"AM":0,"TU":"Line 6. c. Dependent 3.","x":14.923,"y":18.847,"w":5.158,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_3_","EN":0},"TI":224,"AM":0,"TU":"Dependent's relationship","x":20.241,"y":18.937,"w":3.44,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C3","EN":0},"TI":226,"AM":0,"TU":"Line 6d. Dependents on 6 c not entered above.","x":34.65,"y":18.854,"w":1.35,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_4_","EN":0},"TI":228,"AM":0,"TU":"Line 6. c. Dependent 4. (1).","x":6.75,"y":19.576,"w":3.91,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_4_","EN":0},"TI":229,"AM":0,"TU":"Line 6. c. Dependent 4. (1).","x":10.796,"y":19.638,"w":3.91,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_4_","EN":0},"TI":230,"AM":0,"TU":"Line 6. c. Dependent 4.","x":14.923,"y":19.637,"w":5.118,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_4_","EN":0},"TI":231,"AM":0,"TU":"Dependent's relationship","x":20.159,"y":19.65,"w":3.44,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FDEPEND"}},"id":{"Id":"A384","EN":0},"TI":233,"AM":0,"x":12.975,"y":20.312,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6E","EN":0},"TI":234,"AM":1024,"TU":"Line 6d. Add numbers on lines above.","x":34.65,"y":20.582,"w":1.35,"h":0.98},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7W","EN":0},"TI":235,"AM":0,"TU":"Line 7 write-in","x":20.518,"y":21.796,"w":3.04,"h":0.833,"PL":{"V":[" ","EXCESS ALLOWANCE","F8919","FB","FEC","DCB","HSH","SCH","PSO","PRI","DFC","NONE APPLY"],"D":[" ","EXCESS ALLOWANCE","F8919","FB","FEC","DCB","HSH","SCH","PSO","PRI","DFC","NONE"]},"V":"NONE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7WAMT","EN":0},"TI":236,"AM":0,"x":24.4,"y":21.818,"w":3.346,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":237,"AM":0,"TU":"Line 7. Wages, salaries, tips, etc.","x":30.232,"y":21.791,"w":4.336,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHB"}},"id":{"Id":"A469","EN":0},"TI":238,"AM":0,"x":19.027,"y":22.487,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":239,"AM":0,"TU":"Line 8. a. Taxable interest. Attach Schedule B if required. Dollars.","x":30.211,"y":22.541,"w":4.377,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":240,"AM":0,"TU":"Line 8. b. Tax-exempt interest. Do not include on line 8 a. Dollars.","x":22.95,"y":23.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHB"}},"id":{"Id":"A515","EN":0},"TI":241,"AM":0,"x":19.316,"y":23.801,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"F8814T1","EN":0},"TI":242,"AM":0,"x":21.361,"y":24.067,"w":2.45,"h":0.833,"PL":{"V":[" "," FORM 8814"],"D":[" ","FORM 8814"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8814A","EN":0},"TI":243,"AM":0,"x":25.302,"y":24.077,"w":3.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":244,"AM":0,"TU":"Line 9. a. Ordinary dividends. Attach Schedule B if required. Dollars.","x":30.191,"y":24.041,"w":4.418,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"F8814T2","EN":0},"TI":245,"AM":0,"x":13.766,"y":24.779,"w":2.581,"h":0.833,"PL":{"V":[" ","FORM 8814"],"D":[" ","FORM 8814"]},"V":"FORM 8814"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8814A2","EN":0},"TI":246,"AM":0,"x":17.543,"y":24.789,"w":3.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALDIVS","EN":0},"TI":247,"AM":0,"TU":"Line 9. b. Qualified dividends. Dollars.","x":22.95,"y":24.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":248,"AM":0,"TU":"Line 10. Taxable refunds, credits, or offsets of state and local income taxes. Dollars.","x":30.232,"y":25.52,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":249,"AM":0,"TU":"Line 11. Alimony received. Dollars.","x":30.191,"y":26.291,"w":4.398,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"F8814LIT","EN":0},"TI":250,"AM":0,"x":20.821,"y":27.005,"w":3.663,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8814AMT","EN":0},"TI":251,"AM":0,"x":24.924,"y":26.992,"w":3.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":252,"AM":0,"TU":"Line 12. Business income or (loss). Attach Schedule C or C-E Z. Dollars.","x":30.191,"y":27.041,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14W","EN":0},"TI":253,"AM":0,"TU":"Line 21. Other income. List type and amount. ","x":18.846,"y":28.477,"w":9.803,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":255,"AM":0,"TU":"Line 13. Dollars.","x":30.211,"y":27.77,"w":4.377,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4797"}},"id":{"Id":"A474","EN":0},"TI":256,"AM":0,"x":17.2,"y":28.472,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":257,"AM":0,"TU":"Line 14. Other gains or (losses). Attach Form 4797. Dollars.","x":30.211,"y":28.52,"w":4.398,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15A","EN":0},"TI":258,"AM":0,"TU":"Line 15. a. I R A distributions. Dollars.","x":15.329,"y":29.25,"w":4.547,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"QCD","EN":0},"TI":259,"AM":0,"x":25.7,"y":29.337,"w":2.94,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":260,"AM":0,"TU":"Line 15. b. Taxable amount. Dollars.","x":30.191,"y":29.291,"w":4.398,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16A","EN":0},"TI":261,"AM":0,"TU":"Line 16. a. Pensions and annuities. Dollars.","x":15.356,"y":30.093,"w":4.477,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSO","EN":0},"TI":262,"AM":0,"x":25.755,"y":30.072,"w":2.94,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16B","EN":0},"TI":263,"AM":0,"TU":"Line 16. b. Taxable amount. Dollars.","x":30.211,"y":30.02,"w":4.377,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHE1"}},"id":{"Id":"ADDSCHE","EN":0},"TI":264,"AM":0,"x":27.184,"y":30.72,"w":0.959,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":265,"AM":0,"TU":"Line 17. Rental real estate, royalties, partnerships, S corporations, trusts, etcetera. Attach Schedule E. Dollars.","x":30.191,"y":30.791,"w":4.398,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHF"}},"id":{"Id":"ADDSCHF","EN":0},"TI":266,"AM":0,"x":17.594,"y":31.483,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":267,"AM":0,"TU":"Line 18. Farm income or (loss). Attach Schedule F. Dollars.","x":30.17,"y":31.561,"w":4.439,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L19T1","EN":0},"TI":268,"AM":0,"x":21.274,"y":32.272,"w":3.92,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19T2","EN":0},"TI":269,"AM":0,"x":25.403,"y":32.268,"w":3.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":270,"AM":0,"TU":"Line 19. Unemployment compensation. Dollars.","x":30.211,"y":32.27,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20AMOD","EN":0},"TI":271,"AM":0,"TU":"Line 20. a. Social Security benefits. Dollars.","x":15.271,"y":32.977,"w":4.462,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L20LSE","EN":0},"TI":272,"AM":0,"TU":"Line 20. a. Social Security benefits. Dollars.","x":25.682,"y":33.125,"w":2.948,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20B","EN":0},"TI":273,"AM":0,"TU":"Line 20. b. Taxable amount. Dollars.","x":30.232,"y":33.02,"w":4.377,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHINC_L21DESC_1_","EN":0},"TI":274,"AM":0,"TU":"Line 21. Other income. List type.","x":17.086,"y":33.826,"w":6.453,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHINC_L21DAMT_1_","EN":0},"TI":275,"AM":0,"x":23.899,"y":33.86,"w":4.418,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":276,"AM":0,"TU":"Line 21. Dollars.","x":30.225,"y":33.791,"w":4.377,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":277,"AM":1024,"TU":"Line 22. Combine the amounts in the far right column for lines 7 through 21. This is your total income. Dollars.","x":30.232,"y":34.541,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":278,"AM":0,"TU":"Line 23. Educator expenses. dollars","x":23.011,"y":35.311,"w":4.418,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BUSEXP","EN":0},"TI":279,"AM":0,"TU":"Line 24. Certain business expenses of reservists, performing artists, and fee-basis government officials. Attach Form 2106 or 2106-E Z. Dollars. ","x":23.011,"y":36.75,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HSA","EN":0},"TI":280,"AM":0,"TU":"Line 25. Health savings account deduction. Attach Form 8889. Dollars.","x":22.991,"y":37.541,"w":4.398,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F3903"}},"id":{"Id":"A3903","EN":0},"TI":281,"AM":0,"x":16.366,"y":38.132,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L26T","EN":0},"TI":282,"AM":0,"x":17.794,"y":38.199,"w":3.689,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":283,"AM":0,"TU":"Line 26. Moving expenses. Attach Form 3903. Dollars.","x":23.011,"y":38.27,"w":4.336,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":284,"AM":0,"TU":"Line 27. Deductible part of self-employment tax. Attach Schedule S E. Dollars.","x":23.011,"y":39.061,"w":4.398,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":285,"AM":0,"TU":"Line 28. Self-employed S E P, SIMPLE, and qualified plans. Dollars.","x":22.97,"y":39.811,"w":4.439,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L29W","EN":0},"TI":286,"AM":0,"x":18.186,"y":40.54,"w":3.076,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":287,"AM":0,"TU":"Line 29. Self-employed health insurance deduction. Dollars.","x":23.025,"y":40.541,"w":4.336,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":288,"AM":0,"TU":"Line 30. Penalty on early withdrawal of savings. Dollars.","x":23.032,"y":41.291,"w":4.336,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A586_RSSN_1_","EN":0},"TI":289,"AM":0,"TU":"Line 31. b. Recipient’s S S N.","x":16.65,"y":42,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":290,"AM":0,"TU":"Line 31. a. Alimony paid. Dollars.","x":23.011,"y":42.061,"w":4.336,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":291,"AM":0,"TU":"Line 32. I R A deduction. Dollars.","x":22.991,"y":42.791,"w":4.398,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":292,"AM":0,"TU":"Line 33. Student loan interest deduction. Dollars.","x":22.97,"y":43.541,"w":4.459,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8917"}},"id":{"Id":"A514","EN":0},"TI":293,"AM":0,"x":16.491,"y":44.209,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32C","EN":0},"TI":294,"AM":0,"TU":"Line 34. Tuition and fees. Attach Form 8917. Dollars.","x":22.991,"y":44.291,"w":4.418,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8903"}},"id":{"Id":"A550","EN":0},"TI":295,"AM":0,"x":20.122,"y":44.936,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DPAD","EN":0},"TI":296,"AM":0,"TU":"Line 35. Domestic production activities deduction. Attach Form 8903. Dollars.","x":23.032,"y":45.061,"w":4.336,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T","EN":0},"TI":297,"AM":0,"x":21.254,"y":45.878,"w":3.92,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32W","EN":0},"TI":298,"AM":0,"x":25.384,"y":45.874,"w":3.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":299,"AM":1024,"TU":"Line 36. Add lines 23 through 35. Dollars.","x":30.211,"y":45.75,"w":4.377,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":300,"AM":1024,"TU":"Line 37. Subtract line 36 from line 22. This is your adjusted gross income. Dollars.","x":30.232,"y":46.541,"w":4.336,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PECY","EN":0},"TI":193,"AM":0,"TU":"Presidential Election Campaign. Check here if you, or your spouse if filing jointly, want $3 to go to this fund. Checking a box below will not change your tax or refund. You.","x":32.014,"y":10.522,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SECY","EN":0},"TI":194,"AM":0,"TU":"Presidential Election Campaign. Your spouse.","x":33.732,"y":10.522,"w":0.523,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":195,"AM":0,"TU":"Checkboxes. Filing Status.","x":8.214,"y":11.361,"w":0.626,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS4","EN":0},"TI":196,"AM":0,"TU":"Checkboxes. Filing Status.","x":22.568,"y":11.4,"w":0.626,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":197,"AM":0,"TU":"Checkboxes. Filing Status.","x":8.168,"y":12.101,"w":0.626,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS3","EN":0},"TI":198,"AM":0,"TU":"Checkboxes. Filing Status.","x":8.171,"y":12.922,"w":0.669,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS5","EN":0},"TI":203,"AM":0,"TU":"Checkboxes. Filing Status.","x":22.565,"y":13.428,"w":0.626,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6A","EN":0},"TI":204,"AM":0,"TU":"Exemptions. 6. a. Yourself. If someone can claim you as a dependent, do not check box 6 a.","x":8.675,"y":14.374,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6B","EN":0},"TI":205,"AM":0,"TU":"Line 6. b. Spouse.","x":8.675,"y":15.063,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_1_","EN":0},"TI":214,"AM":0,"TU":"Line 6. c. Dependent 2. ","x":26.5,"y":17.299,"w":0.547,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_2_","EN":0},"TI":219,"AM":0,"TU":"Line 6. c. Dependent 2. ","x":26.48,"y":18.035,"w":0.547,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_3_","EN":0},"TI":225,"AM":0,"TU":"Line 6. c. Dependent 3. ","x":26.523,"y":18.846,"w":0.523,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPSX","EN":0},"TI":227,"AM":0,"TU":"Exemptions. If more than four dependents, see instructions and check here. ","x":5.525,"y":19.666,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_4_","EN":0},"TI":232,"AM":0,"TU":"Line 6. c. Dependent 4. ","x":26.523,"y":19.596,"w":0.491,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L13X","EN":0},"TI":254,"AM":0,"TU":"Line 13. Capital gain or (loss). Attach Schedule D if required. If not required, check here.","x":26.813,"y":27.832,"w":0.5,"h":0.833}]}]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.328,"y":1.266,"w":1.5,"l":31.531,"oc":"#221f1f"},{"x":33.828,"y":1.266,"w":1.5,"l":2.211,"oc":"#221f1f"},{"x":28.878,"y":2.016,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.228,"y":1.266,"w":1.5,"l":4.531,"oc":"#221f1f"},{"x":30.228,"y":2.016,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.728,"y":1.266,"w":1.5,"l":1.381,"oc":"#221f1f"},{"x":34.728,"y":2.016,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":27.544,"y":3.443,"w":1.5,"l":1.318,"oc":"#221f1f"},{"x":27.544,"y":2.016,"w":1.5,"l":1.318,"oc":"#221f1f"},{"x":28.878,"y":2.016,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.228,"y":2.016,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.728,"y":2.016,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.113,"y":17.875,"w":0.75,"l":2.975,"oc":"#221f1f"},{"x":2.113,"y":5.25,"w":0.75,"l":2.975,"oc":"#221f1f"},{"x":5.478,"y":4.266,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":5.478,"y":5.016,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":28.878,"y":5.016,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.228,"y":5.016,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.728,"y":5.016,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.878,"y":5.766,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.244,"y":5.766,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":30.244,"y":5.016,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":34.728,"y":5.016,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.728,"y":5.766,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.878,"y":6.516,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.228,"y":5.766,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.228,"y":6.516,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.728,"y":5.766,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.728,"y":6.516,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.878,"y":7.266,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.228,"y":6.516,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":30.228,"y":7.266,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.728,"y":6.516,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":34.728,"y":7.266,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":9.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.15,"y":9.75,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":30.15,"y":9,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":34.728,"y":7.266,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":9.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":10.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.15,"y":10.5,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":30.15,"y":9.75,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":34.634,"y":9.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":10.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":11.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.15,"y":11.25,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":30.15,"y":10.5,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":34.634,"y":10.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":11.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.584,"y":12,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":12,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.434,"y":12,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":11.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":11.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":11.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.584,"y":12.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":12,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.934,"y":12.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.45,"y":12.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":12,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":13.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":12.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.934,"y":13.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.45,"y":13.5,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":12.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":14.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":13.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.934,"y":14.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.45,"y":14.25,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":13.5,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":15,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":14.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.934,"y":15,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.45,"y":15,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":14.25,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":15.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":15,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.934,"y":15.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.45,"y":15.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":15,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":19.705,"y":16.57,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":21.584,"y":16.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":15.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.934,"y":16.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":27.434,"y":15.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":27.434,"y":16.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":17.25,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":17.252,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":17.25,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":18,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":17.25,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":18,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":17.25,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":18,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.25,"y":18,"w":0.75,"l":33.75,"oc":"#181616"},{"x":28.784,"y":18.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":18,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":18.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":18,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":18.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":19.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":18.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":19.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":18.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":19.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.831,"y":20.719,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":19.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.181,"y":20.719,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":19.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.681,"y":20.719,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":21.844,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.181,"y":20.719,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":21.844,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.681,"y":20.719,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":21.844,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":22.594,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":21.844,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":22.594,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":21.844,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":22.594,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":24.734,"y":23.344,"w":0.75,"l":3.631,"oc":"#221f1f","dsh":1},{"x":28.784,"y":23.344,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":22.594,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":23.344,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":22.594,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":23.344,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":23.344,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":23.344,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.25,"y":24.094,"w":0.75,"l":33.75,"oc":"#181616"},{"x":21.584,"y":24.844,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":24.094,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.934,"y":24.844,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.45,"y":24.844,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":24.094,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":25.594,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":24.844,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.934,"y":25.594,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.45,"y":25.594,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":24.844,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":28.784,"y":24.094,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":24.094,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":24.094,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.113,"y":28.213,"w":0.75,"l":2.975,"oc":"#221f1f"},{"x":2.113,"y":25.212,"w":0.75,"l":2.975,"oc":"#221f1f"},{"x":5.384,"y":25.594,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":5.384,"y":26.344,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":21.584,"y":26.344,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":25.594,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.934,"y":26.344,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.45,"y":26.344,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":25.594,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":14.384,"y":27.094,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":15.734,"y":27.094,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":20.234,"y":27.094,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.584,"y":26.344,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":26.344,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.434,"y":26.344,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.584,"y":27.844,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":27.844,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.434,"y":27.844,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.584,"y":28.594,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":28.594,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":27.844,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":28.594,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":27.844,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":29.348,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":29.348,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":28.598,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":29.348,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":28.598,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":30.094,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":30.098,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":29.348,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":30.098,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":29.348,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":30.848,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":30.848,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":30.098,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":30.848,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":30.098,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":31.594,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.95,"y":31.594,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.95,"y":30.844,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":27.45,"y":31.594,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":30.844,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":21.584,"y":32.344,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":31.594,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.934,"y":32.344,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":27.434,"y":31.594,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":27.434,"y":32.344,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.55,"y":33.516,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.9,"y":33.516,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.4,"y":33.516,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.016,"y":33.516,"w":0.75,"l":33.75,"oc":"#181616"},{"x":28.55,"y":34.266,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.916,"y":34.266,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":29.916,"y":33.516,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":34.4,"y":33.516,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.4,"y":34.266,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":27.341,"y":34.891,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":27.341,"y":34.391,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":28.55,"y":35.016,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.916,"y":35.016,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":29.916,"y":34.266,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":34.4,"y":34.266,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.4,"y":35.016,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.45,"y":35.766,"w":0.75,"l":8.122,"oc":"#221f1f"},{"x":28.55,"y":35.016,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.9,"y":35.016,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.4,"y":35.016,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.46,"y":36.509,"w":0.75,"l":15.286,"oc":"#221f1f"},{"x":2.016,"y":37.266,"w":0.75,"l":26.55,"oc":"#181616"},{"x":28.55,"y":38.016,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.9,"y":38.016,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.4,"y":38.016,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.55,"y":38.016,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.55,"y":38.766,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":2.016,"y":38.766,"w":1.2,"l":33.75,"oc":"#181616"},{"x":2.016,"y":41.016,"w":1.2,"l":33.75,"oc":"#181616"},{"x":2,"y":45.516,"w":1.125,"l":3.181,"oc":"#221f1f"},{"x":5.6,"y":44.016,"w":0.75,"l":11.285,"oc":"#221f1f"},{"x":16.85,"y":44.016,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":20,"y":44.016,"w":0.75,"l":8.574,"oc":"#221f1f"},{"x":28.55,"y":44.016,"w":0.75,"l":7.234,"oc":"#221f1f"},{"x":5.6,"y":44.016,"w":0.75,"l":11.285,"oc":"#221f1f"},{"x":5.6,"y":45.512,"w":1.125,"l":11.285,"oc":"#221f1f"},{"x":5.15,"y":45.516,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":16.85,"y":44.016,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":16.85,"y":45.512,"w":1.125,"l":3.181,"oc":"#221f1f"},{"x":20,"y":44.016,"w":0.75,"l":8.574,"oc":"#221f1f"},{"x":20,"y":45.512,"w":1.125,"l":8.574,"oc":"#221f1f"},{"x":28.55,"y":44.016,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.55,"y":45.516,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":5.6,"y":45.516,"w":1.125,"l":7.231,"oc":"#221f1f"},{"x":5.6,"y":47.016,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":12.8,"y":45.516,"w":1.125,"l":11.281,"oc":"#221f1f"},{"x":12.8,"y":47.016,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":24.05,"y":45.516,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":24.05,"y":47.016,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.55,"y":45.516,"w":1.125,"l":3.181,"oc":"#221f1f"},{"x":28.55,"y":47.016,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":31.7,"y":45.516,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":31.7,"y":47.016,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":5.6,"y":47.016,"w":0.75,"l":18.931,"oc":"#221f1f"},{"x":5.6,"y":47.766,"w":0.75,"l":18.931,"oc":"#221f1f"},{"x":24.5,"y":47.016,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":24.5,"y":47.766,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":24.5,"y":47.766,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":2,"y":48.516,"w":1.5,"l":33.781,"oc":"#221f1f"},{"x":20.234,"y":32.344,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":12.416,"y":9.937,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":30.847,"y":40.984,"w":1.5,"l":4.437,"oc":"#57585a"},{"x":30.847,"y":40.297,"w":1.5,"l":4.437,"oc":"#57585a"},{"x":31.297,"y":45.484,"w":1.5,"l":4.438,"oc":"#57585a"},{"x":31.297,"y":44.797,"w":1.5,"l":4.438,"oc":"#57585a"}],"VLines":[{"x":30.244,"y":1.25,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.894,"y":1.25,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.744,"y":1.234,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":30.244,"y":1.234,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":34.744,"y":1.234,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":28.862,"y":2.016,"w":1.5,"l":1.427,"oc":"#221f1f"},{"x":27.544,"y":2.016,"w":1.5,"l":1.427,"oc":"#221f1f"},{"x":30.244,"y":2,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.894,"y":2,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.744,"y":2,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.244,"y":2,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.744,"y":2,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":1.8,"y":5.562,"w":0.75,"l":12,"oc":"#221f1f"},{"x":5.4,"y":5.562,"w":0.75,"l":12,"oc":"#221f1f"},{"x":30.244,"y":4.25,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.894,"y":4.25,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.744,"y":4.25,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.244,"y":4.25,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.744,"y":4.25,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.244,"y":5,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.894,"y":5,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.744,"y":5.016,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":30.244,"y":5.016,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.744,"y":5,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.244,"y":5.75,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.894,"y":5.75,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.744,"y":5.75,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.244,"y":5.75,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.744,"y":5.75,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.244,"y":6.492,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.894,"y":6.492,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.744,"y":6.492,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.244,"y":6.492,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.744,"y":6.492,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.141,"y":8.892,"w":0.75,"l":0.779,"oc":"#221f1f"},{"x":28.781,"y":9.01,"w":0.75,"l":0.729,"oc":"#221f1f"},{"x":34.65,"y":9,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":30.15,"y":9,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.641,"y":9.311,"w":0.75,"l":0.41,"oc":"#221f1f"},{"x":30.15,"y":9.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":9.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":9.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":30.15,"y":9.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.65,"y":9.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":10.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":10.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":10.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":30.15,"y":10.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.65,"y":10.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.6,"y":11.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":11.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":11.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":11.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":11.235,"w":0.75,"l":5.281,"oc":"#221f1f"},{"x":28.8,"y":11.235,"w":0.75,"l":5.281,"oc":"#221f1f"},{"x":34.65,"y":11.235,"w":0.75,"l":5.289,"oc":"#221f1f"},{"x":30.15,"y":11.235,"w":0.75,"l":5.289,"oc":"#221f1f"},{"x":34.65,"y":11.235,"w":0.75,"l":5.289,"oc":"#221f1f"},{"x":21.6,"y":11.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":11.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":12,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":12,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":12.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":12.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":13.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":13.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":13.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":13.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":14.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":14.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":14.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":14.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":15,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":15,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":15.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":22.95,"y":15.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":15.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":27.45,"y":15.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":16.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":16.486,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":16.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":17.227,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":17.227,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":17.227,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":18.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":18.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":18.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.847,"y":20.703,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.197,"y":20.703,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.697,"y":20.703,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":21.828,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":21.828,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":21.828,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":22.578,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":22.578,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":22.578,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":23.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":23.32,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":23.32,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":21.6,"y":24.078,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":24.078,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":24.094,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":24.094,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":24.828,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":24.828,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":24.844,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":24.844,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":30.15,"y":24.078,"w":0.75,"l":8.281,"oc":"#221f1f"},{"x":28.8,"y":24.078,"w":0.75,"l":8.281,"oc":"#221f1f"},{"x":34.65,"y":24.078,"w":0.75,"l":8.281,"oc":"#221f1f"},{"x":30.15,"y":24.078,"w":0.75,"l":8.281,"oc":"#221f1f"},{"x":34.65,"y":24.078,"w":0.75,"l":8.281,"oc":"#221f1f"},{"x":1.8,"y":25.525,"w":0.75,"l":2.375,"oc":"#221f1f"},{"x":5.4,"y":25.525,"w":0.75,"l":2.375,"oc":"#221f1f"},{"x":21.6,"y":25.578,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":25.578,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":25.594,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":25.594,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":15.75,"y":26.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.4,"y":26.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":15.75,"y":26.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.6,"y":26.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":20.25,"y":26.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":26.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.6,"y":26.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":26.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":26.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":26.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":26.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.6,"y":27.078,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":27.078,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":27.078,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":27.078,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":27.078,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.6,"y":27.828,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":27.844,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":27.844,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":27.844,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":27.844,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":28.582,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":28.598,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":28.598,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":28.598,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":28.598,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":29.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":29.348,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":29.348,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":29.348,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":29.348,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":30.082,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":30.098,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":30.098,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":30.098,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":30.098,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":30.828,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":30.844,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.95,"y":30.844,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.8,"y":30.844,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":30.844,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.6,"y":31.578,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":27.45,"y":31.578,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":22.95,"y":31.578,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":31.578,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":27.45,"y":31.578,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":32.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":32.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":32.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":32.328,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.566,"y":33.5,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.416,"y":33.516,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":29.916,"y":33.516,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.416,"y":33.5,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.841,"y":34.391,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":27.341,"y":34.391,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":28.566,"y":34.25,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.416,"y":34.266,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":29.916,"y":34.266,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.416,"y":34.25,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.466,"y":35.078,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":12.366,"y":35.078,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":13.266,"y":35.078,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":14.166,"y":35.078,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":15.066,"y":35.078,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":15.966,"y":35.078,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":16.866,"y":35.078,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":17.766,"y":35.078,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":18.666,"y":35.078,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":19.566,"y":35.078,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":29.916,"y":35,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.566,"y":35,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.416,"y":35,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.916,"y":35,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.416,"y":35,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":11.466,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":12.366,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":13.266,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":14.166,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":15.066,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":15.966,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":16.866,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":17.766,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":18.666,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":19.566,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":20.509,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":21.366,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":22.322,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":23.166,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":24.066,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":24.966,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":25.866,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":26.766,"y":35.791,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":22.716,"y":36.592,"w":0.75,"l":0.656,"oc":"#221f1f"},{"x":21.366,"y":36.592,"w":0.75,"l":0.656,"oc":"#221f1f"},{"x":27.216,"y":36.592,"w":0.75,"l":0.656,"oc":"#221f1f"},{"x":22.716,"y":36.592,"w":0.75,"l":0.656,"oc":"#221f1f"},{"x":28.566,"y":36.592,"w":0.75,"l":0.656,"oc":"#221f1f"},{"x":27.216,"y":36.592,"w":0.75,"l":0.656,"oc":"#221f1f"},{"x":28.566,"y":37.25,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.416,"y":37.25,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.916,"y":37.25,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.416,"y":37.25,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.366,"y":38,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.716,"y":38,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.216,"y":38,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.566,"y":38,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.869,"y":42.5,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":20.016,"y":42.5,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.866,"y":42.5,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.559,"y":42.5,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":20.016,"y":42.5,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.566,"y":42.5,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.869,"y":44,"w":0.75,"l":1.535,"oc":"#221f1f"},{"x":20.016,"y":44,"w":0.75,"l":1.535,"oc":"#221f1f"},{"x":16.866,"y":44,"w":0.75,"l":1.535,"oc":"#221f1f"},{"x":28.559,"y":44,"w":0.75,"l":1.535,"oc":"#221f1f"},{"x":20.016,"y":44,"w":0.75,"l":1.535,"oc":"#221f1f"},{"x":28.566,"y":44,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":12.816,"y":45.492,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.566,"y":45.492,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":24.066,"y":45.492,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.566,"y":45.492,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":31.716,"y":45.492,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":24.516,"y":47,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.516,"y":47.75,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.516,"y":47,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.516,"y":47.75,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.6,"y":31.578,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.284,"y":40.297,"w":1.5,"l":0.687,"oc":"#57585a"},{"x":30.847,"y":40.297,"w":1.5,"l":0.687,"oc":"#57585a"},{"x":31.716,"y":40.328,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":32.616,"y":40.328,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":33.516,"y":40.328,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":34.416,"y":40.328,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":34.416,"y":40.328,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":35.734,"y":44.797,"w":1.5,"l":0.687,"oc":"#57585a"},{"x":31.297,"y":44.797,"w":1.5,"l":0.687,"oc":"#57585a"},{"x":32.016,"y":44.828,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":32.766,"y":44.828,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":33.516,"y":44.828,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":34.266,"y":44.828,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":35.016,"y":44.828,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":35.016,"y":44.828,"w":1.5,"l":0.656,"oc":"#57585a"}],"Fills":[{"x":1.847,"y":0.469,"w":34.65,"h":1.5,"oc":"#e4f3f3"},{"x":5.4,"y":2.25,"w":30.6,"h":45,"oc":"#e4f3f3"},{"x":1.566,"y":48.516,"w":34.65,"h":0.75,"oc":"#e4f3f3"},{"x":11.466,"y":35.016,"w":8.1,"h":0.75,"clr":1},{"x":11.466,"y":35.766,"w":15.3,"h":0.687,"clr":1},{"x":30.244,"y":1.266,"w":4.5,"h":0.75,"clr":1},{"x":28.894,"y":2.016,"w":1.35,"h":2.25,"oc":"#bebfc1"},{"x":30.244,"y":2.016,"w":4.5,"h":2.25,"clr":1},{"x":34.744,"y":2.016,"w":1.35,"h":2.25,"clr":1},{"x":1.8,"y":5.25,"w":3.6,"h":12.625,"oc":"#ecf7f9"},{"x":2.063,"y":5.375,"w":3.312,"h":12.249,"clr":1},{"x":30.244,"y":4.266,"w":4.5,"h":0.75,"clr":1},{"x":30.244,"y":5.016,"w":4.5,"h":0.75,"clr":1},{"x":30.244,"y":5.766,"w":4.5,"h":0.75,"clr":1},{"x":30.244,"y":6.516,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":9,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":9.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":10.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":11.25,"w":4.5,"h":0.75,"clr":1},{"x":28.8,"y":11.25,"w":1.35,"h":5.25,"oc":"#bebfc1"},{"x":30.15,"y":11.25,"w":4.5,"h":5.25,"clr":1},{"x":34.65,"y":11.25,"w":1.35,"h":5.25,"clr":1},{"x":22.95,"y":12,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":12.75,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":13.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":14.25,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":15,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":15.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":16.502,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":17.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":18,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":18.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":19.5,"w":4.5,"h":0.75,"clr":1},{"x":30.197,"y":20.719,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":21.844,"w":4.5,"h":0.75,"clr":1},{"x":24.75,"y":22.656,"w":3.6,"h":0.687,"clr":1},{"x":30.15,"y":22.594,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":23.344,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":24.094,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":24.844,"w":4.5,"h":0.75,"clr":1},{"x":28.8,"y":24.094,"w":1.35,"h":8.25,"oc":"#bebfc1"},{"x":30.15,"y":24.094,"w":4.5,"h":8.25,"clr":1},{"x":34.65,"y":24.094,"w":1.35,"h":8.25,"clr":1},{"x":1.8,"y":25.212,"w":3.6,"h":3,"oc":"#ecf7f9"},{"x":2.063,"y":25.351,"w":3.312,"h":2.75,"clr":1},{"x":22.95,"y":25.594,"w":4.5,"h":0.75,"clr":1},{"x":15.75,"y":26.344,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":26.344,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":27.094,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":27.844,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":28.598,"w":4.5,"h":0.75,"oc":"#bebfc1"},{"x":22.95,"y":29.348,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":30.098,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":30.844,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":31.594,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":32.344,"w":4.5,"h":0.75,"clr":1},{"x":29.916,"y":33.516,"w":4.5,"h":0.75,"clr":1},{"x":29.916,"y":34.266,"w":4.5,"h":0.75,"clr":1},{"x":28.566,"y":35.016,"w":1.35,"h":2.25,"oc":"#bebfc1"},{"x":29.916,"y":35.016,"w":4.5,"h":2.25,"clr":1},{"x":34.416,"y":35.016,"w":1.35,"h":2.25,"clr":1},{"x":22.716,"y":36.608,"w":4.5,"h":0.625,"clr":1},{"x":29.916,"y":37.266,"w":4.5,"h":0.75,"clr":1},{"x":22.716,"y":38.016,"w":4.5,"h":0.75,"clr":1},{"x":28.566,"y":38.016,"w":7.2,"h":0.75,"oc":"#bebfc1"},{"x":8.766,"y":39.516,"w":8.1,"h":1.5,"clr":1},{"x":19.116,"y":39.512,"w":5.85,"h":1.5,"clr":1},{"x":30.816,"y":40.266,"w":4.5,"h":0.75,"clr":1},{"x":5.615,"y":42.516,"w":11.254,"h":1.5,"clr":1},{"x":16.866,"y":42.516,"w":3.15,"h":1.5,"clr":1},{"x":20.016,"y":42.516,"w":8.543,"h":1.5,"clr":1},{"x":28.566,"y":42.516,"w":7.203,"h":1.5,"clr":1},{"x":5.615,"y":44.016,"w":11.254,"h":1.496,"clr":1},{"x":16.866,"y":44.016,"w":3.15,"h":1.496,"clr":1},{"x":20.016,"y":44.016,"w":8.543,"h":1.496,"clr":1},{"x":28.566,"y":44.016,"w":7.2,"h":1.5,"clr":1},{"x":31.266,"y":44.766,"w":4.5,"h":0.75,"clr":1},{"x":5.616,"y":45.516,"w":7.2,"h":1.5,"clr":1},{"x":12.816,"y":45.516,"w":11.25,"h":1.5,"clr":1},{"x":24.066,"y":45.516,"w":4.5,"h":1.5,"clr":1},{"x":28.566,"y":45.516,"w":3.15,"h":1.5,"clr":1},{"x":31.716,"y":45.516,"w":4.05,"h":1.5,"clr":1},{"x":5.616,"y":47.016,"w":18.9,"h":0.75,"clr":1},{"x":5.616,"y":47.766,"w":18.9,"h":0.75,"clr":1},{"x":24.516,"y":47.016,"w":11.25,"h":0.75,"clr":1},{"x":24.516,"y":47.766,"w":11.25,"h":0.75,"clr":1}],"Texts":[{"x":2.094,"y":0.23399999999999999,"w":8.134,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040 (2013) ","S":-1,"TS":[0,9.7,0,0]}]},{"x":34.3,"y":0.2749999999999999,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.426,"y":0.274,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":10,"TS":[0,14,1,0]}]},{"x":2.094,"y":1.412,"w":4.335,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Tax and ","S":10,"TS":[0,14,1,0]}]},{"x":2.094,"y":2.251,"w":3.445,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Credits","S":10,"TS":[0,14,1,0]}]},{"x":4.164,"y":3.9850000000000003,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,15,0,0]}]},{"x":5.588,"y":1.123,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"38 ","S":-1,"TS":[0,11,1,0]}]},{"x":7.044,"y":1.123,"w":20.284,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Amount from line 37 (adjusted gross income) ","S":-1,"TS":[0,11,0,0]}]},{"x":17.844,"y":1.123,"w":21,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"x":29.041,"y":1.123,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"38 ","S":-1,"TS":[0,11,1,0]}]},{"x":5.588,"y":1.8730000000000002,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"39a ","S":-1,"TS":[0,11,1,0]}]},{"x":7.044,"y":1.935,"w":3.149,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check ","S":-1,"TS":[0,11,0,0]}]},{"x":7.044,"y":2.623,"w":1.074,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"if: ","S":-1,"TS":[0,11,0,0]}]},{"x":8.644,"y":2.303,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"{","S":-1,"TS":[2,15,0,0]}]},{"x":10.219,"y":1.8730000000000002,"w":1.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You","S":-1,"TS":[0,11,1,0]}]},{"x":11.092,"y":1.8730000000000002,"w":15.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" were born before January 2, 1949, ","S":-1,"TS":[0,11,0,0]}]},{"x":21.419,"y":1.8730000000000002,"w":2.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Blind.","S":-1,"TS":[0,11,0,0]}]},{"x":10.219,"y":2.623,"w":3.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11,1,0]}]},{"x":11.944,"y":2.623,"w":15.541,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" was born before January 2, 1949, ","S":-1,"TS":[0,11,0,0]}]},{"x":21.419,"y":2.623,"w":2.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Blind.","S":-1,"TS":[0,11,0,0]}]},{"x":22.794,"y":2.29,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[2,15,0,0]}]},{"x":23.244,"y":1.935,"w":6.113,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Total boxes ","S":-1,"TS":[0,10.2,1,0]}]},{"x":23.244,"y":2.623,"w":4.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"checked","S":-1,"TS":[0,10.2,1,0]}]},{"x":24.983,"y":4.357,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.7,0,0]}]},{"x":25.1,"y":4.263,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":25.298,"y":2.529,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":25.944,"y":2.623,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"39a ","S":-1,"TS":[0,11,1,0]}]},{"x":6.144,"y":3.373,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":7.044,"y":3.3550000000000004,"w":39.338,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If your spouse itemizes on a separate return or you were a dual-status alien, check here","S":-1,"TS":[0,10.65,0,0]}]},{"x":25.758,"y":5.089,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,8.1,0,0]}]},{"x":25.94,"y":3.261,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,8.1,0,0]}]},{"x":26.969,"y":3.373,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"39b ","S":-1,"TS":[0,11,1,0]}]},{"x":2.094,"y":3.4130000000000003,"w":4.89,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Standard ","S":-1,"TS":[0,10.5,1,0]}]},{"x":2.094,"y":3.8499999999999996,"w":5.445,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Deduction ","S":-1,"TS":[0,10.5,1,0]}]},{"x":2.094,"y":4.288,"w":1.666,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"for-","S":-1,"TS":[0,10.5,1,0]}]},{"x":2.094,"y":4.912,"w":6.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• People who ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.094,"y":5.35,"w":5.113,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"check any ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.094,"y":5.787,"w":5.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"box on line ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.094,"y":6.224,"w":5.095,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"39a or 39b ","S":-1,"TS":[0,10.5,0,0]}]},{"x":4.482,"y":6.224,"w":1.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.094,"y":6.662,"w":5.482,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"who can be ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.047,"y":7.146,"w":6.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"claimed as a ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.047,"y":7.583,"w":5.651,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"dependent, ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":8.068,"w":1.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"see ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":8.505,"w":5.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions. ","S":-1,"TS":[0,10.5,0,0]}]},{"x":1.9529999999999998,"y":9.458,"w":5.519,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• All others: ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":10.317,"w":4.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Single or ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":10.754,"w":6.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Married filing ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":11.192,"w":5.445,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"separately, ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":11.629,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"$6,100 ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":12.723,"w":6.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Married filing ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":13.16,"w":4.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"jointly or ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":13.597,"w":5.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Qualifying ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":14.035,"w":5.127,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"widow(er), ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":14.472,"w":4.17,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"$12,200 ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":15.706,"w":4.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Head of ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":16.144,"w":5.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"household, ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":16.581,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"$8,950 ","S":-1,"TS":[0,10.5,0,0]}]},{"x":11.711,"y":4.123,"w":8.242,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(from Schedule A) ","S":-1,"TS":[0,11,0,0]}]},{"x":15.519,"y":4.123,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"or ","S":-1,"TS":[0,11,1,0]}]},{"x":16.158,"y":4.123,"w":2.241,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"your ","S":-1,"TS":[0,11,0,0]}]},{"x":17.216,"y":4.123,"w":9.557,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"standard deduction ","S":-1,"TS":[0,11,1,0]}]},{"x":21.691,"y":4.123,"w":7.371,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see left margin) ","S":-1,"TS":[0,11,0,0]}]},{"x":25.844,"y":4.123,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.594,"y":4.123,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":29.041,"y":4.123,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"40","S":-1,"TS":[0,11,1,0]}]},{"x":5.588,"y":4.873,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"41 ","S":-1,"TS":[0,11,1,0]}]},{"x":7.044,"y":4.873,"w":12.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 40 from line 38 ","S":-1,"TS":[0,11,0,0]}]},{"x":14.094,"y":4.873,"w":28.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,11,0,0]}]},{"x":29.041,"y":4.873,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"41 ","S":-1,"TS":[0,11,1,0]}]},{"x":9.903,"y":7.356999999999999,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":9.948,"y":5.623,"w":43.886,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If line 38 is $150,000 or less, multiply $3,900 by the number on line 6d. Otherwise, see instructions","S":-1,"TS":[0,9.45,0,0]}]},{"x":27.733,"y":7.356999999999999,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.879999999999999,0,0]}]},{"x":29.041,"y":5.623,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"42 ","S":-1,"TS":[0,11,1,0]}]},{"x":10.79,"y":6.373,"w":30.64,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 42 from line 41. If line 42 is more than line 41, enter -0- ","S":-1,"TS":[0,11,0,0]}]},{"x":26.407,"y":6.373,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.157,"y":6.373,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":29.041,"y":6.373,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"43 ","S":-1,"TS":[0,11,1,0]}]},{"x":5.541,"y":6.935,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"44 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.997,"y":6.935,"w":2.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Tax ","S":-1,"TS":[0,10.2,1,0]}]},{"x":7.085,"y":7.5920000000000005,"w":8.15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check if any from:","S":-1,"TS":[0,10.2,0,0]}]},{"x":10.953,"y":7.5920000000000005,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11,1,0]}]},{"x":12.328,"y":7.5920000000000005,"w":6.132,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form(s) 8814 ","S":-1,"TS":[0,11,0,0]}]},{"x":10.953,"y":8.248,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":10.972,"y":9.091,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,1,0]}]},{"x":28.947,"y":8.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"44 ","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":9.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"45 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":9.607,"w":12.17,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Alternative minimum tax ","S":-1,"TS":[0,11,1,0]}]},{"x":12.637,"y":9.607,"w":16.412,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions). Attach Form 6251 ","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":9.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"45 ","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":10.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"46 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":10.357,"w":9.171,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 44 and 45 ","S":-1,"TS":[0,11,0,0]}]},{"x":11.75,"y":10.357,"w":33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................... ","S":-1,"TS":[0,11,0,0]}]},{"x":27.704,"y":10.263,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":28.947,"y":10.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"46 ","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":11.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"47 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.949,"y":11.107,"w":21.467,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Foreign tax credit. Attach Form 1116 if required ","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":11.107,"w":6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":11.107,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"47 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":11.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"48 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":11.866,"w":29.304,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Credit for child and dependent care expenses. Attach Form 2441 ","S":-1,"TS":[0,10.5,0,0]}]},{"x":21.747,"y":11.857,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"48 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":12.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"49 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.949,"y":12.607,"w":19.025,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Education credits from Form 8863, line 19 ","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":12.607,"w":7.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":12.607,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"49 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":13.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"50 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":13.357,"w":26.081,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Retirement savings contributions credit. Attach Form 8880","S":-1,"TS":[0,11.4,0,0]}]},{"x":21.747,"y":13.357,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"50 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":14.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"51 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":14.107,"w":22.264,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Child tax credit. Attach Schedule 8812, if required","S":-1,"TS":[0,11.24,0,0]}]},{"x":18.5,"y":14.107,"w":4.287,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...","S":-1,"TS":[0,11.4,0,0]}]},{"x":21.747,"y":14.107,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"51 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":14.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"52 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.949,"y":14.857,"w":20.134,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Residential energy credits. Attach Form 5695","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":14.857,"w":6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":14.857,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"52 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":15.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"53 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.967,"y":15.607,"w":11.318,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other credits from Form: ","S":-1,"TS":[0,9.8,0,0]}]},{"x":11.9,"y":15.607,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11,1,0]}]},{"x":13,"y":15.582,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3800 ","S":-1,"TS":[0,11,0,0]}]},{"x":15.099,"y":15.597000000000001,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":16.164,"y":15.629000000000001,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8801 ","S":-1,"TS":[0,11,0,0]}]},{"x":18.12,"y":15.631,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"c ","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":15.607,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"53","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":16.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"54 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":16.357,"w":18.135,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 47 through 53. These are your ","S":-1,"TS":[0,11,0,0]}]},{"x":15.268,"y":16.357,"w":5.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"total credits ","S":-1,"TS":[0,11,1,0]}]},{"x":19.25,"y":16.357,"w":18,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":16.357,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"54","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":17.045,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"55 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":17.045,"w":30.64,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 54 from line 46. If line 54 is more than line 46, enter -0- ","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":17.045,"w":10.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...... ","S":-1,"TS":[0,11,0,0]}]},{"x":27.704,"y":16.951,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":28.947,"y":17.107,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"55","S":-1,"TS":[0,11,1,0]}]},{"x":2,"y":18.138,"w":3.223,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Other ","S":-1,"TS":[0,16,1,0]}]},{"x":2,"y":19.038,"w":3.113,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Taxes ","S":-1,"TS":[0,16,1,0]}]},{"x":5.494,"y":17.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"56 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":17.857,"w":19.023,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Self-employment tax. Attach Schedule SE ","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":17.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"56 ","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":18.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"57 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":18.607,"w":25.3,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Unreported social security and Medicare tax from Form: ","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":18.607,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11,1,0]}]},{"x":21.325,"y":18.607,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4137 ","S":-1,"TS":[0,11,0,0]}]},{"x":23.6,"y":18.607,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":24.925,"y":18.607,"w":2.78,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8919 .","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":18.607,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":18.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"57 ","S":-1,"TS":[0,11,1,0]}]},{"x":5.541,"y":19.826,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"58 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.997,"y":19.831,"w":39.916,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Additional tax on IRAs, other qualified retirement plans, etc. Attach Form 5329 if required ","S":-1,"TS":[0,10.7,0,0]}]},{"x":26.798,"y":19.831,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":27.548,"y":19.831,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":28.994,"y":19.826,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"58","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":20.951,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"59a ","S":-1,"TS":[0,11,1,0]}]},{"x":28.804,"y":20.951,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"59a","S":-1,"TS":[0,11,1,0]}]},{"x":6.05,"y":21.701,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":28.794,"y":21.701,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"59b","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":20.956,"w":21.135,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Household employment taxes from Schedule H","S":-1,"TS":[0,10.7,0,0]}]},{"x":6.948,"y":21.706,"w":30.787,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"First-time homebuyer credit repayment. Attach Form 5405 if required","S":-1,"TS":[0,10.7,0,0]}]},{"x":22.248,"y":21.706,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":22.998,"y":21.706,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":23.748,"y":21.706,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":24.498,"y":21.706,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":25.248,"y":21.706,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":25.997,"y":21.706,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":26.747,"y":21.706,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":27.497,"y":21.706,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":5.494,"y":22.451,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"60 ","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":22.451,"w":5.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxes from:","S":-1,"TS":[0,11,0,0]}]},{"x":10.1,"y":22.451,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11,1,0]}]},{"x":11.364,"y":22.426,"w":4.836,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 8959","S":-1,"TS":[0,10.04,0,0]}]},{"x":13.7,"y":22.451,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":14.955,"y":22.426,"w":4.836,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 8960","S":-1,"TS":[0,10.04,0,0]}]},{"x":17.338,"y":22.451,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"c ","S":-1,"TS":[0,11,0,0]}]},{"x":18.576,"y":22.426,"w":11.594,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Instructions; enter code(s)","S":-1,"TS":[0,10.68,0,0]}]},{"x":28.947,"y":22.451,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"60","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":23.201,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"61","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":23.201,"w":16.598,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 55 through 60. This is your ","S":-1,"TS":[0,11,0,0]}]},{"x":14.499,"y":23.201,"w":4.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"total tax ","S":-1,"TS":[0,11,1,0]}]},{"x":17.75,"y":23.201,"w":19.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":-1,"TS":[0,11,0,0]}]},{"x":27.249,"y":23.201,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.527,"y":22.357,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.667,"y":23.107,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":28.947,"y":23.201,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"61","S":-1,"TS":[0,11,1,0]}]},{"x":2,"y":24.04,"w":5.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Payments ","S":10,"TS":[0,14,1,0]}]},{"x":5.494,"y":23.951,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"62","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":23.951,"w":24.914,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Federal income tax withheld from Forms W-2 and 1099 ","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":23.951,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":23.951,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":23.951,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"62","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":24.701,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"63","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":24.701,"w":30.458,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2013 estimated tax payments and amount applied from 2012 return ","S":-1,"TS":[0,10.36,0,0]}]},{"x":21.747,"y":24.701,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"63","S":-1,"TS":[0,11,1,0]}]},{"x":2,"y":25.234,"w":6.242,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you have a ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":25.797,"w":4.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"qualifying ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":26.359,"w":6.039,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"child, attach ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":26.922,"w":6.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule EIC. ","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.494,"y":25.451,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"64a","S":-1,"TS":[0,11,1,0]}]},{"x":6.941,"y":25.451,"w":13.059,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Earned income credit (EIC) ","S":-1,"TS":[0,11,1,0]}]},{"x":14,"y":25.451,"w":15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11,0,0]}]},{"x":21.604,"y":25.451,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"64a ","S":-1,"TS":[0,11,1,0]}]},{"x":6.05,"y":26.201,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":26.201,"w":14.762,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Nontaxable combat pay election ","S":-1,"TS":[0,10.2,0,0]}]},{"x":14.394,"y":26.201,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"64b ","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":26.951,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"65","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":26.951,"w":22.061,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Additional child tax credit. Attach Schedule 8812 ","S":-1,"TS":[0,10.6,0,0]}]},{"x":17.751,"y":26.951,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":18.5,"y":26.951,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":19.251,"y":26.951,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":20.001,"y":26.951,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":20.45,"y":26.951,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" .","S":-1,"TS":[0,10.6,0,0]}]},{"x":21.747,"y":26.951,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"65","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":27.701,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"66","S":-1,"TS":[0,11,1,0]}]},{"x":6.949,"y":27.701,"w":23.1,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"American opportunity credit from Form 8863, line 8 ","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":27.701,"w":6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":27.701,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"66","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":28.455,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"67","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":28.451,"w":4.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Reserved .","S":-1,"TS":[0,11.32,0,0]}]},{"x":10.25,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":11,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":11.75,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":12.499,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":13.249,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":13.999,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":14.749,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":15.499,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":16.249,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":16.998,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":17.748,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":18.498,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":19.248,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":19.998,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":20.748,"y":28.451,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":21.747,"y":28.455,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"67","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":29.205,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"68","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":29.201,"w":20.299,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Amount paid with request for extension to file","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":29.201,"w":7.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":29.201,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"68","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":29.955,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"69","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":29.954,"w":22.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Excess social security and tier 1 RRTA tax withheld","S":-1,"TS":[0,10.65,0,0]}]},{"x":17.75,"y":29.954,"w":7.355,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ....","S":-1,"TS":[0,11.16,0,0]}]},{"x":21.747,"y":29.954,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"69","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":30.701,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"70","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":30.701,"w":21.559,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Credit for federal tax on fuels. Attach Form 4136","S":-1,"TS":[0,11.16,0,0]}]},{"x":18.5,"y":30.701,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":19.25,"y":30.701,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":20,"y":30.701,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":20.751,"y":30.701,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":21.747,"y":30.701,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"70","S":-1,"TS":[0,11,1,0]}]},{"x":5.494,"y":31.451,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"71","S":-1,"TS":[0,11,1,0]}]},{"x":6.95,"y":31.451,"w":8.724,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Credits from Form: ","S":-1,"TS":[0,9.4,0,0]}]},{"x":10.55,"y":31.451,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11,1,0]}]},{"x":11.794,"y":31.451,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2439 ","S":-1,"TS":[0,11,0,0]}]},{"x":13.693,"y":31.441000000000003,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":14.538,"y":31.451,"w":4.222,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Reserved","S":-1,"TS":[0,7.8,0,0]}]},{"x":16.032,"y":31.451,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c ","S":-1,"TS":[0,11,1,0]}]},{"x":17.207,"y":31.451,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8885 ","S":-1,"TS":[0,11,0,0]}]},{"x":18.65,"y":31.451,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d ","S":-1,"TS":[0,11,1,0]}]},{"x":21.747,"y":31.451,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"71","S":-1,"TS":[0,11,1,0]}]},{"x":5.26,"y":32.56,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"72","S":-1,"TS":[0,11,1,0]}]},{"x":6.716,"y":32.56,"w":25.64,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 62, 63, 64a, and 65 through 71. These are your ","S":-1,"TS":[0,11,0,0]}]},{"x":18.348,"y":32.56,"w":7.335,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"total payments ","S":-1,"TS":[0,11,1,0]}]},{"x":23.516,"y":32.56,"w":7.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"x":27.015,"y":32.56,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.528,"y":31.295,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.432,"y":32.466,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":28.713,"y":32.623,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"72","S":-1,"TS":[0,11,1,0]}]},{"x":1.766,"y":33.399,"w":3.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Refund ","S":10,"TS":[0,14,1,0]}]},{"x":1.766,"y":34.963,"w":7.372,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Direct deposit? ","S":2,"TS":[0,10,0,0]}]},{"x":1.766,"y":35.488,"w":2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"See ","S":2,"TS":[0,10,0,0]}]},{"x":1.766,"y":36.013,"w":5.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions. ","S":2,"TS":[0,10,0,0]}]},{"x":5.26,"y":33.373,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"73","S":-1,"TS":[0,11,1,0]}]},{"x":6.716,"y":33.373,"w":36.717,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If line 72 is more than line 61, subtract line 61 from line 72. This is the amount you ","S":-1,"TS":[0,11.16,0,0]}]},{"x":23.316,"y":33.373,"w":4.446,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"overpaid ","S":-1,"TS":[0,11.16,1,0]}]},{"x":28.713,"y":33.373,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"73","S":-1,"TS":[0,11,1,0]}]},{"x":5.26,"y":34.123,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"74a","S":-1,"TS":[0,11,1,0]}]},{"x":6.716,"y":34.123,"w":12.485,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Amount of line 73 you want ","S":-1,"TS":[0,11,0,0]}]},{"x":12.396,"y":34.123,"w":7.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"refunded to you.","S":-1,"TS":[0,11,1,0]}]},{"x":16.107,"y":34.123,"w":16.635,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" If Form 8888 is attached, check here","S":-1,"TS":[0,11,0,0]}]},{"x":26.529,"y":34.029,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":28.569,"y":34.123,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"74a ","S":-1,"TS":[0,11,1,0]}]},{"x":4.953,"y":34.706,"w":1.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a\u0001","S":51,"TS":[0,9,0,0]}]},{"x":4.953,"y":35.518,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":5.816,"y":34.873,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":6.716,"y":34.873,"w":7.466,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Routing number ","S":-1,"TS":[0,11,0,0]}]},{"x":19.901,"y":34.779,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":20.51,"y":33.607,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":20.38,"y":34.873,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c ","S":-1,"TS":[0,10.2,1,0]}]},{"x":20.764,"y":34.873,"w":2.76,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Type: ","S":-1,"TS":[0,10.2,0,0]}]},{"x":22.891,"y":34.873,"w":4.223,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Checking","S":-1,"TS":[0,10.2,0,0]}]},{"x":25.025,"y":33.607,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":26.041,"y":34.873,"w":3.537,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Savings","S":-1,"TS":[0,10.2,0,0]}]},{"x":5.816,"y":35.619,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d ","S":-1,"TS":[0,11,1,0]}]},{"x":6.716,"y":35.623,"w":7.429,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Account number","S":-1,"TS":[0,11,0,0]}]},{"x":5.26,"y":36.369,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"75","S":-1,"TS":[0,11,1,0]}]},{"x":6.716,"y":36.369,"w":12.485,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Amount of line 73 you want ","S":-1,"TS":[0,10.52,0,0]}]},{"x":12.396,"y":36.369,"w":16.339,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"applied to your 2014 estimated tax","S":-1,"TS":[0,10.52,1,0]}]},{"x":20.52,"y":35.104,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":20.424,"y":36.275,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":21.513,"y":36.34,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"75","S":-1,"TS":[0,11,1,0]}]},{"x":1.766,"y":37.037,"w":4.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Amount ","S":-1,"TS":[0,13.5,1,0]}]},{"x":1.766,"y":37.749,"w":4.557,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You Owe ","S":-1,"TS":[0,13.5,1,0]}]},{"x":5.26,"y":37.06,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"76","S":-1,"TS":[0,11,1,0]}]},{"x":6.716,"y":37.06,"w":8.334,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Amount you owe.","S":-1,"TS":[0,11,1,0]}]},{"x":10.614,"y":37.06,"w":33.174,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Subtract line 72 from line 61. For details on how to pay, see instructions ","S":-1,"TS":[0,11,0,0]}]},{"x":27.685,"y":35.795,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.589,"y":36.967,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":28.713,"y":37.123,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"76","S":-1,"TS":[0,11,1,0]}]},{"x":5.26,"y":37.873,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"77","S":-1,"TS":[0,11,1,0]}]},{"x":6.716,"y":37.873,"w":17.781,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Estimated tax penalty (see instructions) ","S":-1,"TS":[0,11,0,0]}]},{"x":16.016,"y":37.873,"w":10.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"x":21.513,"y":37.873,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"77","S":-1,"TS":[0,11,1,0]}]},{"x":1.766,"y":38.9,"w":5.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Third Party ","S":-1,"TS":[0,13.4,1,0]}]},{"x":1.766,"y":39.65,"w":4.724,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Designee ","S":-1,"TS":[0,13.4,1,0]}]},{"x":5.816,"y":38.623,"w":40.152,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you want to allow another person to discuss this return with the IRS (see instructions)?","S":-1,"TS":[0,11,0,0]}]},{"x":27.391,"y":38.623,"w":2.335,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes. ","S":-1,"TS":[0,11,1,0]}]},{"x":28.558,"y":38.623,"w":7.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete below. ","S":-1,"TS":[0,11,0,0]}]},{"x":34.141,"y":38.623,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,1,0]}]},{"x":5.816,"y":39.551,"w":5.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Designee’s ","S":2,"TS":[0,10,0,0]}]},{"x":5.816,"y":40.141,"w":3.039,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"name ","S":2,"TS":[0,10,0,0]}]},{"x":7.145,"y":40.047,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":16.924,"y":39.551,"w":3.427,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Phone ","S":2,"TS":[0,10,0,0]}]},{"x":16.924,"y":40.141,"w":1.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"no. ","S":2,"TS":[0,10,0,0]}]},{"x":17.783,"y":40.047,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":25.166,"y":39.551,"w":10.167,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Personal identification ","S":2,"TS":[0,10,0,0]}]},{"x":25.166,"y":40.141,"w":10.023,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"number (PIN) ","S":2,"TS":[0,10,0,0]}]},{"x":29.551,"y":40.047,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":1.766,"y":40.876,"w":2.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Sign ","S":-1,"TS":[0,16,1,0]}]},{"x":1.766,"y":41.626,"w":2.501,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Here ","S":-1,"TS":[0,16,1,0]}]},{"x":1.766,"y":42.575,"w":7.928,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Joint return? See ","S":-1,"TS":[0,9.3,0,0]}]},{"x":1.766,"y":43.1,"w":6.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions. ","S":-1,"TS":[0,9.3,0,0]}]},{"x":1.766,"y":43.625,"w":7.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Keep a copy for ","S":-1,"TS":[0,9.3,0,0]}]},{"x":1.766,"y":44.15,"w":6.204,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"your records. ","S":-1,"TS":[0,9.3,0,0]}]},{"x":5.815,"y":42.266,"w":6.797,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your signature ","S":2,"TS":[0,10,0,0]}]},{"x":16.866,"y":42.266,"w":2.371,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date ","S":2,"TS":[0,10,0,0]}]},{"x":20.016,"y":42.266,"w":7.668,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your occupation ","S":2,"TS":[0,10,0,0]}]},{"x":28.566,"y":42.266,"w":10.468,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Daytime phone number","S":2,"TS":[0,10,0,0]}]},{"x":5.815,"y":43.766,"w":16.151,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Spouse’s signature. If a joint return, ","S":2,"TS":[0,10,0,0]}]},{"x":12.819,"y":43.766,"w":2.444,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"both ","S":8,"TS":[0,10,1,0]}]},{"x":13.826,"y":43.766,"w":4.91,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"must sign. ","S":2,"TS":[0,10,0,0]}]},{"x":5.197,"y":42.262,"w":0.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"F","S":-1,"TS":[0,38.9996,0,0],"RA":90}]},{"x":16.866,"y":43.766,"w":2.371,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date ","S":2,"TS":[0,10,0,0]}]},{"x":20.016,"y":43.766,"w":9.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Spouse’s occupation","S":2,"TS":[0,10,0,0]}]},{"x":28.566,"y":43.766,"w":18.318,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If the IRS sent you an Identity Protection ","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":28.566,"y":44.203,"w":5.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"PIN, enter it ","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":28.566,"y":44.641,"w":6.482,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"here (see inst.)","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":1.766,"y":45.648,"w":2.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Paid ","S":10,"TS":[0,14,1,0]}]},{"x":1.766,"y":46.398,"w":4.669,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Preparer ","S":10,"TS":[0,14,1,0]}]},{"x":1.766,"y":47.148,"w":4.613,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Use Only ","S":10,"TS":[0,14,1,0]}]},{"x":5.803,"y":45.234,"w":12.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Print/Type preparer’s name ","S":2,"TS":[0,10,0,0]}]},{"x":13.016,"y":45.266,"w":9.315,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Preparer’s signature ","S":2,"TS":[0,10,0,0]}]},{"x":24.066,"y":45.266,"w":2.371,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date ","S":2,"TS":[0,10,0,0]}]},{"x":28.566,"y":45.603,"w":6.447,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check if ","S":2,"TS":[0,10,0,0]}]},{"x":28.566,"y":46.041,"w":6.353,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"x":31.716,"y":45.234,"w":2.481,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" PTIN","S":2,"TS":[0,10,0,0]}]},{"x":5.803,"y":46.891,"w":6.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm’s name ","S":2,"TS":[0,10,0,0]}]},{"x":8.827,"y":46.828,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":5.803,"y":47.641,"w":6.909,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm’s address ","S":2,"TS":[0,10,0,0]}]},{"x":8.826,"y":47.578,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":24.516,"y":46.891,"w":5.186,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm's EIN ","S":2,"TS":[0,10,0,0]}]},{"x":26.784,"y":46.828,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":24.516,"y":47.641,"w":4.835,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Phone no. ","S":2,"TS":[0,10,0,0]}]},{"x":31.61,"y":48.341,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":32.752,"y":48.341,"w":2.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1040 ","S":10,"TS":[0,14,1,0]}]},{"x":34.316,"y":48.341,"w":3.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(2013) ","S":2,"TS":[0,10,0,0]}]},{"x":28.156,"y":7.327999999999999,"w":112.728,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Click \"Do the math\"","S":-1,"TS":[0,16,1,0]}]},{"x":7.837999999999999,"y":6.975,"w":8.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions). ","S":-1,"TS":[0,10.2,0,0]}]},{"x":11.634,"y":32.003,"w":53.36,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Taxpayer 8885","S":-1,"TS":[0,11,0,0]}]},{"x":16.939,"y":32.049,"w":47.144,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Spouse 8885","S":-1,"TS":[0,11,0,0]}]},{"x":17.613,"y":20.958,"w":57.352,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Taxpayer Sch H","S":-1,"TS":[0,11,0,0]}]},{"x":22.823,"y":20.86,"w":51.136,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Spouse Sch H","S":-1,"TS":[0,11,0,0]}]},{"x":7.738,"y":20.426,"w":74.256,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Taxpayer Copy 5329","S":-1,"TS":[0,11,0,0]}]},{"x":14.416,"y":20.422,"w":68.04,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Spouse Copy 5329","S":-1,"TS":[0,11,0,0]}]},{"x":7.729,"y":19.112,"w":53.36,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Taxpayer 4137","S":-1,"TS":[0,11,0,0]}]},{"x":12.902,"y":19.117,"w":47.144,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Spouse 4137","S":-1,"TS":[0,11,0,0]}]},{"x":18.738,"y":19.114,"w":53.36,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Taxpayer 8919","S":-1,"TS":[0,11,0,0]}]},{"x":23.698,"y":19.126,"w":47.144,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Spouse 8919","S":-1,"TS":[0,11,0,0]}]},{"x":16.73,"y":17.799,"w":33.344,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,11,0,0]}]},{"x":20.635,"y":17.813,"w":27.128,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11,0,0]}]},{"x":19.167,"y":8.289,"w":27.128,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11,0,0]}]},{"x":27.875,"y":8.031,"w":126.708,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"before calculating tax.","S":-1,"TS":[0,16,1,0]}]},{"x":17.089,"y":7.586,"w":27.568,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Amount","S":-1,"TS":[0,11,0,0]}]},{"x":6.91,"y":32,"w":38.68,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Form 2439","S":-1,"TS":[0,11,0,0]}]},{"x":5.588,"y":4.123,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"40","S":-1,"TS":[0,11,1,0]}]},{"x":6.905,"y":4.123,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,1,0]}]},{"x":7.044,"y":4.123,"w":4.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Itemized ","S":-1,"TS":[0,11,1,0]}]},{"x":9.183,"y":4.123,"w":5.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"deductions ","S":-1,"TS":[0,11,1,0]}]},{"x":5.588,"y":5.623,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"42","S":-1,"TS":[0,11,1,0]}]},{"x":6.905,"y":5.623,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,1,0]}]},{"x":7.044,"y":5.623,"w":5.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Exemptions.","S":-1,"TS":[0,11,1,0]}]},{"x":5.588,"y":6.373,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"43","S":-1,"TS":[0,11,1,0]}]},{"x":6.144,"y":6.373,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,1,0]}]},{"x":7.044,"y":6.373,"w":8.337,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Taxable income. ","S":-1,"TS":[0,11,1,0]}]},{"x":12.328,"y":8.248,"w":4.836,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 4972","S":-1,"TS":[0,11,0,0]}]},{"x":14.746,"y":8.248,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":14.948,"y":8.248,"w":4.129,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxpayer","S":-1,"TS":[0,11,0,0]}]},{"x":5.816,"y":40.861,"w":68.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Under penalties of perjury, I declare that I have examined this return and accompanying schedules and statements, and to the best of my knowledge and","S":-1,"TS":[0,9.5,0,0]}]},{"x":5.816,"y":41.348,"w":68.656,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"belief, they are true, correct, and complete. Declaration of preparer (other than taxpayer) is based on all information of which preparer has any knowledge.","S":-1,"TS":[0,9.5,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":1915,"AM":1024,"TU":"Name","x":6.693,"y":0.285,"w":17.522,"h":0.852},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":1916,"AM":1024,"TU":"Your social security number. 9 digits.","x":25.407,"y":0.34,"w":6.75,"h":0.847},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":1917,"AM":1024,"TU":"Page 2. Tax and credits. Line 38. Amount from line 37 (adjusted gross income). Dollars.","x":30.192,"y":1.288,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N35A","EN":0},"TI":1920,"AM":1024,"TU":"Line 39. a. Total Boxes Checked.","x":27.492,"y":2.121,"w":1.318,"h":1.344},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHA"}},"id":{"Id":"A507","EN":0},"TI":1923,"AM":0,"x":26.608,"y":4.142,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":1925,"AM":0,"TU":"Line 40. Itemized deductions (from Schedule A) or your standard deduction (see instructions). Dollars.","x":30.192,"y":4.288,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":1926,"AM":1024,"TU":"Line 41. Subtract line 40 from line 38. Dollars.","x":30.192,"y":5.038,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":1927,"AM":0,"TU":"Line 42. Exemptions. If line 38 is $150,000 or less, multiply $3,900 by the number on line 6d. Otherwise, see instructions. Dollars.","x":30.192,"y":5.788,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":1928,"AM":1024,"TU":"Line 43. Taxable income. Subtract line 42 from line 41. If line 42 is more than line 41, enter zero. Dollars. ","x":30.192,"y":6.538,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8814"}},"id":{"Id":"A553","EN":0},"TI":1929,"AM":0,"x":15.672,"y":7.65,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT8814","EN":0},"TI":1932,"AM":0,"TU":"Line 44. C. Form (Enter number).","x":18.937,"y":7.766,"w":1.119,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4972T"}},"id":{"Id":"A563","EN":0},"TI":1933,"AM":0,"x":17.361,"y":8.269,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4972S"}},"id":{"Id":"A581","EN":0},"TI":1934,"AM":0,"x":21.232,"y":8.296,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40FM","EN":0},"TI":1936,"AM":0,"TU":"Line 44. C. Form (Enter number).","x":12.485,"y":9.185,"w":1.8,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L40T","EN":0},"TI":1937,"AM":0,"x":26.155,"y":8.96,"w":1.119,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40W","EN":0},"TI":1938,"AM":0,"TU":"Line 44. C. Form (Enter number).","x":27.491,"y":8.961,"w":1.119,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":1939,"AM":0,"TU":"Line 44. Tax. Dollars.","x":30.15,"y":9,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6251"}},"id":{"Id":"A483","EN":0},"TI":1940,"AM":0,"x":20.801,"y":9.775,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":1941,"AM":1024,"TU":"Line 45. Alternative minimum tax (see instructions). Attach Form 6251. Dollars.","x":30.15,"y":9.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":1942,"AM":1024,"TU":"Line 46. Add lines 44 and 45. Dollars.","x":30.15,"y":10.473,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F1116"}},"id":{"Id":"A481","EN":0},"TI":1943,"AM":0,"x":17.407,"y":11.251,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L43","EN":0},"TI":1944,"AM":0,"TU":"Line 47. Foreign tax credit. Attach Form 1116 if required. Dollars.","x":22.95,"y":11.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2441"}},"id":{"Id":"A484","EN":0},"TI":1945,"AM":0,"x":19.889,"y":12.03,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L44","EN":0},"TI":1946,"AM":1024,"TU":"Line 48. Credit for child and dependent care expenses. Attach Form 2441. Dollars.","x":22.95,"y":12,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8863"}},"id":{"Id":"A489","EN":0},"TI":1947,"AM":0,"x":16.432,"y":12.664,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L46","EN":0},"TI":1948,"AM":1024,"TU":"Line 49. Education credits from Form 8863, line 19. Dollars.","x":22.95,"y":12.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8880"}},"id":{"Id":"A482","EN":0},"TI":1949,"AM":0,"x":19.947,"y":13.429,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RSCCRED","EN":0},"TI":1950,"AM":1024,"TU":"Line 50. Retirement savings contributions credit. Attach Form 8880. Dollars.","x":22.95,"y":13.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L47","EN":0},"TI":1951,"AM":0,"TU":"Line 51. Child tax credit. Attach Schedule 8812, if required. Dollars.","x":22.95,"y":14.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F5695"}},"id":{"Id":"A576","EN":0},"TI":1952,"AM":0,"x":16.919,"y":15.002,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RESENRGY","EN":0},"TI":1953,"AM":1024,"TU":"Line 52. Residential energy credits. Attach Form 5695. Dollars.","x":22.95,"y":15,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F3800"}},"id":{"Id":"A463","EN":0},"TI":1955,"AM":0,"x":14.253,"y":15.679,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8801"}},"id":{"Id":"A548","EN":0},"TI":1957,"AM":0,"x":17.319,"y":15.72,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L49FM","EN":0},"TI":1959,"AM":0,"TU":"Line 53. C. Form (Enter number).","x":19.78,"y":15.771,"w":1.8,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L49","EN":0},"TI":1960,"AM":0,"TU":"Line 53. Other Credits. Dollars.","x":22.95,"y":15.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L50","EN":0},"TI":1961,"AM":1024,"TU":"Line 54. Add lines 47 through 53. These are your total credits. Dollars.","x":30.15,"y":16.502,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L51","EN":0},"TI":1962,"AM":1024,"TU":"Line 55. Subtract line 54 from line 46. If line 54 is more than line 46, enter zero. Dollars. ","x":30.15,"y":17.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHSEST"}},"id":{"Id":"A536","EN":0},"TI":1963,"AM":0,"x":19.163,"y":17.997,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHSESS"}},"id":{"Id":"A537","EN":0},"TI":1964,"AM":0,"x":22.537,"y":17.942,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L52T","EN":0},"TI":1965,"AM":0,"TU":"Line 53. C. Form (Enter number).","x":25.925,"y":18.08,"w":2.74,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L52","EN":0},"TI":1966,"AM":0,"TU":"Line 56. Self-employment tax. Attach Schedule S E. Dollars.","x":30.15,"y":18,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L53","EN":0},"TI":1967,"AM":0,"TU":"Line 57. Unreported social security and Medicare Tax. Dollars. ","x":30.15,"y":18.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4137T"}},"id":{"Id":"A464","EN":0},"TI":1968,"AM":0,"x":11.271,"y":19.206,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4137S"}},"id":{"Id":"A547","EN":0},"TI":1969,"AM":0,"x":15.964,"y":19.327,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8919T"}},"id":{"Id":"A508","EN":0},"TI":1971,"AM":0,"x":22.283,"y":19.228,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8919S"}},"id":{"Id":"A516","EN":0},"TI":1973,"AM":0,"x":26.757,"y":19.172,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L54","EN":0},"TI":1974,"AM":0,"TU":"Line 58. Additional tax on I R A s, other qualified retirement plans, etcetera. Attach Form 5329 if required. Dollars.","x":30.205,"y":19.8,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F5329T"}},"id":{"Id":"A486","EN":0},"TI":1975,"AM":0,"x":12.545,"y":20.48,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F5329S"}},"id":{"Id":"A551","EN":0},"TI":1976,"AM":0,"x":18.601,"y":20.469,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L54W","EN":0},"TI":1977,"AM":0,"TU":"Line 53. C. Form (Enter number).","x":26.461,"y":20.126,"w":2.263,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHHT"}},"id":{"Id":"A560","EN":0},"TI":1978,"AM":0,"x":21.447,"y":20.897,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHHS"}},"id":{"Id":"A561","EN":0},"TI":1979,"AM":0,"x":26.096,"y":20.93,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L56","EN":0},"TI":1980,"AM":0,"TU":"Line 59a. Household employment taxes from Schedule H. Dollars","x":30.205,"y":20.932,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F5405"}},"id":{"Id":"A579","EN":0},"TI":1981,"AM":0,"x":22.436,"y":21.798,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTHCR","EN":0},"TI":1982,"AM":0,"TU":"Line 59b. First-time homebuyer credit repayment. Attach Form 5405 if required.\tDollars.","x":30.205,"y":21.845,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L57T","EN":0},"TI":1986,"AM":0,"TU":"Line 60. Instructions; Enter code(s).","x":24.965,"y":22.641,"w":3.395,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L57W","EN":0},"TI":1987,"AM":0,"TU":"Line 60. Dollars.","x":30.177,"y":22.596,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L57","EN":0},"TI":1988,"AM":1024,"TU":"Line 61. Add lines 55 through 60. This is your total tax. Dollars.","x":30.177,"y":23.345,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L58","EN":0},"TI":1989,"AM":0,"TU":"Line 62. Federal income tax withheld from Forms W-2 and 1099.","x":22.977,"y":24.096,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L59W","EN":0},"TI":1990,"AM":0,"TU":"Line 44. C. Form (Enter number).","x":19.261,"y":24.828,"w":1.119,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L59S","EN":0},"TI":1991,"AM":0,"TU":"Line 44. C. Form (Enter number).","x":20.448,"y":24.864,"w":1.119,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L59","EN":0},"TI":1992,"AM":0,"TU":"Line 63. 2013 estimated tax payments and amount applied from 2012 return. Dollars.","x":22.977,"y":24.846,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L60C","EN":0},"TI":1993,"AM":0,"TU":"Line 53. C. Form (Enter number).","x":14.142,"y":25.68,"w":2.263,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L60","EN":0},"TI":1994,"AM":0,"TU":"Line 64. a. Earned income credit (E I C). If you have a qualifying child, attach Schedule E I C. Dollars.","x":22.977,"y":25.595,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCOMBAT","EN":0},"TI":1995,"AM":0,"TU":"Line 64. b. Nontaxable combat pay election. Dollars.","x":15.777,"y":26.346,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8812"}},"id":{"Id":"A488","EN":0},"TI":1996,"AM":0,"x":18.125,"y":27.016,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L62","EN":0},"TI":1997,"AM":1024,"TU":"Line 65. Additional child tax credit. Attach schedule 8812. Dollars.","x":22.977,"y":27.096,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8863"}},"id":{"Id":"A569","EN":0},"TI":1998,"AM":0,"x":19.09,"y":27.873,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOPE","EN":0},"TI":1999,"AM":1024,"TU":"Line 66. American opportunity credit from Form 8863, line 8. Dollars.","x":22.977,"y":27.845,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L63","EN":0},"TI":2000,"AM":0,"TU":"Line 68. Amount paid with request for extension to file.","x":22.95,"y":29.307,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L61","EN":0},"TI":2001,"AM":0,"TU":"Line 69. Excess social security and tier 1 RRTA tax withheld. Dollars.","x":22.95,"y":30.057,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4136"}},"id":{"Id":"A577","EN":0},"TI":2002,"AM":0,"x":17.801,"y":30.831,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F4136AMT","EN":0},"TI":2003,"AM":1024,"TU":"Line 70. Credit for federal tax on fuels. Attach Form 4136. Dollars.","x":22.977,"y":30.846,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2439"}},"id":{"Id":"A562","EN":0},"TI":2004,"AM":0,"x":9.778,"y":32.143,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L64W","EN":0},"TI":2007,"AM":0,"x":30.162,"y":31.498,"w":1.811,"h":0.912,"PL":{"V":["IRC1341","NONE APPLY"],"D":["IRC1341","NONE"]},"V":"NONE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L64A","EN":0},"TI":2008,"AM":0,"TU":"Line 44. C. Form (Enter number).","x":32.657,"y":31.573,"w":1.963,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8885T"}},"id":{"Id":"A512","EN":0},"TI":2009,"AM":0,"x":15.338,"y":32.066,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L64","EN":0},"TI":2011,"AM":1024,"TU":"Line 71. Dollars.","x":22.977,"y":31.596,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8885S"}},"id":{"Id":"A513","EN":0},"TI":2012,"AM":0,"x":20.119,"y":32.187,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L65T","EN":0},"TI":2013,"AM":0,"x":23.677,"y":32.744,"w":2.15,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L65W","EN":0},"TI":2014,"AM":0,"x":26.064,"y":32.741,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L65","EN":0},"TI":2015,"AM":0,"TU":"Line 72. Add lines 62, 63, 64a, and 65 through 71. These are your total payments. Dollars.","x":30.123,"y":32.618,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L66","EN":0},"TI":2016,"AM":1024,"TU":"Refund. Line 73. If line 72 is more than line 61, subtract line 61 from line 72. This is the amount you overpaid. Dollars. ","x":29.959,"y":33.532,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8888"}},"id":{"Id":"A552","EN":0},"TI":2017,"AM":0,"x":25.318,"y":34.089,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L67A","EN":0},"TI":2019,"AM":1024,"TU":"Line 74. a. Dollars.","x":29.959,"y":34.282,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ROUTNO","EN":0},"TI":2020,"AM":0,"TU":"Line 74b. Routing number.","x":11.525,"y":35.033,"w":8.039,"h":0.833,"MV":"maxl:9"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCNO","EN":0},"TI":2023,"AM":0,"TU":"Line 74d. Account number.","x":11.488,"y":35.796,"w":15.329,"h":0.833,"MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L68","EN":0},"TI":2024,"AM":0,"TU":"Line 75. Amount of line 73 you want applied to your 2014 estimated tax. Dollars.","x":22.759,"y":36.624,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L69","EN":0},"TI":2025,"AM":1024,"TU":"Line 76. Amount you owe. Subtract line 72 from line 61. For details on how to pay, see instructions. Dollars.","x":29.959,"y":37.282,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L70","EN":0},"TI":2026,"AM":0,"TU":"Line 77. Estimated tax penalty (see instructions). Dollars.","x":22.759,"y":38.032,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESNAM","EN":0},"TI":2029,"AM":0,"TU":"Designee's name.","x":8.775,"y":39.901,"w":7.893,"h":1.023},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DESPH","EN":0},"TI":2030,"AM":0,"TU":"Designee's Phone number.","x":19.017,"y":39.939,"w":6.124,"h":1.038},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DESPIN","EN":0},"TI":2031,"AM":0,"TU":"Designee's Personal Identification Number (PIN).","x":30.971,"y":40.261,"w":4.296,"h":0.833,"MV":"99999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":2032,"AM":0,"TU":"Your occupation","x":20.052,"y":43.192,"w":6.964,"h":0.833},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DTPHO","EN":0},"TI":2033,"AM":0,"TU":"Daytime phone number","x":28.846,"y":43.149,"w":6.83,"h":0.896},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SOCC","EN":0},"TI":2034,"AM":0,"TU":"Spouse’s occupation","x":20.219,"y":44.632,"w":6.882,"h":0.905},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"IDTHEFT","EN":0},"TI":2035,"AM":0,"TU":"If the IRS sent you an Identity Protection PIN, enter it here (see instructions).","x":31.228,"y":44.718,"w":4.44,"h":0.833,"MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIG","EN":0},"TI":2036,"AM":1024,"x":12.912,"y":46.165,"w":9.253,"h":0.833,"V":"Not for use by paid preparers"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":2037,"AM":1024,"x":9.686,"y":47.101,"w":9.617,"h":0.833,"V":"Self-prepared"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A1","EN":0},"TI":1918,"AM":0,"TU":"Line 39. a. Check if: You were born before January 2, 1949.","x":9.617,"y":2.1,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A2","EN":0},"TI":1919,"AM":0,"TU":"Line 39. a. Check if: You are Blind.","x":20.867,"y":2.1,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A3","EN":0},"TI":1921,"AM":0,"TU":"Line 39. a. Check if: Spouse was born before January 2, 1949.","x":9.617,"y":2.85,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A4","EN":0},"TI":1922,"AM":0,"TU":"Line 39. a. Check if: Your spouse is Blind.","x":20.867,"y":2.85,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35BB","EN":0},"TI":1924,"AM":0,"TU":"Line 39. b. If your spouse itemizes on a separate return or you were a dual-status alien, check here.","x":28.067,"y":3.6,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L40BB","EN":0},"TI":1930,"AM":0,"TU":"Line 44. b. Form 4972.","x":11.687,"y":8.413,"w":0.533,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L40BA","EN":0},"TI":1931,"AM":0,"TU":"Line 44. Tax (see instructions). Check if any tax is from: a. Form(s) 8814.","x":11.726,"y":7.811,"w":0.565,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX962","EN":0},"TI":1935,"AM":0,"TU":"Line 53. B. Form 8801.","x":11.672,"y":9.18,"w":0.631,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L49BA","EN":0},"TI":1954,"AM":0,"TU":"Line 53. Other credits from: A. Form 3800.","x":12.6,"y":15.75,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L49BC","EN":0},"TI":1956,"AM":0,"TU":"Line 53. B. Form 8801.","x":15.873,"y":15.832,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L49BD","EN":0},"TI":1958,"AM":0,"TU":"Line 53. C. Form (number).","x":18.843,"y":15.771,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F4137BX","EN":0},"TI":1970,"AM":0,"x":20.78,"y":18.787,"w":0.568,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8919BX","EN":0},"TI":1972,"AM":0,"x":24.387,"y":18.765,"w":0.568,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX8959","EN":0},"TI":1983,"AM":1024,"x":10.886,"y":22.578,"w":0.67,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX8960","EN":0},"TI":1984,"AM":1024,"x":14.529,"y":22.578,"w":0.635,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXOTHTAX","EN":0},"TI":1985,"AM":0,"x":18.172,"y":22.613,"w":0.6,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L64BA","EN":0},"TI":2005,"AM":0,"x":11.324,"y":31.629,"w":0.6,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX8885","EN":0},"TI":2006,"AM":1024,"x":16.77,"y":31.685,"w":0.6,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L64FM","EN":0},"TI":2010,"AM":1024,"x":19.396,"y":31.561,"w":0.732,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8888","EN":0},"TI":2018,"AM":1024,"TU":"Line 74. a. Amount of line 73 you want refunded to you. If Form 8888 is attached, check here.","x":27.384,"y":34.282,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCC","EN":0},"TI":2021,"AM":0,"TU":"Account type","x":22.419,"y":35.115,"w":0.517,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCS","EN":0},"TI":2022,"AM":0,"TU":"Account type","x":25.577,"y":35.033,"w":0.49,"h":0.833,"checked":false}],"id":{"Id":"ACCRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PDDY","EN":0},"TI":2027,"AM":0,"TU":"Preparer discuss with IRS","x":26.911,"y":38.818,"w":0.517,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PDDN","EN":0},"TI":2028,"AM":0,"TU":"Preparer discuss with IRS","x":33.69,"y":38.818,"w":0.517,"h":0.833,"checked":false}],"id":{"Id":"PPDRB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F1040A.json b/test/data/fd/form/F1040A.json index 654e77b4..b7d29467 100755 --- a/test/data/fd/form/F1040A.json +++ b/test/data/fd/form/F1040A.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":80.397,"y":3.751,"w":1.5,"l":18.648},{"oc":"#221f1f","x":80.397,"y":4.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.147,"y":3.751,"w":1.5,"l":31.023},{"oc":"#221f1f","x":6.147,"y":6.001,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.084,"y":3.751,"w":1.5,"l":43.398},{"oc":"#221f1f","x":37.084,"y":6.001,"w":0.75,"l":43.398},{"oc":"#221f1f","x":80.397,"y":4.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.147,"y":6.001,"w":0.75,"l":31.023},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.127,"y":7.501,"w":0.75,"l":43.313},{"oc":"#221f1f","x":37.127,"y":6.001,"w":0.75,"l":43.313},{"oc":"#221f1f","x":80.397,"y":6.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.397,"y":7.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.397,"y":9.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":82.872,"y":9.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":65.674},{"oc":"#221f1f","x":6.147,"y":9.001,"w":0.75,"l":65.674},{"oc":"#221f1f","x":71.777,"y":9.001,"w":0.75,"l":8.663},{"oc":"#221f1f","x":71.777,"y":7.501,"w":0.75,"l":8.663},{"oc":"#221f1f","x":6.147,"y":9.001,"w":0.75,"l":74.336},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":74.336},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":38.448},{"oc":"#221f1f","x":6.147,"y":12.001,"w":0.75,"l":38.448},{"oc":"#221f1f","x":44.552,"y":12.001,"w":0.75,"l":24.75},{"oc":"#221f1f","x":44.552,"y":10.501,"w":0.75,"l":24.75},{"oc":"#221f1f","x":69.302,"y":12.001,"w":0.75,"l":11.138},{"oc":"#221f1f","x":69.302,"y":10.501,"w":0.75,"l":11.138},{"oc":"#221f1f","x":80.397,"y":9.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.397,"y":12.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":35.847,"y":15.001,"w":0.75,"l":23.598},{"oc":"#221f1f","x":84.109,"y":14.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.19,"y":15.001,"w":1.5,"l":92.813},{"oc":"#221f1f","x":18.522,"y":19.501,"w":0.75,"l":65.674},{"oc":"#221f1f","x":18.522,"y":17.251,"w":0.75,"l":26.073},{"oc":"#221f1f","x":44.509,"y":17.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":59.359,"y":17.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":72.972,"y":17.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":72.972,"y":19.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":18.522,"y":19.501,"w":0.75,"l":65.674},{"oc":"#221f1f","x":18.522,"y":20.251,"w":0.75,"l":65.674},{"oc":"#221f1f","x":18.522,"y":19.501,"w":0.75,"l":26.073},{"oc":"#221f1f","x":44.509,"y":19.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":59.359,"y":19.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":72.972,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":78.051,"y":20.157,"w":0.75,"l":1.547},{"oc":"#221f1f","x":78.051,"y":19.595,"w":0.75,"l":1.547},{"oc":"#221f1f","x":18.522,"y":20.251,"w":0.75,"l":65.674},{"oc":"#221f1f","x":18.522,"y":21.001,"w":0.75,"l":65.674},{"oc":"#221f1f","x":18.522,"y":20.251,"w":0.75,"l":26.073},{"oc":"#221f1f","x":44.509,"y":20.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":59.359,"y":20.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":72.972,"y":21.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":78.051,"y":20.907,"w":0.75,"l":1.547},{"oc":"#221f1f","x":78.051,"y":20.345,"w":0.75,"l":1.547},{"oc":"#221f1f","x":18.522,"y":21.001,"w":0.75,"l":65.674},{"oc":"#221f1f","x":18.522,"y":21.751,"w":0.75,"l":65.674},{"oc":"#221f1f","x":18.522,"y":21.001,"w":0.75,"l":26.073},{"oc":"#221f1f","x":44.509,"y":21.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":59.359,"y":21.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":72.972,"y":21.751,"w":0.75,"l":11.223},{"oc":"#221f1f","x":78.051,"y":21.657,"w":0.75,"l":1.547},{"oc":"#221f1f","x":78.051,"y":21.095,"w":0.75,"l":1.547},{"oc":"#221f1f","x":18.522,"y":21.751,"w":0.75,"l":65.674},{"oc":"#221f1f","x":18.522,"y":22.501,"w":0.75,"l":65.674},{"oc":"#221f1f","x":18.522,"y":21.751,"w":0.75,"l":26.073},{"oc":"#221f1f","x":44.509,"y":21.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":59.359,"y":21.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":72.972,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":78.051,"y":22.407,"w":0.75,"l":1.547},{"oc":"#221f1f","x":78.051,"y":21.845,"w":0.75,"l":1.547},{"oc":"#221f1f","x":18.522,"y":22.501,"w":0.75,"l":65.674},{"oc":"#221f1f","x":18.522,"y":23.251,"w":0.75,"l":65.674},{"oc":"#221f1f","x":18.522,"y":22.501,"w":0.75,"l":26.073},{"oc":"#221f1f","x":44.509,"y":22.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":59.359,"y":22.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":72.972,"y":23.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":78.051,"y":23.157,"w":0.75,"l":1.547},{"oc":"#221f1f","x":78.051,"y":22.595,"w":0.75,"l":1.547},{"oc":"#221f1f","x":18.522,"y":23.251,"w":0.75,"l":65.674},{"oc":"#221f1f","x":18.522,"y":24.001,"w":0.75,"l":65.674},{"oc":"#221f1f","x":18.522,"y":23.251,"w":0.75,"l":26.073},{"oc":"#221f1f","x":18.522,"y":24.001,"w":0.75,"l":26.073},{"oc":"#221f1f","x":44.509,"y":23.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":44.509,"y":24.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":59.402,"y":24.001,"w":0.75,"l":13.612},{"oc":"#221f1f","x":59.402,"y":23.251,"w":0.75,"l":13.612},{"oc":"#221f1f","x":72.972,"y":24.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":16.502,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":18.752,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":21.377,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":23.252,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.29,"y":25.314,"w":1.5,"l":3.712},{"oc":"#221f1f","x":95.29,"y":24.126,"w":1.5,"l":3.712},{"oc":"#221f1f","x":6.19,"y":25.501,"w":1.5,"l":77.963},{"oc":"#221f1f","x":84.109,"y":25.501,"w":1.5,"l":11.223},{"oc":"#221f1f","x":95.247,"y":25.501,"w":1.5,"l":3.798},{"oc":"#221f1f","x":18.565,"y":27.001,"w":0.75,"l":65.588},{"oc":"#221f1f","x":84.109,"y":27.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":23.515,"y":28.501,"w":0.75,"l":60.638},{"oc":"#221f1f","x":65.547,"y":28.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":18.565,"y":29.251,"w":0.75,"l":61.875},{"oc":"#221f1f","x":84.109,"y":28.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":23.515,"y":30.001,"w":0.75,"l":60.638},{"oc":"#221f1f","x":65.547,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":18.565,"y":30.751,"w":0.75,"l":61.875},{"oc":"#221f1f","x":84.109,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":18.565,"y":31.501,"w":0.75,"l":65.588},{"oc":"#221f1f","x":42.027,"y":31.501,"w":0.75,"l":11.204},{"oc":"#221f1f","x":42.027,"y":33.001,"w":0.75,"l":11.204},{"oc":"#221f1f","x":53.172,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":53.172,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":31.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":84.109,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":18.565,"y":33.001,"w":0.75,"l":65.588},{"oc":"#221f1f","x":42.034,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":42.034,"y":34.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":53.172,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":53.172,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":84.109,"y":34.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":18.565,"y":34.501,"w":0.75,"l":65.588},{"oc":"#221f1f","x":84.109,"y":34.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":36.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":18.565,"y":36.001,"w":0.75,"l":65.588},{"oc":"#221f1f","x":42.034,"y":36.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":42.034,"y":37.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":53.172,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":53.172,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":37.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":36.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":18.565,"y":37.501,"w":0.75,"l":65.588},{"oc":"#221f1f","x":84.109,"y":37.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":37.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":39.001,"w":1.5,"l":11.223},{"oc":"#221f1f","x":95.247,"y":39.001,"w":1.5,"l":3.798},{"oc":"#221f1f","x":6.19,"y":39.001,"w":1.5,"l":77.963},{"oc":"#221f1f","x":65.547,"y":39.001,"w":1.5,"l":11.223},{"oc":"#221f1f","x":76.684,"y":39.001,"w":1.5,"l":3.798},{"oc":"#221f1f","x":18.565,"y":40.501,"w":0.75,"l":47.025},{"oc":"#221f1f","x":65.547,"y":40.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":18.565,"y":41.251,"w":0.75,"l":47.025},{"oc":"#221f1f","x":65.547,"y":41.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":18.565,"y":42.001,"w":0.75,"l":47.025},{"oc":"#221f1f","x":61.834,"y":43.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":42.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.59,"y":43.501,"w":1.125,"l":14.85},{"oc":"#221f1f","x":18.565,"y":43.501,"w":0.75,"l":47.025},{"oc":"#221f1f","x":80.397,"y":44.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":18.565,"y":44.251,"w":0.75,"l":65.588},{"oc":"#221f1f","x":84.109,"y":44.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":44.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":45.751,"w":1.5,"l":68.231},{"oc":"#221f1f","x":74.209,"y":45.751,"w":1.5,"l":11.223},{"oc":"#221f1f","x":85.347,"y":45.751,"w":1.5,"l":13.698},{"oc":"#221f1f","x":65.547,"y":40.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":76.684,"y":40.501,"w":0.75,"l":3.798}],"VLines":[{"oc":"#221f1f","x":80.44,"y":3.72,"w":0.75,"l":0.797},{"oc":"#221f1f","x":37.127,"y":3.72,"w":0.75,"l":2.297},{"oc":"#221f1f","x":80.44,"y":3.72,"w":0.75,"l":2.297},{"oc":"#221f1f","x":37.127,"y":3.72,"w":0.75,"l":2.297},{"oc":"#221f1f","x":80.44,"y":4.485,"w":0.75,"l":1.547},{"dsh":1,"oc":"#221f1f","x":86.247,"y":5.251,"w":0.75,"l":0.625},{"dsh":1,"oc":"#221f1f","x":89.96,"y":5.251,"w":0.75,"l":0.625},{"oc":"#221f1f","x":37.127,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":6.001,"w":0.75,"l":1.5},{"oc":"#221f1f","x":37.127,"y":6.001,"w":0.75,"l":1.5},{"oc":"#221f1f","x":80.44,"y":5.985,"w":0.75,"l":1.531},{"dsh":1,"oc":"#221f1f","x":86.247,"y":6.751,"w":0.75,"l":0.625},{"dsh":1,"oc":"#221f1f","x":89.96,"y":6.751,"w":0.75,"l":0.625},{"oc":"#221f1f","x":71.777,"y":7.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":7.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":71.777,"y":7.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":80.44,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":44.552,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":10.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":44.552,"y":10.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":80.44,"y":10.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":69.302,"y":10.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":44.552,"y":17.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":59.402,"y":17.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":73.015,"y":17.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":44.552,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.598,"y":19.595,"w":0.75,"l":0.563},{"oc":"#221f1f","x":78.051,"y":19.595,"w":0.75,"l":0.563},{"oc":"#221f1f","x":44.552,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.598,"y":20.345,"w":0.75,"l":0.563},{"oc":"#221f1f","x":78.051,"y":20.345,"w":0.75,"l":0.563},{"oc":"#221f1f","x":44.552,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.598,"y":21.095,"w":0.75,"l":0.563},{"oc":"#221f1f","x":78.051,"y":21.095,"w":0.75,"l":0.563},{"oc":"#221f1f","x":44.552,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.598,"y":21.845,"w":0.75,"l":0.563},{"oc":"#221f1f","x":78.051,"y":21.845,"w":0.75,"l":0.563},{"oc":"#221f1f","x":44.552,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.598,"y":22.595,"w":0.75,"l":0.563},{"oc":"#221f1f","x":78.051,"y":22.595,"w":0.75,"l":0.563},{"oc":"#221f1f","x":44.552,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":73.015,"y":23.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.402,"y":23.251,"w":0.75,"l":0.75},{"oc":"#221f1f","x":99.002,"y":24.126,"w":1.5,"l":1.188},{"oc":"#221f1f","x":95.29,"y":24.126,"w":1.5,"l":1.188},{"oc":"#221f1f","x":95.29,"y":25.47,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.29,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.215,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":37.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":38.235,"w":0.75,"l":0.797},{"oc":"#221f1f","x":76.727,"y":38.97,"w":0.75,"l":0.797},{"oc":"#221f1f","x":76.727,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":41.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":43.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":44.227,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":39.72,"w":0.75,"l":0.797},{"oc":"#221f1f","x":56.824,"y":8.923,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.387,"y":8.985,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#fbedf1","x":18.317,"y":2.251,"w":81.18,"h":43.5,"clr":-1},{"oc":"#fbedf1","x":5.571,"y":45.751,"w":93.926,"h":1,"clr":-1},{"x":80.44,"y":3.751,"w":18.562,"h":0.75,"clr":1},{"x":6.19,"y":3.751,"w":30.938,"h":2.25,"clr":1},{"x":37.127,"y":3.751,"w":43.313,"h":2.25,"clr":1},{"x":80.44,"y":4.501,"w":18.562,"h":1.5,"clr":1},{"x":6.19,"y":6.001,"w":30.938,"h":1.5,"clr":1},{"x":37.127,"y":6.001,"w":43.313,"h":1.5,"clr":1},{"x":80.44,"y":6.001,"w":18.562,"h":1.5,"clr":1},{"x":6.19,"y":7.501,"w":65.588,"h":1.5,"clr":1},{"x":71.777,"y":7.501,"w":8.663,"h":1.5,"clr":1},{"x":6.018,"y":9.001,"w":74.25,"h":1.5,"clr":1},{"x":6.19,"y":10.501,"w":38.362,"h":1.5,"clr":1},{"x":44.552,"y":10.501,"w":24.75,"h":1.5,"clr":1},{"x":69.302,"y":10.501,"w":11.138,"h":1.5,"clr":1},{"x":35.89,"y":14.251,"w":23.512,"h":0.75,"clr":1},{"x":84.152,"y":13.501,"w":14.85,"h":0.75,"clr":1},{"x":18.565,"y":19.501,"w":25.988,"h":0.75,"clr":1},{"x":44.552,"y":19.501,"w":14.85,"h":0.75,"clr":1},{"x":59.402,"y":19.501,"w":13.612,"h":0.75,"clr":1},{"x":18.565,"y":20.251,"w":25.988,"h":0.75,"clr":1},{"x":44.552,"y":20.251,"w":14.85,"h":0.75,"clr":1},{"x":59.402,"y":20.251,"w":13.612,"h":0.75,"clr":1},{"x":18.565,"y":21.001,"w":25.988,"h":0.75,"clr":1},{"x":44.552,"y":21.001,"w":14.85,"h":0.75,"clr":1},{"x":59.402,"y":21.001,"w":13.612,"h":0.75,"clr":1},{"x":18.565,"y":21.751,"w":25.988,"h":0.75,"clr":1},{"x":44.552,"y":21.751,"w":14.85,"h":0.75,"clr":1},{"x":59.402,"y":21.751,"w":13.612,"h":0.75,"clr":1},{"x":18.565,"y":22.501,"w":25.988,"h":0.75,"clr":1},{"x":44.552,"y":22.501,"w":14.85,"h":0.75,"clr":1},{"x":59.402,"y":22.501,"w":13.612,"h":0.75,"clr":1},{"x":18.565,"y":23.251,"w":25.988,"h":0.75,"clr":1},{"x":44.552,"y":23.251,"w":14.85,"h":0.75,"clr":1},{"x":59.402,"y":23.251,"w":13.612,"h":0.75,"clr":1},{"x":95.29,"y":15.377,"w":3.713,"h":1.125,"clr":1},{"x":95.29,"y":17.627,"w":3.713,"h":1.125,"clr":1},{"x":95.29,"y":20.252,"w":3.713,"h":1.125,"clr":1},{"x":95.29,"y":22.127,"w":3.713,"h":1.125,"clr":1},{"x":95.29,"y":24.127,"w":3.713,"h":1.188,"clr":1},{"x":84.152,"y":25.501,"w":11.138,"h":0.75,"clr":1},{"x":95.29,"y":25.501,"w":3.713,"h":0.75,"clr":1},{"x":84.152,"y":26.251,"w":14.85,"h":0.75,"clr":1},{"x":84.152,"y":27.001,"w":11.138,"h":0.75,"clr":1},{"x":95.29,"y":27.001,"w":3.713,"h":0.75,"clr":1},{"x":84.152,"y":27.751,"w":14.85,"h":0.75,"clr":1},{"x":65.59,"y":28.501,"w":11.138,"h":0.75,"clr":1},{"x":76.727,"y":28.501,"w":3.713,"h":0.75,"clr":1},{"x":84.152,"y":28.501,"w":11.138,"h":0.75,"clr":1},{"x":95.29,"y":28.501,"w":3.713,"h":0.75,"clr":1},{"x":84.152,"y":29.251,"w":14.85,"h":0.75,"clr":1},{"x":65.59,"y":30.001,"w":11.138,"h":0.75,"clr":1},{"x":76.727,"y":30.001,"w":3.713,"h":0.75,"clr":1},{"x":84.152,"y":30.001,"w":11.138,"h":0.75,"clr":1},{"x":95.29,"y":30.001,"w":3.713,"h":0.75,"clr":1},{"x":84.152,"y":30.751,"w":14.85,"h":0.75,"clr":1},{"x":42.07,"y":31.501,"w":11.118,"h":1.5,"clr":1},{"x":53.215,"y":31.501,"w":3.713,"h":1.5,"clr":1},{"x":84.152,"y":31.501,"w":11.138,"h":1.5,"clr":1},{"x":95.29,"y":31.501,"w":3.713,"h":1.5,"clr":1},{"x":42.077,"y":33.001,"w":11.137,"h":1.5,"clr":1},{"x":53.215,"y":33.001,"w":3.713,"h":1.5,"clr":1},{"x":84.152,"y":33.001,"w":11.138,"h":1.5,"clr":1},{"x":95.29,"y":33.001,"w":3.713,"h":1.5,"clr":1},{"x":84.152,"y":34.501,"w":11.138,"h":0.75,"clr":1},{"x":95.29,"y":34.501,"w":3.713,"h":0.75,"clr":1},{"x":84.152,"y":35.251,"w":11.138,"h":0.75,"clr":1},{"x":95.29,"y":35.251,"w":3.713,"h":0.75,"clr":1},{"x":42.077,"y":36.001,"w":11.137,"h":1.5,"clr":1},{"x":53.215,"y":36.001,"w":3.713,"h":1.5,"clr":1},{"x":84.152,"y":36.001,"w":11.138,"h":1.5,"clr":1},{"x":95.29,"y":36.001,"w":3.713,"h":1.5,"clr":1},{"x":84.152,"y":37.501,"w":11.138,"h":0.75,"clr":1},{"x":95.29,"y":37.501,"w":3.713,"h":0.75,"clr":1},{"x":84.152,"y":38.251,"w":11.138,"h":0.75,"clr":1},{"x":95.29,"y":38.251,"w":3.713,"h":0.75,"clr":1},{"x":65.59,"y":39.001,"w":11.138,"h":0.75,"clr":1},{"x":76.727,"y":39.001,"w":3.713,"h":0.75,"clr":1},{"x":65.59,"y":40.501,"w":11.138,"h":0.75,"clr":1},{"x":76.727,"y":40.501,"w":3.713,"h":0.75,"clr":1},{"x":65.59,"y":41.251,"w":11.138,"h":0.75,"clr":1},{"x":76.727,"y":41.251,"w":3.713,"h":0.75,"clr":1},{"x":65.59,"y":42.001,"w":11.138,"h":1.5,"clr":1},{"x":76.727,"y":42.001,"w":3.713,"h":1.5,"clr":1},{"x":84.152,"y":43.501,"w":14.85,"h":0.75,"clr":1},{"x":84.152,"y":44.251,"w":11.138,"h":0.75,"clr":1},{"x":95.29,"y":44.251,"w":3.713,"h":0.75,"clr":1},{"x":84.152,"y":45.001,"w":14.85,"h":0.75,"clr":1},{"x":65.59,"y":39.751,"w":11.138,"h":0.75,"clr":1},{"x":76.727,"y":39.751,"w":3.713,"h":0.75,"clr":1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.8639999999999999,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":2.701,"w":2.946,"clr":-1,"A":"left","R":[{"T":"1040A","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":60.391,"y":2.751,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":19.552,"y":2.786,"w":16.171000000000003,"clr":-1,"A":"left","R":[{"T":"U.S.%20Individual%20Income%20Tax%20Return","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":19.552,"y":1.9729999999999999,"w":24.632999999999992,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%E2%80%94Internal%20Revenue%20Service%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":71.39,"y":2.723,"w":22.743000000000002,"clr":-1,"A":"left","R":[{"T":"IRS%20Use%20Only%E2%80%94Do%20not%20write%20or%20staple%20in%20this%20space.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.184,"y":2.751,"w":1.908,"clr":-1,"A":"left","R":[{"T":"%20(99)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.887,"y":3.5629999999999997,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.439,"w":11.631999999999998,"clr":-1,"A":"left","R":[{"T":"Your%20first%20name%20and%20initial%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.565,"y":3.439,"w":4.946999999999999,"clr":-1,"A":"left","R":[{"T":"Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.877,"y":4.22,"w":13.727000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.688,"w":20.560000000000006,"clr":-1,"A":"left","R":[{"T":"If%20a%20joint%20return%2C%20spouse%E2%80%99s%20first%20name%20and%20initial%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.565,"y":5.688,"w":4.946999999999999,"clr":-1,"A":"left","R":[{"T":"Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.877,"y":5.688,"w":15.855000000000006,"clr":-1,"A":"left","R":[{"T":"Spouse's%20social%20security%20number%20","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":80.568,"y":7.537000000000001,"w":1,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":83.077,"y":7.336,"w":12.965000000000002,"clr":-1,"A":"left","R":[{"T":"Make%20sure%20the%20SSN(s)%20above%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.678,"y":7.861000000000001,"w":11.687000000000003,"clr":-1,"A":"left","R":[{"T":"and%20on%20line%206c%20are%20correct.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":7.188,"w":34.15699999999999,"clr":-1,"A":"left","R":[{"T":"Home%20address%20(number%20and%20street).%20If%20you%20have%20a%20P.O.%20box%2C%20see%20instructions.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.085,"y":7.188,"w":3.798,"clr":-1,"A":"left","R":[{"T":"Apt.%20no.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.964,"y":8.682,"w":320.9849999999999,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office.%20If%20you%20have%20a%20foreign%20address%2C%20also%20complete%20spaces%20below%20(see%20instructions).%20","S":-1,"TS":[0,9.299958,0,0]}]},{"oc":"#221f1f","x":5.94,"y":10.188,"w":9.780000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.99,"y":10.188,"w":13.408000000000003,"clr":-1,"A":"left","R":[{"T":"Foreign%20province%2Fstate%2Fcounty","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.74,"y":10.188,"w":9.742,"clr":-1,"A":"left","R":[{"T":"Foreign%20postal%20code%20%20%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":81.728,"y":8.723,"w":14.949000000000007,"clr":-1,"A":"left","R":[{"T":"Presidential%20Election%20Campaign","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":80.533,"y":9.367,"w":18.502000000000006,"clr":-1,"A":"left","R":[{"T":"Check%20here%20if%20you%2C%20or%20your%20spouse%20if%20filing%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"oc":"#221f1f","x":80.533,"y":9.867,"w":19.69,"clr":-1,"A":"left","R":[{"T":"jointly%2C%20want%20%243%20to%20go%20to%20this%20fund.%20Checking%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"oc":"#221f1f","x":80.533,"y":10.367,"w":17.814000000000004,"clr":-1,"A":"left","R":[{"T":"a%20box%20below%20will%20not%20change%20your%20tax%20or%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"oc":"#221f1f","x":80.533,"y":10.866,"w":3.4270000000000005,"clr":-1,"A":"left","R":[{"T":"refund.%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"oc":"#221f1f","x":89.922,"y":11.013,"w":2.167,"clr":-1,"A":"left","R":[{"T":"You%20","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":94.729,"y":11.013,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.09,1,0]}]},{"oc":"#221f1f","x":5.94,"y":11.974,"w":2.945,"clr":-1,"A":"left","R":[{"T":"Filing%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.94,"y":12.786,"w":3.2230000000000003,"clr":-1,"A":"left","R":[{"T":"status%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.94,"y":13.376,"w":5.279,"clr":-1,"A":"left","R":[{"T":"Check%20only%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":13.876,"w":3.908,"clr":-1,"A":"left","R":[{"T":"one%20box.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":19.834,"y":11.822,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":24.502,"y":11.822,"w":2.759,"clr":-1,"A":"left","R":[{"T":"Single","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":19.834,"y":12.572,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":24.502,"y":12.572,"w":22.003000000000004,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20jointly%20(even%20if%20only%20one%20had%20income)","S":-1,"TS":[0,12.1,0,0]}]},{"oc":"#221f1f","x":19.834,"y":13.322,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":24.502,"y":13.322,"w":25.465999999999994,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20separately.%20Enter%20spouse%E2%80%99s%20SSN%20above%20and%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.502,"y":14.01,"w":6.853999999999999,"clr":-1,"A":"left","R":[{"T":"full%20name%20here.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.926,"y":13.916,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.912,"y":11.822,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":64.102,"y":11.885,"w":19.613,"clr":-1,"A":"left","R":[{"T":"Head%20of%20household%20(with%20qualifying%20person).%20","S":-1,"TS":[0,10.7,0,0]}]},{"oc":"#221f1f","x":88.683,"y":11.885,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions.)","S":-1,"TS":[0,9.16,0,0]}]},{"oc":"#221f1f","x":64.102,"y":12.572,"w":25.748000000000005,"clr":-1,"A":"left","R":[{"T":"If%20the%20qualifying%20person%20is%20a%20child%20but%20not%20your%20dependent%2C%20","S":-1,"TS":[0,10.9,0,0]}]},{"oc":"#221f1f","x":64.102,"y":13.26,"w":13.171000000000006,"clr":-1,"A":"left","R":[{"T":"enter%20this%20child%E2%80%99s%20name%20here.%20%20","S":-1,"TS":[0,10.9,0,0]}]},{"oc":"#221f1f","x":81.985,"y":13.166,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.912,"y":14.01,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":64.102,"y":14.01,"w":18.926000000000005,"clr":-1,"A":"left","R":[{"T":"Qualifying%20widow(er)%20with%20dependent%20child%20","S":-1,"TS":[0,11.2,0,0]}]},{"oc":"#221f1f","x":87.682,"y":14.01,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,8.775,0,0]}]},{"oc":"#221f1f","x":5.94,"y":14.974,"w":5.627,"clr":-1,"A":"left","R":[{"T":"Exemptions","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":19.834,"y":14.822,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"6a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":25.411,"y":14.822,"w":4.279,"clr":-1,"A":"left","R":[{"T":"Yourself.","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":34.058,"y":14.822,"w":19.21,"clr":-1,"A":"left","R":[{"T":"If%20someone%20can%20claim%20you%20as%20a%20dependent%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.778,"y":14.822,"w":3.3329999999999997,"clr":-1,"A":"left","R":[{"T":"do%20not%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":68.337,"y":14.822,"w":2.964,"clr":-1,"A":"left","R":[{"T":"check%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":34.058,"y":15.572,"w":3.334,"clr":-1,"A":"left","R":[{"T":"box%206a.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.789,"y":16.26,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":25.626,"y":16.291,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Spouse","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":82.108,"y":15.850000000000001,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[2,16.5,0,0]}]},{"oc":"#221f1f","x":20.79,"y":17.072,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":23.265,"y":17.135,"w":6.334,"clr":-1,"A":"left","R":[{"T":"Dependents%3A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":18.508,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(1)%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":25.225,"y":18.508,"w":4.705,"clr":-1,"A":"left","R":[{"T":"First%20name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":35.85,"y":18.508,"w":4.669,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":45.281,"y":17.449,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(2)%20","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":47.119,"y":17.449,"w":8.576000000000002,"clr":-1,"A":"left","R":[{"T":"Dependent%E2%80%99s%20social","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":47.083,"y":18.012,"w":7.2059999999999995,"clr":-1,"A":"left","R":[{"T":"security%20number","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":61.055,"y":17.437,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(3)%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":63.016,"y":17.437,"w":5.706000000000001,"clr":-1,"A":"left","R":[{"T":"Dependent%E2%80%99s","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.292,"y":18.037,"w":6.3340000000000005,"clr":-1,"A":"left","R":[{"T":"relationship%20to","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.384,"y":18.037,"w":1.6300000000000001,"clr":-1,"A":"left","R":[{"T":"you","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":73.41,"y":17.061,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(4)%20","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":75.248,"y":17.061,"w":0.755,"clr":-1,"A":"left","R":[{"T":"%14","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":77.164,"y":17.061,"w":0.518,"clr":-1,"A":"left","R":[{"T":"if","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":77.832,"y":17.061,"w":5.261,"clr":-1,"A":"left","R":[{"T":"%20child%20under","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":73.654,"y":17.555,"w":9.353000000000002,"clr":-1,"A":"left","R":[{"T":"age%2017%20qualifying%20for%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":73.846,"y":18.055,"w":8.982000000000003,"clr":-1,"A":"left","R":[{"T":"child%20tax%20credit%20(see%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":75.526,"y":18.555,"w":5.445,"clr":-1,"A":"left","R":[{"T":"instructions)","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.94,"y":17.976,"w":7.168000000000001,"clr":-1,"A":"left","R":[{"T":"If%20more%20than%20six%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":18.601,"w":7.725000000000001,"clr":-1,"A":"left","R":[{"T":"dependents%2C%20see%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":19.227,"w":5.464,"clr":-1,"A":"left","R":[{"T":"instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.79,"y":24.572,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":24.572,"w":16.616,"clr":-1,"A":"left","R":[{"T":"Total%20number%20of%20exemptions%20claimed.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":85.14,"y":14.751,"w":3.2790000000000004,"clr":-1,"A":"left","R":[{"T":"Boxes%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.14,"y":15.189,"w":6.058,"clr":-1,"A":"left","R":[{"T":"checked%20on%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.14,"y":15.626000000000001,"w":4.613,"clr":-1,"A":"left","R":[{"T":"6a%20and%206b","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.14,"y":16.189,"w":7.279000000000002,"clr":-1,"A":"left","R":[{"T":"No.%20of%20children%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.14,"y":16.689,"w":5.779,"clr":-1,"A":"left","R":[{"T":"on%206c%20who%3A%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.14,"y":17.314,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.076,"y":17.314,"w":4.835000000000001,"clr":-1,"A":"left","R":[{"T":"lived%20with%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.14,"y":17.814,"w":1.778,"clr":-1,"A":"left","R":[{"T":"you","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.14,"y":18.564,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":86.057,"y":18.564,"w":5.279,"clr":-1,"A":"left","R":[{"T":"did%20not%20live","S":-1,"TS":[0,9.86,1,0]}]},{"oc":"#221f1f","x":85.14,"y":19.064,"w":6.111999999999999,"clr":-1,"A":"left","R":[{"T":"with%20you%20due","S":-1,"TS":[0,9.86,1,0]}]},{"oc":"#221f1f","x":92.629,"y":19.064,"w":1.241,"clr":-1,"A":"left","R":[{"T":"to%20","S":-1,"TS":[0,9.86,0,0]}]},{"oc":"#221f1f","x":85.14,"y":19.564,"w":4.835000000000001,"clr":-1,"A":"left","R":[{"T":"divorce%20or","S":-1,"TS":[0,9.86,1,0]}]},{"oc":"#221f1f","x":85.14,"y":20.064,"w":5.057,"clr":-1,"A":"left","R":[{"T":"separation","S":-1,"TS":[0,9.86,1,0]}]},{"oc":"#221f1f","x":91.449,"y":20.064,"w":2.2790000000000004,"clr":-1,"A":"left","R":[{"T":"(see%20","S":-1,"TS":[0,9.86,1,0]}]},{"oc":"#221f1f","x":85.14,"y":20.564,"w":6.056,"clr":-1,"A":"left","R":[{"T":"instructions)","S":-1,"TS":[0,9.86,1,0]}]},{"oc":"#221f1f","x":85.14,"y":21.314,"w":6.0009999999999994,"clr":-1,"A":"left","R":[{"T":"Dependents%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.14,"y":21.814,"w":4.723000000000001,"clr":-1,"A":"left","R":[{"T":"on%206c%20not%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.14,"y":22.314,"w":6.779999999999999,"clr":-1,"A":"left","R":[{"T":"entered%20above","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.14,"y":23.439,"w":6.723000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20numbers%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.14,"y":23.939,"w":4.335000000000001,"clr":-1,"A":"left","R":[{"T":"on%20lines%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.14,"y":24.502,"w":3.168,"clr":-1,"A":"left","R":[{"T":"above%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":88.951,"y":24.439,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":5.94,"y":25.474,"w":3.831,"clr":-1,"A":"left","R":[{"T":"Income%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.94,"y":26.822,"w":3.686,"clr":-1,"A":"left","R":[{"T":"Attach%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":27.447,"w":6.090999999999999,"clr":-1,"A":"left","R":[{"T":"Form(s)%20W-2%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":28.072,"w":5.055,"clr":-1,"A":"left","R":[{"T":"here.%20Also%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":28.697,"w":3.297,"clr":-1,"A":"left","R":[{"T":"attach%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":29.322,"w":3.9059999999999997,"clr":-1,"A":"left","R":[{"T":"Form(s)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":29.947,"w":6.241,"clr":-1,"A":"left","R":[{"T":"1099-R%20if%20tax%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":30.572,"w":2.2030000000000003,"clr":-1,"A":"left","R":[{"T":"was%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":31.197,"w":4.609,"clr":-1,"A":"left","R":[{"T":"withheld.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":32.188,"w":6.15,"clr":-1,"A":"left","R":[{"T":"If%20you%20did%20not%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":32.688,"w":7.076000000000002,"clr":-1,"A":"left","R":[{"T":"get%20a%20W-2%2C%20see%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":33.189,"w":5.464,"clr":-1,"A":"left","R":[{"T":"instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":19.834,"y":26.072,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":26.072,"w":20.670000000000005,"clr":-1,"A":"left","R":[{"T":"Wages%2C%20salaries%2C%20tips%2C%20etc.%20Attach%20Form(s)%20W-2.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":81.568,"y":26.072,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":19.834,"y":27.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"8a","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.234,"y":27.572,"w":4.002,"clr":-1,"A":"left","R":[{"T":"Taxable%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":29.997,"y":27.572,"w":17.262,"clr":-1,"A":"left","R":[{"T":"interest.%20Attach%20Schedule%20B%20if%20required.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.934,"y":27.572,"w":1.093,"clr":-1,"A":"left","R":[{"T":"8a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":28.322,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":28.322,"w":5.835000000000001,"clr":-1,"A":"left","R":[{"T":"Tax-exempt%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":33.166,"y":28.322,"w":3.593,"clr":-1,"A":"left","R":[{"T":"interest.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":38.482,"y":28.322,"w":3.722,"clr":-1,"A":"left","R":[{"T":"%20Do%20not%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":19.834,"y":29.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"9a","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":29.072,"w":22.374999999999996,"clr":-1,"A":"left","R":[{"T":"Ordinary%20dividends.%20Attach%20Schedule%20B%20if%20required.","S":-1,"TS":[0,12.9,0,0]}]},{"oc":"#221f1f","x":81.107,"y":29.072,"w":1.093,"clr":-1,"A":"left","R":[{"T":"9a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":29.822,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":29.822,"w":16.651000000000003,"clr":-1,"A":"left","R":[{"T":"Qualified%20dividends%20(see%20instructions).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.497,"y":29.822,"w":1.149,"clr":-1,"A":"left","R":[{"T":"9b","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":18.878,"y":30.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":30.572,"w":19.206000000000007,"clr":-1,"A":"left","R":[{"T":"Capital%20gain%20distributions%20(see%20instructions).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":81.09,"y":30.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":18.878,"y":31.322000000000003,"w":2.224,"clr":-1,"A":"left","R":[{"T":"11%20a%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":31.322000000000003,"w":2.426,"clr":-1,"A":"left","R":[{"T":"IRA%20%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":23.265,"y":32.072,"w":5.779,"clr":-1,"A":"left","R":[{"T":"distributions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":38.115,"y":32.072,"w":1.649,"clr":-1,"A":"left","R":[{"T":"11a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":59.528,"y":31.322000000000003,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"11b%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":64.103,"y":31.322000000000003,"w":7.465,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.103,"y":32.072,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.582,"y":32.072,"w":1.705,"clr":-1,"A":"left","R":[{"T":"11b","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":18.878,"y":32.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"12%20a%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":32.822,"w":6.335000000000001,"clr":-1,"A":"left","R":[{"T":"Pensions%20and%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":23.265,"y":33.572,"w":4.279,"clr":-1,"A":"left","R":[{"T":"annuities.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":38.115,"y":33.572,"w":1.649,"clr":-1,"A":"left","R":[{"T":"12a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":59.528,"y":32.822,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"12b%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":64.103,"y":32.822,"w":7.465,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.103,"y":33.572,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.582,"y":33.572,"w":1.705,"clr":-1,"A":"left","R":[{"T":"12b","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":18.878,"y":35.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":35.072,"w":31.234000000000005,"clr":-1,"A":"left","R":[{"T":"Unemployment%20compensation%20and%20Alaska%20Permanent%20Fund%20dividends.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":81.088,"y":35.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":18.878,"y":35.822,"w":2.224,"clr":-1,"A":"left","R":[{"T":"14%20a%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":35.822,"w":6.796000000000001,"clr":-1,"A":"left","R":[{"T":"Social%20security%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":23.265,"y":36.572,"w":3.8339999999999996,"clr":-1,"A":"left","R":[{"T":"benefits.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":38.115,"y":36.572,"w":1.649,"clr":-1,"A":"left","R":[{"T":"14a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":59.528,"y":35.822,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"14b%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":64.103,"y":35.822,"w":7.465,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.103,"y":36.572,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":80.581,"y":36.572,"w":1.705,"clr":-1,"A":"left","R":[{"T":"14b","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":18.878,"y":38.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":38.01,"w":24.451000000000008,"clr":-1,"A":"left","R":[{"T":"Add%20lines%207%20through%2014b%20(far%20right%20column).%20This%20is%20your%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":59.79,"y":38.01,"w":6.167999999999999,"clr":-1,"A":"left","R":[{"T":"total%20income.","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":77.412,"y":37.916,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.09,"y":38.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":38.974,"w":4.519,"clr":-1,"A":"left","R":[{"T":"Adjusted%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.94,"y":39.786,"w":3.241,"clr":-1,"A":"left","R":[{"T":"gross%20%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.94,"y":40.598,"w":3.516,"clr":-1,"A":"left","R":[{"T":"income","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":18.878,"y":39.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":39.572,"w":16.724000000000004,"clr":-1,"A":"left","R":[{"T":"Educator%20expenses%20(see%20instructions).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.528,"y":39.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":18.878,"y":40.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":40.322,"w":14.465000000000002,"clr":-1,"A":"left","R":[{"T":"IRA%20deduction%20(see%20instructions).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.528,"y":40.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":18.878,"y":41.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":41.072,"w":22.15300000000001,"clr":-1,"A":"left","R":[{"T":"Student%20loan%20interest%20deduction%20(see%20instructions).","S":-1,"TS":[0,12.7,0,0]}]},{"oc":"#221f1f","x":62.528,"y":41.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":18.878,"y":42.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":42.572,"w":15.987000000000007,"clr":-1,"A":"left","R":[{"T":"Tuition%20and%20fees.%20Attach%20Form%208917.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.528,"y":42.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":18.878,"y":43.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":43.322,"w":18.135000000000005,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2016%20through%2019.%20These%20are%20your%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":50.653,"y":43.322,"w":8.557,"clr":-1,"A":"left","R":[{"T":"total%20adjustments.","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":81.09,"y":43.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":18.878,"y":44.822,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":23.265,"y":44.822,"w":18.505000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2020%20from%20line%2015.%20This%20is%20your%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":51.289,"y":44.822,"w":11.448000000000004,"clr":-1,"A":"left","R":[{"T":"adjusted%20gross%20income.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":77.604,"y":44.729,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.09,"y":44.822,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":45.59,"w":44.01399999999996,"clr":-1,"A":"left","R":[{"T":"For%20Disclosure%2C%20Privacy%20Act%2C%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":75.113,"y":45.626,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011327A","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.541,"y":45.59,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.581,"y":45.59,"w":3.224,"clr":-1,"A":"left","R":[{"T":"1040A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.511,"y":45.59,"w":2.742,"clr":-1,"A":"left","R":[{"T":"(2013)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.57,"y":28.322,"w":8.095000000000002,"clr":-1,"A":"left","R":[{"T":"include%20on%20line%208a.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.325,"y":28.322,"w":1.149,"clr":-1,"A":"left","R":[{"T":"8b","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":57.879,"y":8.632,"w":13.636,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[0,9.299958,0,0]}]},{"oc":"#221f1f","x":65.711,"y":8.682,"w":28.259,"clr":-1,"A":"left","R":[{"T":"ZIP%20code","S":-1,"TS":[0,9.299958,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INJUR","EN":0},"TI":252,"AM":0,"x":8.656,"y":1.199,"w":19.824,"h":0.881,"TU":"If a joint return, spouse’s first name and initial"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DECE","EN":0},"TI":253,"AM":0,"x":31.37,"y":1.184,"w":37.856,"h":0.833,"TU":"If a joint return, spouse’s first name and initial"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":254,"AM":0,"x":6.309,"y":4.667,"w":25.408,"h":1.268,"TU":"Your first name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI","EN":0},"TI":255,"AM":0,"x":32.368,"y":4.726,"w":3.891,"h":1.238,"TU":"Taxpayer middle initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAM","EN":0},"TI":256,"AM":0,"x":37.267,"y":4.717,"w":42.985,"h":1.268,"TU":"Last name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":257,"AM":0,"x":80.582,"y":5.141,"w":18.397,"h":0.844,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SNAM","EN":0},"TI":258,"AM":0,"x":6.248,"y":6.554,"w":25.682,"h":0.881,"TU":"If a joint return, spouse’s first name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SMI","EN":0},"TI":259,"AM":0,"x":32.433,"y":6.526,"w":4.21,"h":0.912,"TU":"Spouse middle initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SLNM","EN":0},"TI":260,"AM":0,"x":37.269,"y":6.581,"w":43.044,"h":0.881,"TU":"Spouse Last name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":261,"AM":0,"x":80.582,"y":6.603,"w":18.397,"h":0.882,"TU":"Spouse’s social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":262,"AM":0,"x":6.229,"y":8.146,"w":65.422,"h":0.839,"TU":"Home address (number and street). If you have a P.O. box, see instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":263,"AM":0,"x":72.753,"y":8.156,"w":6.92,"h":0.833,"TU":"Apt. no."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":264,"AM":0,"x":6.229,"y":9.604,"w":49.209,"h":0.881,"TU":"City, town or post office. If you have a foreign address, also complete spaces below (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":265,"AM":0,"x":57.858,"y":9.567,"w":4.516,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":266,"AM":0,"x":65.587,"y":9.566,"w":9.033,"h":0.901,"TU":"Zip code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":267,"AM":0,"x":6.313,"y":11.103,"w":36.556,"h":0.857,"PL":{"V":[null,"Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPC","EN":0},"TI":268,"AM":0,"x":44.694,"y":11.145,"w":24.482,"h":0.84,"TU":"Foreign province/state/county"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":269,"AM":0,"x":70.193,"y":11.145,"w":9.352,"h":0.84,"TU":"Foreign postal code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAM","EN":0},"TI":276,"AM":0,"x":83.52,"y":13.534,"w":7.957,"h":0.833,"TU":"Child name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN","EN":0},"TI":277,"AM":0,"x":91.703,"y":13.534,"w":7.73,"h":0.833,"TU":"Child SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNM","EN":0},"TI":278,"AM":0,"x":35.878,"y":14.255,"w":11.419,"h":0.833,"TU":"Enter spouse's first name here"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNM","EN":0},"TI":279,"AM":0,"x":48.331,"y":14.275,"w":11.034,"h":0.833,"TU":"Enter spouse's last name here"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6AB","EN":0},"TI":282,"AM":1024,"x":95.096,"y":15.248,"w":3.816,"h":1.337,"TU":"Boxes checked on 6a and 6b"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNR","EN":0},"TI":284,"AM":0,"x":32.89,"y":16.406,"w":18.807,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNR","EN":0},"TI":285,"AM":0,"x":63.411,"y":16.316,"w":18.456,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C1","EN":0},"TI":286,"AM":0,"x":95.246,"y":16.995,"w":3.816,"h":1.717,"TU":"Number of children on 6c who lived with you"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_1_","EN":0},"TI":287,"AM":0,"x":18.556,"y":19.546,"w":12.199,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 5. (1) First name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_1_","EN":0},"TI":288,"AM":0,"x":31.194,"y":19.533,"w":13.322,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 5. (1) Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_1_","EN":0},"TI":289,"AM":0,"x":44.809,"y":19.533,"w":14.467,"h":0.833,"TU":"Line 6. c. Dependent 5. (2) Dependent's Social Security Number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_1_","EN":0},"TI":290,"AM":0,"x":59.653,"y":19.575,"w":12.879,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece ","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_2_","EN":0},"TI":292,"AM":0,"x":18.571,"y":20.302,"w":12.199,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 2. (1) First name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_2_","EN":0},"TI":293,"AM":0,"x":31.209,"y":20.289,"w":13.322,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 2. (1) Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_2_","EN":0},"TI":294,"AM":0,"x":44.824,"y":20.289,"w":14.467,"h":0.833,"TU":"Line 6. c. Dependent 2. (2) Dependent's Social Security Number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_2_","EN":0},"TI":295,"AM":0,"x":59.667,"y":20.331,"w":12.879,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece ","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"N6C2","EN":0},"TI":297,"AM":0,"x":95.054,"y":19.923,"w":4.008,"h":1.437,"TU":"Number of children on 6c who did not live with you due to divorce or separation (see instructions)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_3_","EN":0},"TI":298,"AM":0,"x":18.551,"y":21.057,"w":12.199,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 3. (1) First name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_3_","EN":0},"TI":299,"AM":0,"x":31.189,"y":21.044,"w":13.322,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 3. (1) Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_3_","EN":0},"TI":300,"AM":0,"x":44.804,"y":21.044,"w":14.467,"h":0.833,"TU":"Line 6. c. Dependent 3. (2) Dependent's Social Security Number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_3_","EN":0},"TI":301,"AM":0,"x":59.647,"y":21.086,"w":12.879,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece ","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_4_","EN":0},"TI":303,"AM":0,"x":18.605,"y":21.785,"w":12.199,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 4. (1) First name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_4_","EN":0},"TI":304,"AM":0,"x":31.244,"y":21.772,"w":13.322,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 4. (1) Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_4_","EN":0},"TI":305,"AM":0,"x":44.858,"y":21.772,"w":14.467,"h":0.833,"TU":"Line 6. c. Dependent 4. (2) Dependent's Social Security Number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_4_","EN":0},"TI":306,"AM":0,"x":59.702,"y":21.813,"w":12.879,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece ","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_5_","EN":0},"TI":308,"AM":0,"x":18.51,"y":22.54,"w":12.199,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 5. (1) First name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_5_","EN":0},"TI":309,"AM":0,"x":31.149,"y":22.526,"w":13.322,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 5. (1) Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_5_","EN":0},"TI":310,"AM":0,"x":44.763,"y":22.526,"w":14.467,"h":0.833,"TU":"Line 6. c. Dependent 5. (2) Dependent's Social Security Number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_5_","EN":0},"TI":311,"AM":0,"x":59.607,"y":22.568,"w":12.879,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece ","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C3","EN":0},"TI":312,"AM":0,"x":94.67,"y":22.077,"w":4.391,"h":1.228,"TU":"Dependents on 6c not entered above"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_6_","EN":0},"TI":314,"AM":0,"x":18.49,"y":23.287,"w":12.199,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 6. (1) First name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_6_","EN":0},"TI":315,"AM":0,"x":31.129,"y":23.273,"w":13.322,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 6. (1) Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_6_","EN":0},"TI":316,"AM":0,"x":44.743,"y":23.273,"w":14.467,"h":0.833,"TU":"Line 6. c. Dependent 6. (2) Dependent's Social Security Number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_6_","EN":0},"TI":317,"AM":0,"x":59.587,"y":23.315,"w":12.879,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece ","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"]}},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FDEPENDA"}},"id":{"Id":"Add_FDEPEND","EN":0},"TI":319,"AM":1024,"x":16.187,"y":24.222,"w":3.796,"h":0.837},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6E","EN":0},"TI":320,"AM":1024,"x":95.069,"y":24.131,"w":3.787,"h":1.159,"TU":"Add numbers"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7W","EN":0},"TI":321,"AM":0,"x":60.751,"y":25.91,"w":9.234,"h":0.833,"PL":{"V":[" ","EXCESS ALLOWANCE","F8919","FB","FEC","DCB","HSH","SCH","PSO","PRI","DFC","NONE APPLY"],"D":[" ","EXCESS ALLOWANCE","F8919","FB","FEC","DCB","HSH","SCH","PSO","PRI","DFC","NONE"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7WAMT","EN":0},"TI":322,"AM":0,"x":71.527,"y":25.894,"w":8.999,"h":1.073},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":323,"AM":0,"x":84.082,"y":25.992,"w":11.209,"h":1.016,"TU":"7 Wages, salaries, tips, etc."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHB"}},"id":{"Id":"Add_SchB","EN":0},"TI":324,"AM":1024,"x":55.255,"y":27.496,"w":3.796,"h":0.837},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":325,"AM":0,"x":84.082,"y":27.477,"w":11.128,"h":1.008,"TU":"8a Taxable interest. Attach Schedule B if required. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":326,"AM":0,"x":65.506,"y":28.519,"w":11.492,"h":0.833,"TU":"Tax-exempt interest. Do not include on line 8a."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHB"}},"id":{"Id":"Add_SchB","EN":0},"TI":327,"AM":1024,"x":59.062,"y":29.14,"w":4.589,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":328,"AM":0,"x":84.177,"y":29.069,"w":11.208,"h":0.961,"TU":"9a Ordinary Dividends. Attach Schedule B if required."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALDIVS","EN":0},"TI":329,"AM":0,"x":65.548,"y":29.947,"w":11.492,"h":0.836,"TU":"Qualified Dividends (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":330,"AM":0,"x":84.14,"y":30.393,"w":11.144,"h":1.078,"TU":"10 Capital gain distributions (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11A","EN":0},"TI":331,"AM":0,"x":41.808,"y":31.861,"w":11.239,"h":1.124,"TU":"11a IRA distributions."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"QCD","EN":0},"TI":332,"AM":0,"x":55.942,"y":31.882,"w":3.463,"h":0.959,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":333,"AM":0,"x":84.275,"y":31.931,"w":11.128,"h":1.054,"TU":"11b Taxable amount (see instructions). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A","EN":0},"TI":334,"AM":0,"x":41.873,"y":33.454,"w":11.175,"h":1.031,"TU":"12a Pensions and annuities."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSO","EN":0},"TI":335,"AM":0,"x":56.2,"y":33.298,"w":3.462,"h":0.917,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B","EN":0},"TI":336,"AM":0,"x":84.275,"y":33.384,"w":10.915,"h":1.148,"TU":"12b Taxable amount (see instructions). "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L13T1","EN":0},"TI":337,"AM":0,"x":58.974,"y":34.604,"w":10.704,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13T2","EN":0},"TI":338,"AM":0,"x":70.484,"y":34.544,"w":9.203,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":339,"AM":0,"x":84.403,"y":34.884,"w":10.915,"h":1.101,"TU":"13 Unemployment compensation and Alaska Permanent Fund dividends. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14AMOD","EN":0},"TI":340,"AM":0,"x":41.873,"y":36.361,"w":11.175,"h":1.117,"TU":"14a Social security benefits."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14LSE","EN":0},"TI":341,"AM":0,"x":54.231,"y":36.626,"w":9.203,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B","EN":0},"TI":342,"AM":0,"x":84.467,"y":36.407,"w":10.827,"h":1.07,"TU":"14b Taxable amount (see instructions). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":343,"AM":1024,"x":84.402,"y":37.915,"w":10.892,"h":1.055,"TU":"15 Add lines 7 through 14b (far right column). This is your total income. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EDUCEXP","EN":0},"TI":344,"AM":0,"x":65.586,"y":39.445,"w":10.934,"h":0.97,"TU":"16 Educator expenses (see instructions). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":345,"AM":0,"x":65.311,"y":40.468,"w":11.303,"h":0.833,"TU":"17 IRA deduction (see instructions). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":346,"AM":0,"x":65.311,"y":41.288,"w":11.266,"h":0.833,"TU":"18 Student loan interest deduction (see instructions). "},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8917"}},"id":{"Id":"Add_F8917","EN":0},"TI":347,"AM":0,"x":52.435,"y":42.541,"w":5.91,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TUITION","EN":0},"TI":348,"AM":1024,"x":65.394,"y":42.261,"w":11.171,"h":1.216,"TU":"19 Tuition and fees. Attach Form 8917."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":349,"AM":1024,"x":84.854,"y":43.172,"w":10.653,"h":1.055,"TU":"20 Add lines 16 through 19. These are your total adjustments. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":350,"AM":1024,"x":84.916,"y":44.571,"w":10.608,"h":1.149,"TU":"21 Subtract line 20 from line 15. This is your adjusted gross income."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PECY","EN":0},"TI":270,"AM":0,"x":88.172,"y":11.237,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SECY","EN":0},"TI":271,"AM":0,"x":93.122,"y":11.237,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":272,"AM":0,"x":22.332,"y":11.94,"w":1.723,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS4","EN":0},"TI":273,"AM":0,"x":61.805,"y":12.004,"w":1.723,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":274,"AM":0,"x":22.268,"y":12.68,"w":1.723,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS3","EN":0},"TI":275,"AM":0,"x":22.211,"y":13.526,"w":1.839,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS5","EN":0},"TI":280,"AM":0,"x":61.795,"y":14.072,"w":1.723,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6A","EN":0},"TI":281,"AM":0,"x":23.395,"y":14.988,"w":1.824,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6B","EN":0},"TI":283,"AM":0,"x":23.577,"y":16.26,"w":1.824,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_1_","EN":0},"TI":291,"AM":0,"x":78.135,"y":19.519,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_2_","EN":0},"TI":296,"AM":0,"x":78.15,"y":20.275,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_3_","EN":0},"TI":302,"AM":0,"x":78.13,"y":21.03,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_4_","EN":0},"TI":307,"AM":0,"x":78.185,"y":21.758,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_5_","EN":0},"TI":313,"AM":0,"x":78.262,"y":22.513,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_6_","EN":0},"TI":318,"AM":0,"x":78.242,"y":23.26,"w":1.375,"h":0.833}]}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":86.711},{"oc":"#221f1f","x":92.772,"y":3.001,"w":1.5,"l":6.273},{"oc":"#221f1f","x":85.347,"y":3.001,"w":1.5,"l":9.986},{"oc":"#221f1f","x":85.347,"y":3.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.247,"y":3.001,"w":1.5,"l":3.798},{"oc":"#221f1f","x":95.247,"y":3.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":16.09,"y":3.751,"w":0.75,"l":69.3},{"oc":"#221f1f","x":77.965,"y":5.126,"w":2.25,"l":3.713},{"oc":"#221f1f","x":77.965,"y":3.876,"w":2.25,"l":3.713},{"oc":"#221f1f","x":21.04,"y":5.251,"w":0.75,"l":60.638},{"oc":"#221f1f","x":15.299,"y":6.751,"w":0.75,"l":83.703},{"oc":"#221f1f","x":6.533,"y":6.001,"w":0.75,"l":8.421},{"oc":"#221f1f","x":6.533,"y":18.626,"w":0.75,"l":8.421},{"oc":"#221f1f","x":85.347,"y":6.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.347,"y":7.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.247,"y":6.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":15.299,"y":7.501,"w":0.75,"l":70.091},{"oc":"#221f1f","x":85.347,"y":7.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.347,"y":8.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.247,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":16.09,"y":8.251,"w":0.75,"l":69.3},{"oc":"#221f1f","x":81.634,"y":9.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":85.347,"y":8.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.347,"y":9.001,"w":1.125,"l":9.986},{"oc":"#221f1f","x":95.247,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":9.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":16.09,"y":9.001,"w":0.75,"l":69.3},{"oc":"#221f1f","x":85.347,"y":9.001,"w":1.125,"l":9.986},{"oc":"#221f1f","x":85.347,"y":10.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":95.247,"y":9.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.247,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":16.09,"y":10.501,"w":1.125,"l":69.3},{"oc":"#221f1f","x":85.347,"y":10.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":85.347,"y":11.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.247,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.247,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":16.09,"y":11.251,"w":0.75,"l":69.3},{"oc":"#221f1f","x":68.022,"y":11.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":77.922,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":16.09,"y":12.751,"w":0.75,"l":51.975},{"oc":"#221f1f","x":64.309,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.309,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.022,"y":12.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":68.022,"y":14.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":77.922,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":16.09,"y":14.251,"w":0.75,"l":51.975},{"oc":"#221f1f","x":68.022,"y":14.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":77.922,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":16.09,"y":15.001,"w":0.75,"l":51.975},{"oc":"#221f1f","x":68.022,"y":15.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":77.922,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":16.09,"y":16.501,"w":0.75,"l":51.975},{"oc":"#221f1f","x":68.022,"y":16.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":68.022,"y":17.251,"w":1.125,"l":9.986},{"oc":"#221f1f","x":77.922,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":17.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":16.09,"y":17.251,"w":0.75,"l":51.975},{"oc":"#221f1f","x":81.634,"y":18.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":85.347,"y":18.001,"w":1.125,"l":9.986},{"oc":"#221f1f","x":95.247,"y":18.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":16.09,"y":18.001,"w":0.75,"l":69.3},{"oc":"#221f1f","x":81.634,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.347,"y":18.001,"w":1.125,"l":9.986},{"oc":"#221f1f","x":85.347,"y":19.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.247,"y":18.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":16.09,"y":19.501,"w":0.75,"l":69.3},{"oc":"#221f1f","x":68.022,"y":19.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":77.922,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":16.09,"y":21.001,"w":0.75,"l":51.975},{"oc":"#221f1f","x":68.022,"y":21.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":68.022,"y":22.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":77.922,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":15.299,"y":22.501,"w":0.75,"l":52.766},{"oc":"#221f1f","x":6.533,"y":21.376,"w":0.75,"l":8.421},{"oc":"#221f1f","x":6.533,"y":24.113,"w":0.75,"l":8.421},{"oc":"#221f1f","x":68.022,"y":22.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":68.022,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":77.922,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":15.299,"y":23.251,"w":0.75,"l":52.766},{"oc":"#221f1f","x":50.697,"y":23.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":50.697,"y":24.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":60.597,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.597,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":16.09,"y":24.751,"w":0.75,"l":34.65},{"oc":"#221f1f","x":64.309,"y":25.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":16.09,"y":25.501,"w":0.75,"l":51.975},{"oc":"#221f1f","x":68.022,"y":25.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":68.022,"y":26.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":77.922,"y":25.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.922,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":16.09,"y":26.251,"w":0.75,"l":51.975},{"oc":"#221f1f","x":6.19,"y":27.001,"w":1.5,"l":92.813},{"oc":"#221f1f","x":85.347,"y":27.001,"w":1.5,"l":9.986},{"oc":"#221f1f","x":95.247,"y":27.001,"w":1.5,"l":3.798},{"oc":"#221f1f","x":16.09,"y":28.501,"w":0.75,"l":69.3},{"oc":"#221f1f","x":20.997,"y":29.251,"w":0.75,"l":60.724},{"oc":"#221f1f","x":81.634,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.347,"y":28.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":85.347,"y":29.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.247,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":28.482,"y":29.626,"w":0.75,"l":2.028},{"oc":"#221f1f","x":28.482,"y":30.526,"w":0.75,"l":2.028},{"oc":"#221f1f","x":30.544,"y":29.626,"w":0.75,"l":2.028},{"oc":"#221f1f","x":30.544,"y":30.526,"w":0.75,"l":2.028},{"oc":"#221f1f","x":32.607,"y":29.626,"w":0.75,"l":2.028},{"oc":"#221f1f","x":32.607,"y":30.526,"w":0.75,"l":2.028},{"oc":"#221f1f","x":34.669,"y":29.626,"w":0.75,"l":2.028},{"oc":"#221f1f","x":34.669,"y":30.526,"w":0.75,"l":2.028},{"oc":"#221f1f","x":36.731,"y":29.626,"w":0.75,"l":2.028},{"oc":"#221f1f","x":36.731,"y":30.526,"w":0.75,"l":2.028},{"oc":"#221f1f","x":38.794,"y":29.626,"w":0.75,"l":2.028},{"oc":"#221f1f","x":38.794,"y":30.526,"w":0.75,"l":2.028},{"oc":"#221f1f","x":40.857,"y":29.626,"w":0.75,"l":2.028},{"oc":"#221f1f","x":40.857,"y":30.526,"w":0.75,"l":2.028},{"oc":"#221f1f","x":42.919,"y":29.626,"w":0.75,"l":2.028},{"oc":"#221f1f","x":42.919,"y":30.526,"w":0.75,"l":2.028},{"oc":"#221f1f","x":44.982,"y":29.626,"w":0.75,"l":2.028},{"oc":"#221f1f","x":44.982,"y":30.526,"w":0.75,"l":2.028},{"oc":"#221f1f","x":28.482,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":28.482,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":30.544,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":30.544,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":32.607,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":32.607,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":34.669,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":34.669,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":36.731,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":36.731,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":38.794,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":38.794,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":40.857,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":40.857,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":42.919,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":42.919,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":44.982,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":44.982,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":47.044,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":47.044,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":49.107,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":49.107,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":51.169,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":51.169,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":53.232,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":53.232,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":55.294,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":55.294,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":57.357,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":57.357,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":59.419,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":59.419,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":61.482,"y":31.126,"w":0.75,"l":2.028},{"oc":"#221f1f","x":61.482,"y":32.026,"w":0.75,"l":2.028},{"oc":"#221f1f","x":16.09,"y":32.251,"w":0.75,"l":51.975},{"oc":"#221f1f","x":68.022,"y":32.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":68.022,"y":33.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":77.922,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.922,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.19,"y":33.751,"w":0.75,"l":75.488},{"oc":"#221f1f","x":81.634,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":85.347,"y":35.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":95.247,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":16.09,"y":35.251,"w":0.75,"l":51.975},{"oc":"#221f1f","x":68.022,"y":35.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":77.922,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.19,"y":36.001,"w":1.5,"l":92.813},{"oc":"#221f1f","x":6.19,"y":38.251,"w":1.125,"l":92.813},{"oc":"#221f1f","x":6.147,"y":42.751,"w":1.125,"l":9.986},{"oc":"#221f1f","x":14.809,"y":42.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":18.522,"y":41.251,"w":0.75,"l":32.261},{"oc":"#221f1f","x":50.697,"y":41.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":59.359,"y":41.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.159,"y":41.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.159,"y":42.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":18.522,"y":42.751,"w":1.125,"l":26.073},{"oc":"#221f1f","x":44.509,"y":42.751,"w":1.125,"l":24.836},{"oc":"#221f1f","x":69.259,"y":42.751,"w":1.125,"l":8.748},{"oc":"#221f1f","x":77.922,"y":42.751,"w":1.125,"l":8.748},{"oc":"#221f1f","x":86.584,"y":42.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":18.506,"y":44.251,"w":0.75,"l":59.486},{"oc":"#221f1f","x":18.506,"y":45.001,"w":0.75,"l":59.486},{"oc":"#221f1f","x":77.922,"y":44.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":77.922,"y":45.001,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":45.751,"w":1.5,"l":92.899},{"oc":"#57585a","x":86.713,"y":42.72,"w":1.5,"l":12.203},{"oc":"#57585a","x":86.713,"y":42.032,"w":1.5,"l":12.203}],"VLines":[{"oc":"#221f1f","x":95.29,"y":2.97,"w":0.75,"l":0.797},{"oc":"#221f1f","x":81.677,"y":3.876,"w":2.25,"l":1.25},{"oc":"#221f1f","x":77.965,"y":3.876,"w":2.25,"l":1.25},{"oc":"#221f1f","x":15.299,"y":6.126,"w":0.75,"l":12.375},{"oc":"#221f1f","x":6.19,"y":6.126,"w":0.75,"l":12.375},{"oc":"#221f1f","x":95.29,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":8.978,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":10.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":16.486,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":17.978,"w":0.75,"l":1.539},{"oc":"#221f1f","x":77.965,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":15.299,"y":21.501,"w":0.75,"l":2.487},{"oc":"#221f1f","x":6.19,"y":21.501,"w":0.75,"l":2.487},{"oc":"#221f1f","x":77.965,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":25.478,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.97,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.527,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":28.465,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":32.589,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":30.527,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":34.652,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":32.59,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":36.714,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":34.652,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":38.777,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":36.714,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":40.84,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":38.777,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":42.902,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":40.84,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":44.964,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":42.902,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":47.027,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":44.965,"y":29.632,"w":0.75,"l":0.888},{"oc":"#221f1f","x":30.527,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":28.465,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":32.589,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":30.527,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":34.652,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":32.59,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":36.714,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":34.652,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":38.777,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":36.714,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":40.84,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":38.777,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":42.902,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":40.84,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":44.964,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":42.902,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":47.027,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":44.965,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":49.09,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":47.027,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":51.152,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":49.09,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":53.215,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":51.152,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":55.277,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":53.215,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":57.339,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":55.277,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":59.402,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":57.34,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":61.465,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":59.402,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":63.527,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":61.465,"y":31.132,"w":0.75,"l":0.888},{"oc":"#221f1f","x":77.965,"y":32.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":39.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":39.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":39.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.74,"y":41.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":41.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":44.552,"y":42.728,"w":0.75,"l":1.539},{"oc":"#221f1f","x":69.302,"y":42.728,"w":0.75,"l":1.539},{"oc":"#221f1f","x":77.965,"y":42.728,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.627,"y":42.728,"w":0.75,"l":1.539},{"oc":"#221f1f","x":77.965,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":44.985,"w":0.75,"l":0.781},{"oc":"#57585a","x":98.916,"y":42.032,"w":1.5,"l":0.687},{"oc":"#57585a","x":86.713,"y":42.032,"w":1.5,"l":0.687},{"oc":"#57585a","x":88.69,"y":42.063,"w":1.5,"l":0.656},{"oc":"#57585a","x":90.752,"y":42.063,"w":1.5,"l":0.656},{"oc":"#57585a","x":92.815,"y":42.063,"w":1.5,"l":0.656},{"oc":"#57585a","x":94.877,"y":42.063,"w":1.5,"l":0.656},{"oc":"#57585a","x":96.94,"y":42.063,"w":1.5,"l":0.656},{"oc":"#57585a","x":96.94,"y":42.063,"w":1.5,"l":0.656}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#fcedf2","x":5.571,"y":2.067,"w":94.188,"h":0.937,"clr":-1},{"oc":"#fcedf2","x":15.842,"y":3.001,"w":83.903,"h":43.5,"clr":-1},{"x":85.39,"y":3.001,"w":9.9,"h":0.75,"clr":1},{"x":95.29,"y":3.001,"w":3.713,"h":0.75,"clr":1},{"x":77.965,"y":3.876,"w":3.713,"h":1.25,"clr":1},{"x":14.978,"y":6.965,"w":0.834,"h":0.599,"clr":1},{"x":14.852,"y":6.776,"w":0.688,"h":0.725,"clr":1},{"x":85.39,"y":6.751,"w":9.9,"h":0.75,"clr":1},{"x":95.29,"y":6.751,"w":3.713,"h":0.75,"clr":1},{"x":85.39,"y":7.501,"w":9.9,"h":0.75,"clr":1},{"x":95.29,"y":7.501,"w":3.713,"h":0.75,"clr":1},{"x":85.39,"y":8.251,"w":9.9,"h":0.75,"clr":1},{"x":95.29,"y":8.251,"w":3.713,"h":0.75,"clr":1},{"x":85.39,"y":9.001,"w":9.9,"h":1.5,"clr":1},{"x":95.29,"y":9.001,"w":3.713,"h":1.5,"clr":1},{"x":85.39,"y":10.501,"w":9.9,"h":0.75,"clr":1},{"x":95.29,"y":10.501,"w":3.713,"h":0.75,"clr":1},{"x":68.065,"y":11.251,"w":9.9,"h":1.5,"clr":1},{"x":77.965,"y":11.251,"w":3.713,"h":1.5,"clr":1},{"x":68.065,"y":12.751,"w":9.9,"h":1.5,"clr":1},{"x":77.965,"y":12.751,"w":3.713,"h":1.5,"clr":1},{"x":68.065,"y":14.251,"w":9.9,"h":0.75,"clr":1},{"x":77.965,"y":14.251,"w":3.713,"h":0.75,"clr":1},{"x":68.065,"y":15.001,"w":9.9,"h":1.5,"clr":1},{"x":77.965,"y":15.001,"w":3.713,"h":1.5,"clr":1},{"x":68.065,"y":16.501,"w":9.9,"h":0.75,"clr":1},{"x":77.965,"y":16.501,"w":3.713,"h":0.75,"clr":1},{"x":85.39,"y":17.251,"w":9.9,"h":0.75,"clr":1},{"x":95.29,"y":17.251,"w":3.713,"h":0.75,"clr":1},{"x":85.39,"y":18.001,"w":9.9,"h":1.5,"clr":1},{"x":95.29,"y":18.001,"w":3.713,"h":1.5,"clr":1},{"x":68.065,"y":19.501,"w":9.9,"h":1.5,"clr":1},{"x":77.965,"y":19.501,"w":3.713,"h":1.5,"clr":1},{"x":68.065,"y":21.001,"w":9.9,"h":1.5,"clr":1},{"x":77.965,"y":21.001,"w":3.713,"h":1.5,"clr":1},{"x":14.852,"y":22.526,"w":0.688,"h":0.725,"clr":1},{"x":68.065,"y":22.501,"w":9.9,"h":0.75,"clr":1},{"x":77.965,"y":22.501,"w":3.713,"h":0.75,"clr":1},{"x":50.74,"y":23.251,"w":9.9,"h":1.5,"clr":1},{"x":60.64,"y":23.251,"w":3.713,"h":1.5,"clr":1},{"x":68.065,"y":24.751,"w":13.612,"h":0.75,"clr":1},{"x":68.065,"y":25.501,"w":9.9,"h":0.75,"clr":1},{"x":77.965,"y":25.501,"w":3.713,"h":0.75,"clr":1},{"x":85.39,"y":26.251,"w":13.613,"h":0.75,"clr":1},{"x":85.39,"y":27.001,"w":9.9,"h":1.5,"clr":1},{"x":95.29,"y":27.001,"w":3.713,"h":1.5,"clr":1},{"x":85.39,"y":28.501,"w":9.9,"h":0.75,"clr":1},{"x":95.29,"y":28.501,"w":3.713,"h":0.75,"clr":1},{"x":28.465,"y":29.626,"w":2.062,"h":0.9,"clr":1},{"x":30.527,"y":29.626,"w":2.062,"h":0.9,"clr":1},{"x":32.59,"y":29.626,"w":2.062,"h":0.9,"clr":1},{"x":34.652,"y":29.626,"w":2.062,"h":0.9,"clr":1},{"x":36.714,"y":29.626,"w":2.062,"h":0.9,"clr":1},{"x":38.777,"y":29.626,"w":2.062,"h":0.9,"clr":1},{"x":40.84,"y":29.626,"w":2.062,"h":0.9,"clr":1},{"x":42.902,"y":29.626,"w":2.062,"h":0.9,"clr":1},{"x":44.965,"y":29.626,"w":2.062,"h":0.9,"clr":1},{"x":28.465,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":30.527,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":32.59,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":34.652,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":36.714,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":38.777,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":40.84,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":42.902,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":44.965,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":47.027,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":49.09,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":51.152,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":53.215,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":55.277,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":57.34,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":59.402,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":61.465,"y":31.126,"w":2.062,"h":0.9,"clr":1},{"x":68.065,"y":32.251,"w":9.9,"h":1.5,"clr":1},{"x":77.965,"y":32.251,"w":3.713,"h":1.5,"clr":1},{"x":85.39,"y":33.751,"w":9.9,"h":1.5,"clr":1},{"x":95.29,"y":33.751,"w":3.713,"h":1.5,"clr":1},{"x":68.065,"y":35.251,"w":9.9,"h":0.75,"clr":1},{"x":77.965,"y":35.251,"w":3.713,"h":0.75,"clr":1},{"x":27.227,"y":36.751,"w":23.512,"h":1.5,"clr":1},{"x":58.165,"y":36.751,"w":14.85,"h":1.5,"clr":1},{"x":18.565,"y":39.751,"w":32.175,"h":1.5,"clr":1},{"x":50.74,"y":39.751,"w":8.662,"h":1.5,"clr":1},{"x":59.402,"y":39.751,"w":19.8,"h":1.5,"clr":1},{"x":79.202,"y":39.751,"w":19.8,"h":1.5,"clr":1},{"x":18.565,"y":41.251,"w":32.175,"h":1.5,"clr":1},{"x":50.74,"y":41.251,"w":8.662,"h":1.5,"clr":1},{"x":59.402,"y":41.251,"w":19.8,"h":1.5,"clr":1},{"x":79.202,"y":41.251,"w":19.8,"h":1.5,"clr":1},{"x":86.627,"y":42.001,"w":12.375,"h":0.75,"clr":1},{"x":18.565,"y":42.751,"w":25.988,"h":1.5,"clr":1},{"x":44.552,"y":42.751,"w":24.75,"h":1.5,"clr":1},{"x":69.302,"y":42.751,"w":8.662,"h":1.5,"clr":1},{"x":77.965,"y":42.751,"w":8.663,"h":1.5,"clr":1},{"x":86.627,"y":42.751,"w":12.375,"h":1.5,"clr":1},{"x":18.549,"y":44.251,"w":59.4,"h":0.75,"clr":1},{"x":18.549,"y":45.001,"w":59.4,"h":0.75,"clr":1},{"x":77.965,"y":44.251,"w":21.038,"h":0.75,"clr":1},{"x":77.965,"y":45.001,"w":21.038,"h":0.75,"clr":1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.001,"w":8.504000000000001,"clr":-1,"A":"left","R":[{"T":"Form%201040A%20(2013)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":93.815,"y":2.01,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.797,"y":2.01,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":2.929,"w":6.114000000000001,"clr":-1,"A":"left","R":[{"T":"Tax%2C%20credits%2C%20","S":-1,"TS":[0,11.8,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.7539999999999996,"w":2.056,"clr":-1,"A":"left","R":[{"T":"and%20","S":-1,"TS":[0,11.8,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.579,"w":4.668,"clr":-1,"A":"left","R":[{"T":"payments","S":-1,"TS":[0,11.8,1,0]}]},{"oc":"#221f1f","x":16.403,"y":2.822,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":2.822,"w":24.489000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2021%20(adjusted%20gross%20income).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":81.426,"y":2.822,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":3.572,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":18.315,"y":3.572,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":3.572,"w":3.149,"clr":-1,"A":"left","R":[{"T":"Check%20","S":-1,"TS":[0,11.3,0,0]}]},{"oc":"#221f1f","x":20.79,"y":4.26,"w":0.796,"clr":-1,"A":"left","R":[{"T":"if%3A","S":-1,"TS":[0,11.3,0,0]}]},{"oc":"#221f1f","x":25.22,"y":4.082,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7B","S":-1,"TS":[2,15.6,0,0]}]},{"oc":"#221f1f","x":29.043,"y":3.572,"w":1.889,"clr":-1,"A":"left","R":[{"T":"You","S":-1,"TS":[0,11.8,1,0]}]},{"oc":"#221f1f","x":31.872999999999998,"y":3.572,"w":15.633000000000008,"clr":-1,"A":"left","R":[{"T":"%20were%20born%20before%20January%202%2C%201949%2C","S":-1,"TS":[0,11.8,0,0]}]},{"oc":"#221f1f","x":58.533,"y":3.572,"w":2.278,"clr":-1,"A":"left","R":[{"T":"Blind","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.081,"y":4.291,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11.3,1,0]}]},{"oc":"#221f1f","x":34.181,"y":4.291,"w":15.263000000000007,"clr":-1,"A":"left","R":[{"T":"%20was%20born%20before%20January%202%2C%201949%2C","S":-1,"TS":[0,11.3,0,0]}]},{"oc":"#221f1f","x":58.535,"y":4.291,"w":2.278,"clr":-1,"A":"left","R":[{"T":"Blind","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.964,"y":4.082,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[2,15.6,0,0]}]},{"oc":"#221f1f","x":64.102,"y":3.5410000000000004,"w":5.834999999999999,"clr":-1,"A":"left","R":[{"T":"Total%20boxes%20","S":-1,"TS":[0,11.6,1,0]}]},{"oc":"#221f1f","x":64.102,"y":4.291,"w":4.558,"clr":-1,"A":"left","R":[{"T":"checked%20%20","S":-1,"TS":[0,11.6,1,0]}]},{"oc":"#221f1f","x":70.946,"y":4.197,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.765,"y":4.322,"w":1.649,"clr":-1,"A":"left","R":[{"T":"23a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":18.315,"y":5.072,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":5.072,"w":27.058000000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20married%20filing%20separately%20and%20your%20spouse%20itemizes%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":5.822,"w":10.466000000000003,"clr":-1,"A":"left","R":[{"T":"deductions%2C%20check%20here","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":71.006,"y":5.729,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.765,"y":5.822,"w":1.705,"clr":-1,"A":"left","R":[{"T":"23b","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.283,"y":5.773,"w":4.890000000000001,"clr":-1,"A":"left","R":[{"T":"Standard%20%20","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":6.283,"y":6.211,"w":5.445,"clr":-1,"A":"left","R":[{"T":"Deduction%20%20","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":6.283,"y":6.648,"w":1.666,"clr":-1,"A":"left","R":[{"T":"for-","S":-1,"TS":[0,10.5,1,0]}]},{"oc":"#221f1f","x":6.283,"y":7.273,"w":6.611000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20People%20who%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":7.710000000000001,"w":5.113000000000001,"clr":-1,"A":"left","R":[{"T":"check%20any%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":8.147,"w":5.464,"clr":-1,"A":"left","R":[{"T":"box%20on%20line%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":8.585,"w":5.095000000000001,"clr":-1,"A":"left","R":[{"T":"23a%20or%2023b%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":12.851,"y":8.585,"w":1.278,"clr":-1,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":9.022,"w":5.76,"clr":-1,"A":"left","R":[{"T":"who%20%20can%20be%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":9.46,"w":6.186999999999999,"clr":-1,"A":"left","R":[{"T":"claimed%20as%20a%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":9.897,"w":5.651000000000002,"clr":-1,"A":"left","R":[{"T":"dependent%2C%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":10.334,"w":1.8519999999999999,"clr":-1,"A":"left","R":[{"T":"see%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":10.772,"w":5.742000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":11.396,"w":5.519000000000002,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20All%20others%3A%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":12.021,"w":4.5,"clr":-1,"A":"left","R":[{"T":"Single%20or%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":12.459,"w":6.352,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":12.896,"w":5.445,"clr":-1,"A":"left","R":[{"T":"separately%2C%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":13.333,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"%246%2C100%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":13.958,"w":6.352,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":14.395,"w":4.352,"clr":-1,"A":"left","R":[{"T":"jointly%20or%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":14.833,"w":5.001000000000001,"clr":-1,"A":"left","R":[{"T":"Qualifying%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":15.27,"w":5.127000000000001,"clr":-1,"A":"left","R":[{"T":"widow(er)%2C%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":15.707,"w":4.17,"clr":-1,"A":"left","R":[{"T":"%2412%2C200%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":16.332,"w":4.093,"clr":-1,"A":"left","R":[{"T":"Head%20of%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":16.77,"w":5.502000000000001,"clr":-1,"A":"left","R":[{"T":"household%2C%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":6.283,"y":17.207,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"%248%2C950%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":16.403,"y":6.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":6.572,"w":4.871,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":28.13,"y":6.572,"w":9.557,"clr":-1,"A":"left","R":[{"T":"standard%20deduction.","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":16.403,"y":7.321999999999999,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":7.321999999999999,"w":30.640000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2024%20from%20line%2022.%20If%20line%2024%20is%20more%20than%20line%2022%2C%20enter%20-0-.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":81.426,"y":7.321999999999999,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":8.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":8.072,"w":6.224,"clr":-1,"A":"left","R":[{"T":"Exemptions.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":31.245,"y":8.072,"w":18.805999999999997,"clr":-1,"A":"left","R":[{"T":"Multiply%20%243%2C900%20by%20the%20number%20on%20line%206d.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":81.427,"y":8.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":8.822,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":8.822,"w":31.196,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2026%20from%20line%2025.%20If%20line%2026%20is%20more%20than%20line%2025%2C%20enter%20-0-.%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":9.572,"w":5.371,"clr":-1,"A":"left","R":[{"T":"This%20is%20your%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.162,"y":9.572,"w":7.503,"clr":-1,"A":"left","R":[{"T":"taxable%20income.","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":78.837,"y":9.479,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.427,"y":9.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":10.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":10.322,"w":2.2790000000000004,"clr":-1,"A":"left","R":[{"T":"Tax%2C%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":24.705,"y":10.322,"w":24.951000000000004,"clr":-1,"A":"left","R":[{"T":"including%20any%20alternative%20minimum%20tax%20(see%20instructions).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":81.426,"y":10.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":11.072,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":11.072,"w":24.19,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20child%20and%20dependent%20care%20expenses.%20Attach%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":11.822,"w":5.114000000000001,"clr":-1,"A":"left","R":[{"T":"Form%202441.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.102,"y":11.822,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":12.572,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":12.572,"w":20.076999999999998,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20the%20elderly%20or%20the%20disabled.%20Attach%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":13.322,"w":5.427000000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20R.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.102,"y":13.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":14.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":14.072,"w":19.025000000000006,"clr":-1,"A":"left","R":[{"T":"Education%20credits%20from%20Form%208863%2C%20line%2019.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.101,"y":14.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":14.822,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":14.822,"w":21.523,"clr":-1,"A":"left","R":[{"T":"Retirement%20savings%20contributions%20credit.%20Attach%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":15.572,"w":5.114000000000001,"clr":-1,"A":"left","R":[{"T":"Form%208880.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.102,"y":15.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"32","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":16.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":16.322,"w":22.541999999999998,"clr":-1,"A":"left","R":[{"T":"Child%20tax%20credit.%20Attach%20Schedule%208812%2C%20if%20required.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.101,"y":16.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":17.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"34","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":17.072,"w":18.135000000000005,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2029%20through%2033.%20These%20are%20your%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":48.006,"y":17.072,"w":5.946,"clr":-1,"A":"left","R":[{"T":"total%20credits.","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":81.427,"y":17.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"34","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":17.822,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":17.822,"w":34.048,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2034%20from%20line%2028.%20If%20line%2034%20is%20more%20than%20line%2028%2C%20enter%20-0-.%20This%20is%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":18.572,"w":2.241,"clr":-1,"A":"left","R":[{"T":"your%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":24.126,"y":18.572,"w":4.112,"clr":-1,"A":"left","R":[{"T":"total%20tax.","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":81.427,"y":18.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"35","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":19.322,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":19.322,"w":22.412,"clr":-1,"A":"left","R":[{"T":"Federal%20income%20tax%20withheld%20from%20Forms%20W-2%20and%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":20.072,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"1099.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.102,"y":20.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"36","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":20.822,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":20.822,"w":22.71400000000001,"clr":-1,"A":"left","R":[{"T":"2013%20estimated%20tax%20payments%20and%20amount%20applied%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":21.572,"w":7.7440000000000015,"clr":-1,"A":"left","R":[{"T":"from%202012%20return.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.102,"y":21.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"37","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.283,"y":21.133,"w":5.427,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.283,"y":21.633,"w":5.371,"clr":-1,"A":"left","R":[{"T":"a%20qualifying%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.283,"y":22.133,"w":5.760999999999999,"clr":-1,"A":"left","R":[{"T":"child%2C%20attach%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.283,"y":22.633,"w":4.742000000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.283,"y":23.133,"w":1.87,"clr":-1,"A":"left","R":[{"T":"EIC.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":16.403,"y":22.322,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"38a","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.759,"y":22.322,"w":13.059000000000003,"clr":-1,"A":"left","R":[{"T":"Earned%20income%20credit%20(EIC).","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":64.102,"y":22.322,"w":1.649,"clr":-1,"A":"left","R":[{"T":"38a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":18.315,"y":23.072,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":23.072,"w":10.984000000000002,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20combat%20pay%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":23.822,"w":3.778,"clr":-1,"A":"left","R":[{"T":"election.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":46.777,"y":23.822,"w":1.705,"clr":-1,"A":"left","R":[{"T":"38b","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":24.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"39","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":24.572,"w":22.061000000000007,"clr":-1,"A":"left","R":[{"T":"Additional%20child%20tax%20credit.%20Attach%20Schedule%208812.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.102,"y":24.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"39","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":25.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"40","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":25.322,"w":23.1,"clr":-1,"A":"left","R":[{"T":"American%20opportunity%20credit%20from%20Form%208863%2C%20line%208.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.101,"y":25.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":26.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"41","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":26.072,"w":22.176,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2036%2C%2037%2C%2038a%2C%2039%2C%20and%2040.%20These%20are%20your%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.264,"y":26.072,"w":7.335000000000001,"clr":-1,"A":"left","R":[{"T":"total%20payments.","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":78.737,"y":25.978,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.427,"y":26.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"41","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":27.242,"w":3.722,"clr":-1,"A":"left","R":[{"T":"Refund%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":5.94,"y":28.433,"w":2.9259999999999997,"clr":-1,"A":"left","R":[{"T":"Direct%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":28.933,"w":4.167999999999999,"clr":-1,"A":"left","R":[{"T":"deposit%3F%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":29.433,"w":2.278,"clr":-1,"A":"left","R":[{"T":"See%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":29.933,"w":5.464,"clr":-1,"A":"left","R":[{"T":"instructions%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":30.433,"w":4.26,"clr":-1,"A":"left","R":[{"T":"and%20fill%20in%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":30.933,"w":4.466000000000001,"clr":-1,"A":"left","R":[{"T":"43b%2C%2043c%2C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":31.433,"w":5.132,"clr":-1,"A":"left","R":[{"T":"and%2043d%20or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":31.933,"w":5.114000000000001,"clr":-1,"A":"left","R":[{"T":"Form%208888.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":16.403,"y":26.822,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":26.822,"w":26.602000000000004,"clr":-1,"A":"left","R":[{"T":"If%20line%2041%20is%20more%20than%20line%2035%2C%20subtract%20line%2035%20from%20line%2041.%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":27.572,"w":10.392999999999999,"clr":-1,"A":"left","R":[{"T":"This%20is%20the%20amount%20you%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":36.59,"y":27.572,"w":4.446,"clr":-1,"A":"left","R":[{"T":"overpaid.","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":81.427,"y":27.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"42","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":28.322,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"43a","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":28.322,"w":12.485000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20line%2042%20you%20want%20","S":-1,"TS":[0,11.9,0,0]}]},{"oc":"#221f1f","x":38.169,"y":28.322,"w":8.111999999999998,"clr":-1,"A":"left","R":[{"T":"refunded%20to%20you.%20","S":-1,"TS":[0,11.9,1,0]}]},{"oc":"#221f1f","x":49.492,"y":28.322,"w":16.635000000000005,"clr":-1,"A":"left","R":[{"T":"If%20Form%208888%20is%20attached%2C%20check%20here%20","S":-1,"TS":[0,11.9,0,0]}]},{"oc":"#221f1f","x":77.686,"y":28.228,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.427,"y":28.322,"w":1.649,"clr":-1,"A":"left","R":[{"T":"43a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.84,"y":29.457,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.315,"y":29.385,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.796,"y":29.197,"w":3.7600000000000002,"clr":-1,"A":"left","R":[{"T":"Routing%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.796,"y":29.822,"w":3.428,"clr":-1,"A":"left","R":[{"T":"number","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":49.252,"y":29.353,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.933,"y":29.447,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":52.398,"y":29.447,"w":2.7600000000000002,"clr":-1,"A":"left","R":[{"T":"%20Type%3A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":60.286,"y":29.447,"w":4.223,"clr":-1,"A":"left","R":[{"T":"Checking","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":71.527,"y":29.447,"w":3.537,"clr":-1,"A":"left","R":[{"T":"Savings","S":-1,"TS":[0,12.5,0,0]}]},{"oc":"#221f1f","x":15.84,"y":30.957,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.315,"y":30.885,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.796,"y":30.697,"w":4.001,"clr":-1,"A":"left","R":[{"T":"Account%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.796,"y":31.322000000000003,"w":3.428,"clr":-1,"A":"left","R":[{"T":"number","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":32.072,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":32.072,"w":12.485000000000003,"clr":-1,"A":"left","R":[{"T":"Amount%20of%20line%2042%20you%20want%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":39.498,"y":32.072,"w":7.167999999999999,"clr":-1,"A":"left","R":[{"T":"applied%20to%20your","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":32.822,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"2014%20estimated%20tax.","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":64.102,"y":32.822,"w":1.112,"clr":-1,"A":"left","R":[{"T":"44","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":33.867,"w":4.055,"clr":-1,"A":"left","R":[{"T":"Amount%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":5.94,"y":34.617,"w":4.0009999999999994,"clr":-1,"A":"left","R":[{"T":"you%20owe","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":16.403,"y":33.572,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":33.572,"w":8.611999999999998,"clr":-1,"A":"left","R":[{"T":"Amount%20you%20owe.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":35.182,"y":33.572,"w":25.024000000000008,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2041%20from%20line%2035.%20For%20details%20on%20how%20to%20pay%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.79,"y":34.322,"w":7.594000000000001,"clr":-1,"A":"left","R":[{"T":"see%20instructions.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":78.866,"y":34.229,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.427,"y":34.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"45","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":16.403,"y":35.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"46","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":20.79,"y":35.072,"w":17.781000000000002,"clr":-1,"A":"left","R":[{"T":"Estimated%20tax%20penalty%20(see%20instructions).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.101,"y":35.072,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"46%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":36.087,"w":5.501000000000001,"clr":-1,"A":"left","R":[{"T":"Third%20party%20","S":-1,"TS":[0,14.2,1,0]}]},{"oc":"#221f1f","x":5.94,"y":36.987,"w":4.335,"clr":-1,"A":"left","R":[{"T":"designee","S":-1,"TS":[0,14.2,1,0]}]},{"oc":"#221f1f","x":18.315,"y":35.858,"w":40.15199999999999,"clr":-1,"A":"left","R":[{"T":"Do%20you%20want%20to%20allow%20another%20person%20to%20discuss%20this%20return%20with%20the%20IRS%20(see%20instructions)%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":75.832,"y":35.839,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.659,"y":35.839,"w":10.871000000000002,"clr":-1,"A":"left","R":[{"T":"%20Complete%20the%20following.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":96.767,"y":35.839,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":18.315,"y":36.751,"w":5.223000000000001,"clr":-1,"A":"left","R":[{"T":"Designee%E2%80%99s%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.315,"y":37.251,"w":5.263000000000002,"clr":-1,"A":"left","R":[{"T":"name%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":24.647,"y":37.188,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":51.727,"y":36.751,"w":3.4270000000000005,"clr":-1,"A":"left","R":[{"T":"Phone%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.727,"y":37.251,"w":3.354,"clr":-1,"A":"left","R":[{"T":"no.%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":55.762,"y":37.188,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":74.002,"y":36.751,"w":10.167,"clr":-1,"A":"left","R":[{"T":"Personal%20identification%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.002,"y":37.251,"w":10.023000000000007,"clr":-1,"A":"left","R":[{"T":"number%20(PIN)%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.061,"y":37.188,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":5.94,"y":38.505,"w":2.445,"clr":-1,"A":"left","R":[{"T":"Sign%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.94,"y":39.255,"w":2.112,"clr":-1,"A":"left","R":[{"T":"here","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.94,"y":39.952,"w":6.206000000000001,"clr":-1,"A":"left","R":[{"T":"Joint%20return%3F%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":40.514,"w":7.742000000000001,"clr":-1,"A":"left","R":[{"T":"See%20instructions.%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.077,"w":5.909000000000001,"clr":-1,"A":"left","R":[{"T":"Keep%20a%20copy%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.577,"w":7.407,"clr":-1,"A":"left","R":[{"T":"for%20your%20records.","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":18.315,"y":37.907,"w":57.626999999999946,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20return%20and%20accompanying%20schedules%20and%20statements%2C%20and%20to%20the%20be","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.152,"y":37.907,"w":9.020000000000001,"clr":-1,"A":"left","R":[{"T":"st%20of%20my%20knowledge%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.309,"y":38.345,"w":55.17599999999995,"clr":-1,"A":"left","R":[{"T":"and%20belief%2C%20they%20are%20true%2C%20correct%2C%20and%20accurately%20list%20all%20amounts%20and%20sources%20of%20income%20I%20received%20during%20the%20tax%20year.%20Decla","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.829,"y":38.345,"w":10.889000000000001,"clr":-1,"A":"left","R":[{"T":"ration%20of%20preparer%20(other%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.321,"y":38.782,"w":39.06099999999999,"clr":-1,"A":"left","R":[{"T":"than%20the%20taxpayer)%20is%20based%20on%20all%20information%20of%20which%20the%20preparer%20has%20any%20knowledge.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.84,"y":39.263,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,50.9994,0,0],"RA":90}]},{"oc":"#221f1f","x":18.315,"y":39.438,"w":6.519000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.177,"y":39.438,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.84,"y":39.407,"w":7.390000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20occupation","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":39.407,"w":10.468,"clr":-1,"A":"left","R":[{"T":"Daytime%20phone%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.315,"y":40.938,"w":16.151000000000003,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20signature.%20If%20a%20joint%20return%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.746,"y":40.938,"w":2.167,"clr":-1,"A":"left","R":[{"T":"both","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.353,"y":40.938,"w":4.91,"clr":-1,"A":"left","R":[{"T":"%20must%20sign.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.177,"y":40.938,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.84,"y":40.907,"w":9.465,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20occupation","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":41.001,"w":18.318000000000005,"clr":-1,"A":"left","R":[{"T":"If%20the%20IRS%20sent%20you%20an%20Identity%20Protection%20","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"oc":"#221f1f","x":79.64,"y":41.438,"w":5.834000000000001,"clr":-1,"A":"left","R":[{"T":"PIN%2C%20enter%20it%20%20","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"oc":"#221f1f","x":79.64,"y":41.876,"w":6.482000000000001,"clr":-1,"A":"left","R":[{"T":"here%20(see%20inst.)","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"oc":"#221f1f","x":5.94,"y":42.762,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Paid%20","S":-1,"TS":[0,14.56,1,0]}]},{"oc":"#221f1f","x":5.94,"y":43.662,"w":4.613000000000001,"clr":-1,"A":"left","R":[{"T":"preparer%20%20","S":-1,"TS":[0,14.56,1,0]}]},{"oc":"#221f1f","x":5.94,"y":44.562,"w":4.057,"clr":-1,"A":"left","R":[{"T":"use%20only","S":-1,"TS":[0,14.56,1,0]}]},{"oc":"#221f1f","x":18.315,"y":42.438,"w":11.965000000000005,"clr":-1,"A":"left","R":[{"T":"Print%2Ftype%20preparer's%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.99,"y":42.438,"w":9.037000000000003,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.74,"y":42.438,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.23,"y":42.716,"w":3.149,"clr":-1,"A":"left","R":[{"T":"Check%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.019,"y":42.654,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":85.285,"y":42.716,"w":0.796,"clr":-1,"A":"left","R":[{"T":"if%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.231,"y":43.241,"w":6.353,"clr":-1,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.065,"y":42.438,"w":2.203,"clr":-1,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.299,"y":44.001,"w":5.7989999999999995,"clr":-1,"A":"left","R":[{"T":"Firm's%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":25.276,"y":43.938,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":18.299,"y":44.751,"w":6.908999999999999,"clr":-1,"A":"left","R":[{"T":"Firm's%20address%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.611,"y":44.688,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":78.402,"y":44.001,"w":4.9079999999999995,"clr":-1,"A":"left","R":[{"T":"Firm's%20EIN%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.307,"y":43.938,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":78.402,"y":44.751,"w":4.557,"clr":-1,"A":"left","R":[{"T":"Phone%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.499,"y":45.572,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.641,"y":45.572,"w":3.224,"clr":-1,"A":"left","R":[{"T":"1040A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":45.572,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.427,"y":6.572,"w":42.782000000000004,"clr":-1,"A":"left","R":[{"T":"24","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":351,"AM":1024,"x":21.646,"y":1.909,"w":30.878,"h":0.843,"TU":"Your first name and initial"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":352,"AM":1024,"x":53.754,"y":1.991,"w":17.825,"h":0.846,"TU":"Your social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":353,"AM":1024,"x":84.066,"y":3.006,"w":11.115,"h":0.833,"TU":"Tax, credits, 22 Enter the amount from line 21 (adjusted gross income). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N21A","EN":0},"TI":356,"AM":1024,"x":78.051,"y":4,"w":3.56,"h":1.098},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":360,"AM":0,"x":85.028,"y":6.788,"w":10.154,"h":0.833,"TU":"24 Enter your standard deduction. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":361,"AM":1024,"x":85.22,"y":7.398,"w":9.961,"h":0.837,"TU":"Subtract line 24 from line 22. If line 24 is more than 22, enter zero."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":362,"AM":0,"x":85.22,"y":8.218,"w":10.025,"h":0.833,"TU":"26 Exemptions. Multiply $3,900 by the number on line 6d. "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L26T","EN":0},"TI":363,"AM":0,"x":53.682,"y":9.738,"w":8.154,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26W","EN":0},"TI":364,"AM":0,"x":63.754,"y":9.803,"w":14.45,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":365,"AM":1024,"x":85.11,"y":9.508,"w":10.117,"h":0.9,"TU":"27 Subtract line 26 from line 25. If line 26 is more than line 25, enter -0-. This is your taxable income. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":366,"AM":0,"x":84.963,"y":10.475,"w":10.498,"h":0.833,"TU":"28 Tax, including any alternative minimum tax (see instructions)."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2441"}},"id":{"Id":"Add_F2441","EN":0},"TI":367,"AM":1024,"x":30.544,"y":11.802,"w":5.91,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":368,"AM":1024,"x":68.178,"y":11.681,"w":9.773,"h":1.054,"TU":"29 Credit for child and dependent care expenses. Attach Form 2441. "},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHR"}},"id":{"Id":"Add_SchR","EN":0},"TI":369,"AM":1024,"x":30.651,"y":13.283,"w":5.91,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":370,"AM":1024,"x":68.167,"y":13.274,"w":9.991,"h":0.961,"TU":"30 Credit for the elderly or the disabled. Attach Schedule R."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8863"}},"id":{"Id":"Add_F8863","EN":0},"TI":371,"AM":1024,"x":51.373,"y":14.139,"w":5.91,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":372,"AM":1024,"x":68.195,"y":14.323,"w":10,"h":0.833,"TU":"31 Education credits from Form 8863, line 19. "},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8880"}},"id":{"Id":"Add_F8880","EN":0},"TI":373,"AM":1024,"x":30.469,"y":15.475,"w":5.91,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RSCCRED","EN":0},"TI":374,"AM":1024,"x":67.915,"y":15.458,"w":9.991,"h":0.979,"TU":"32 Retirement savings contribution credit. Attach Form 8880"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":375,"AM":0,"x":67.897,"y":16.558,"w":9.991,"h":0.833,"TU":"33 Child tax credit. Attach Schedule 8812 if required."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":376,"AM":1024,"x":84.984,"y":17.118,"w":10.24,"h":0.86,"TU":"34 Add lines 29 through 33. These are your total credits. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":377,"AM":1024,"x":84.981,"y":18.578,"w":10.497,"h":0.963,"TU":"35 Subtract line 34 from line 28. If line 34 is more than line 28, enter -0-. This is your total tax. "},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"L37B1","EN":0},"TI":378,"AM":0,"x":31.967,"y":20.23,"w":14.167,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37B2","EN":0},"TI":379,"AM":0,"x":48.141,"y":20.154,"w":9.203,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":380,"AM":0,"x":68.236,"y":19.977,"w":9.764,"h":0.98,"TU":"Line 36. Federal income tax withheld from Forms W-2 and 1099."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":381,"AM":0,"x":68.076,"y":21.373,"w":9.794,"h":1.04,"TU":"37 2013 estimated tax payments and amount applied from 2012 return."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHEIC"}},"id":{"Id":"Add_FSCHEIC","EN":0},"TI":382,"AM":1024,"x":44.46,"y":22.333,"w":5.91,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L38W","EN":0},"TI":383,"AM":0,"x":54.055,"y":22.52,"w":9.203,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38A","EN":0},"TI":384,"AM":0,"x":68.021,"y":22.468,"w":9.813,"h":0.833,"TU":"38a Earned income credit (EIC). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCOMBAT","EN":0},"TI":385,"AM":0,"x":50.56,"y":23.622,"w":10.173,"h":1.063,"TU":"Nontaxable combat pay election"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SST1","EN":0},"TI":386,"AM":0,"x":82.497,"y":23.558,"w":9.299,"h":0.876},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8812"}},"id":{"Id":"Add_F8812","EN":0},"TI":387,"AM":0,"x":55.752,"y":24.692,"w":3.664,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":388,"AM":1024,"x":67.913,"y":24.562,"w":10.115,"h":0.916,"TU":"39 Additional child tax credit. Attach Schedule 8812. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SST2","EN":0},"TI":389,"AM":0,"x":82.983,"y":24.723,"w":8.04,"h":0.834},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8863"}},"id":{"Id":"Add_F8863","EN":0},"TI":390,"AM":1024,"x":57.483,"y":25.395,"w":3.267,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOPE","EN":0},"TI":391,"AM":1024,"x":68.084,"y":25.545,"w":9.808,"h":0.833,"TU":"40 American opportunity credit from Form 8863, line 8. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":392,"AM":0,"x":84.918,"y":26.141,"w":10.435,"h":0.833,"TU":"41 Add lines 36, 37, 38a, 39, and 40. These are your total payments. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":393,"AM":1024,"x":85.189,"y":27.445,"w":10.237,"h":0.9,"TU":"42 If line 41 is more than line 35, subtract line 35 from line 41. This is the amount you overpaid."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8888"}},"id":{"Id":"Add_F8888","EN":0},"TI":394,"AM":0,"x":72.831,"y":28.404,"w":3.532,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42A","EN":0},"TI":396,"AM":1024,"x":85.346,"y":28.468,"w":10.179,"h":0.833,"TU":"43a Amount of line 42 you want refunded to you. "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ROUTNO","EN":0},"TI":397,"AM":0,"x":28.483,"y":29.647,"w":18.542,"h":0.863,"TU":"43b Routing number","MV":"maxl:9"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCNO","EN":0},"TI":400,"AM":0,"x":28.483,"y":31.147,"w":35.042,"h":0.863,"TU":"43d Account number","MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L43","EN":0},"TI":401,"AM":0,"x":67.976,"y":32.564,"w":10.021,"h":1.129,"TU":"44 Amount of line 42 you want applied to your 2014 estimated tax. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L44","EN":0},"TI":402,"AM":1024,"x":85.3,"y":34.143,"w":10.119,"h":1.133,"TU":"45 Amount you owe. Subtract line 41 from line 35. For details on how to pay, see instructions. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L45","EN":0},"TI":403,"AM":0,"x":67.817,"y":35.232,"w":16.924,"h":0.833,"TU":"46 Estimated tax penalty (see instructions). "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESNAM","EN":0},"TI":406,"AM":0,"x":27.104,"y":37.154,"w":23.565,"h":1.023,"TU":"Designee's name"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DESPH","EN":0},"TI":407,"AM":0,"x":56.89,"y":37.16,"w":16.841,"h":1.038,"TU":"Phone number"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DESPIN","EN":0},"TI":408,"AM":0,"x":87.862,"y":37.373,"w":11.138,"h":0.833,"TU":"Personal Identification number (PIN)","MV":"99999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":409,"AM":0,"x":59.483,"y":40.381,"w":19.152,"h":0.844,"TU":"Your occupation"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DTPHO","EN":0},"TI":410,"AM":0,"x":79.772,"y":40.339,"w":19.166,"h":0.896,"TU":"Daytime phone number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SOCC","EN":0},"TI":411,"AM":0,"x":59.43,"y":41.821,"w":19.309,"h":0.962,"TU":"Spouse’s occupation"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"IDTHEFT","EN":0},"TI":412,"AM":0,"x":86.708,"y":41.907,"w":12.21,"h":0.833,"TU":"If the IRS sent you an Identity Protection PIN, enter it here (see instructions)","MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIG","EN":0},"TI":413,"AM":1024,"x":44.811,"y":43.383,"w":23.767,"h":0.833,"V":"Not for use by paid preparers"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":414,"AM":1024,"x":27.211,"y":44.278,"w":26.446,"h":0.833,"V":"Self-prepared"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21A1","EN":0},"TI":354,"AM":0,"x":27.207,"y":3.693,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21A2","EN":0},"TI":355,"AM":0,"x":56.928,"y":3.716,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21A3","EN":0},"TI":357,"AM":0,"x":27.188,"y":4.513,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21A4","EN":0},"TI":358,"AM":0,"x":57.024,"y":4.5,"w":1.329,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21B","EN":0},"TI":359,"AM":0,"x":79.216,"y":5.889,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FM8888","EN":0},"TI":395,"AM":1024,"x":79.571,"y":28.457,"w":1.629,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCC","EN":0},"TI":398,"AM":0,"x":58.125,"y":29.541,"w":1.723,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCS","EN":0},"TI":399,"AM":0,"x":69.286,"y":29.612,"w":1.723,"h":0.833,"checked":false}],"id":{"Id":"ACCRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PPDY","EN":0},"TI":404,"AM":0,"x":74.199,"y":36,"w":1.723,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PPDN","EN":0},"TI":405,"AM":0,"x":94.945,"y":35.945,"w":1.723,"h":0.833,"checked":false}],"id":{"Id":"PPDRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"U.S. Individual Income Tax Return","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131205093716-08'00'","ModDate":"D:20140131180256-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":29.235,"y":3.751,"w":1.5,"l":6.781,"oc":"#221f1f"},{"x":29.235,"y":4.501,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":2.235,"y":3.751,"w":1.5,"l":11.281,"oc":"#221f1f"},{"x":2.235,"y":6.001,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":13.485,"y":3.751,"w":1.5,"l":15.781,"oc":"#221f1f"},{"x":13.485,"y":6.001,"w":0.75,"l":15.781,"oc":"#221f1f"},{"x":29.235,"y":4.501,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":2.235,"y":6.001,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":2.235,"y":7.501,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":13.501,"y":7.501,"w":0.75,"l":15.75,"oc":"#221f1f"},{"x":13.501,"y":6.001,"w":0.75,"l":15.75,"oc":"#221f1f"},{"x":29.235,"y":6.001,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":29.235,"y":7.501,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":29.235,"y":9.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.135,"y":9.001,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":2.235,"y":7.501,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":2.235,"y":9.001,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":26.101,"y":9.001,"w":0.75,"l":3.15,"oc":"#221f1f"},{"x":26.101,"y":7.501,"w":0.75,"l":3.15,"oc":"#221f1f"},{"x":2.235,"y":9.001,"w":0.75,"l":27.031,"oc":"#221f1f"},{"x":2.235,"y":10.501,"w":0.75,"l":27.031,"oc":"#221f1f"},{"x":2.235,"y":10.501,"w":0.75,"l":13.981,"oc":"#221f1f"},{"x":2.235,"y":12.001,"w":0.75,"l":13.981,"oc":"#221f1f"},{"x":16.201,"y":12.001,"w":0.75,"l":9,"oc":"#221f1f"},{"x":16.201,"y":10.501,"w":0.75,"l":9,"oc":"#221f1f"},{"x":25.201,"y":12.001,"w":0.75,"l":4.05,"oc":"#221f1f"},{"x":25.201,"y":10.501,"w":0.75,"l":4.05,"oc":"#221f1f"},{"x":29.235,"y":9.001,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":29.235,"y":12.001,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":13.035,"y":15.001,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":30.585,"y":14.251,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":2.251,"y":15.001,"w":1.5,"l":33.75,"oc":"#221f1f"},{"x":6.735,"y":19.501,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":6.735,"y":17.251,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":16.185,"y":17.251,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":21.585,"y":17.251,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":26.535,"y":17.251,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":26.535,"y":19.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":6.735,"y":19.501,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":6.735,"y":20.251,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":6.735,"y":19.501,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":16.185,"y":19.501,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":21.585,"y":19.501,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":26.535,"y":20.251,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":28.382,"y":20.157,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":28.382,"y":19.595,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":6.735,"y":20.251,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":6.735,"y":21.001,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":6.735,"y":20.251,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":16.185,"y":20.251,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":21.585,"y":20.251,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":26.535,"y":21.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":28.382,"y":20.907,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":28.382,"y":20.345,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":6.735,"y":21.001,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":6.735,"y":21.751,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":6.735,"y":21.001,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":16.185,"y":21.001,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":21.585,"y":21.001,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":26.535,"y":21.751,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":28.382,"y":21.657,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":28.382,"y":21.095,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":6.735,"y":21.751,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":6.735,"y":22.501,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":6.735,"y":21.751,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":16.185,"y":21.751,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":21.585,"y":21.751,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":26.535,"y":22.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":28.382,"y":22.407,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":28.382,"y":21.845,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":6.735,"y":22.501,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":6.735,"y":23.251,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":6.735,"y":22.501,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":16.185,"y":22.501,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":21.585,"y":22.501,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":26.535,"y":23.251,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":28.382,"y":23.157,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":28.382,"y":22.595,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":6.735,"y":23.251,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":6.735,"y":24.001,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":6.735,"y":23.251,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":6.735,"y":24.001,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":16.185,"y":23.251,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":16.185,"y":24.001,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":21.601,"y":24.001,"w":0.75,"l":4.95,"oc":"#221f1f"},{"x":21.601,"y":23.251,"w":0.75,"l":4.95,"oc":"#221f1f"},{"x":26.535,"y":24.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":16.502,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":18.752,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":21.377,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":23.252,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.651,"y":25.314,"w":1.5,"l":1.35,"oc":"#221f1f"},{"x":34.651,"y":24.126,"w":1.5,"l":1.35,"oc":"#221f1f"},{"x":2.251,"y":25.501,"w":1.5,"l":28.35,"oc":"#221f1f"},{"x":30.585,"y":25.501,"w":1.5,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":25.501,"w":1.5,"l":1.381,"oc":"#221f1f"},{"x":6.751,"y":27.001,"w":0.75,"l":23.85,"oc":"#221f1f"},{"x":30.585,"y":27.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":27.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":8.551,"y":28.501,"w":0.75,"l":22.05,"oc":"#221f1f"},{"x":23.835,"y":28.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.885,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":6.751,"y":29.251,"w":0.75,"l":22.5,"oc":"#221f1f"},{"x":30.585,"y":28.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":8.551,"y":30.001,"w":0.75,"l":22.05,"oc":"#221f1f"},{"x":23.835,"y":30.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.885,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":6.751,"y":30.751,"w":0.75,"l":22.5,"oc":"#221f1f"},{"x":30.585,"y":30.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":6.751,"y":31.501,"w":0.75,"l":23.85,"oc":"#221f1f"},{"x":15.283,"y":31.501,"w":0.75,"l":4.074,"oc":"#221f1f"},{"x":15.283,"y":33.001,"w":0.75,"l":4.074,"oc":"#221f1f"},{"x":19.335,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.335,"y":33.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":31.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":30.585,"y":33.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":33.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":6.751,"y":33.001,"w":0.75,"l":23.85,"oc":"#221f1f"},{"x":15.285,"y":33.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":15.285,"y":34.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":19.335,"y":33.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.335,"y":34.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":33.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":30.585,"y":34.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":33.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":34.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":6.751,"y":34.501,"w":0.75,"l":23.85,"oc":"#221f1f"},{"x":30.585,"y":34.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":34.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":36.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":36.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":6.751,"y":36.001,"w":0.75,"l":23.85,"oc":"#221f1f"},{"x":15.285,"y":36.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":15.285,"y":37.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":19.335,"y":36.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.335,"y":37.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.235,"y":37.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":36.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":36.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":6.751,"y":37.501,"w":0.75,"l":23.85,"oc":"#221f1f"},{"x":30.585,"y":37.501,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":37.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":39.001,"w":1.5,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":39.001,"w":1.5,"l":1.381,"oc":"#221f1f"},{"x":2.251,"y":39.001,"w":1.5,"l":28.35,"oc":"#221f1f"},{"x":23.835,"y":39.001,"w":1.5,"l":4.081,"oc":"#221f1f"},{"x":27.885,"y":39.001,"w":1.5,"l":1.381,"oc":"#221f1f"},{"x":6.751,"y":40.501,"w":0.75,"l":17.1,"oc":"#221f1f"},{"x":23.835,"y":40.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.885,"y":40.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":6.751,"y":41.251,"w":0.75,"l":17.1,"oc":"#221f1f"},{"x":23.835,"y":41.251,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.885,"y":41.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":6.751,"y":42.001,"w":0.75,"l":17.1,"oc":"#221f1f"},{"x":22.485,"y":43.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":23.835,"y":42.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.885,"y":42.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.851,"y":43.501,"w":1.125,"l":5.4,"oc":"#221f1f"},{"x":6.751,"y":43.501,"w":0.75,"l":17.1,"oc":"#221f1f"},{"x":29.235,"y":44.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":6.751,"y":44.251,"w":0.75,"l":23.85,"oc":"#221f1f"},{"x":30.585,"y":44.251,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":44.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":45.751,"w":1.5,"l":24.811,"oc":"#221f1f"},{"x":26.985,"y":45.751,"w":1.5,"l":4.081,"oc":"#221f1f"},{"x":31.035,"y":45.751,"w":1.5,"l":4.981,"oc":"#221f1f"},{"x":23.835,"y":40.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.885,"y":40.501,"w":0.75,"l":1.381,"oc":"#221f1f"}],"VLines":[{"x":29.251,"y":3.72,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":13.501,"y":3.72,"w":0.75,"l":2.297,"oc":"#221f1f"},{"x":29.251,"y":3.72,"w":0.75,"l":2.297,"oc":"#221f1f"},{"x":13.501,"y":3.72,"w":0.75,"l":2.297,"oc":"#221f1f"},{"x":29.251,"y":4.485,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":31.363,"y":5.251,"w":0.75,"l":0.625,"oc":"#221f1f","dsh":1},{"x":32.713,"y":5.251,"w":0.75,"l":0.625,"oc":"#221f1f","dsh":1},{"x":13.501,"y":5.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":6.001,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":13.501,"y":6.001,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":29.251,"y":5.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.363,"y":6.751,"w":0.75,"l":0.625,"oc":"#221f1f","dsh":1},{"x":32.713,"y":6.751,"w":0.75,"l":0.625,"oc":"#221f1f","dsh":1},{"x":26.101,"y":7.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":7.501,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":26.101,"y":7.501,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":29.251,"y":8.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.201,"y":10.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":10.501,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":16.201,"y":10.501,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":29.251,"y":10.501,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":25.201,"y":10.501,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":16.201,"y":17.236,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":21.601,"y":17.236,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":26.551,"y":17.236,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":16.201,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":26.551,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.945,"y":19.595,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":28.382,"y":19.595,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":16.201,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":26.551,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.945,"y":20.345,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":28.382,"y":20.345,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":16.201,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":26.551,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.945,"y":21.095,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":28.382,"y":21.095,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":16.201,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":26.551,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.945,"y":21.845,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":28.382,"y":21.845,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":16.201,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":26.551,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.945,"y":22.595,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":28.382,"y":22.595,"w":0.75,"l":0.563,"oc":"#221f1f"},{"x":16.201,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":26.551,"y":23.251,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.601,"y":23.251,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":36.001,"y":24.126,"w":1.5,"l":1.188,"oc":"#221f1f"},{"x":34.651,"y":24.126,"w":1.5,"l":1.188,"oc":"#221f1f"},{"x":34.651,"y":25.47,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":34.651,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.901,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.901,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.351,"y":31.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":31.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.351,"y":32.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":32.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":34.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":35.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.351,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":37.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":38.235,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":27.901,"y":38.97,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":27.901,"y":40.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.901,"y":41.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.901,"y":41.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":43.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":44.227,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":44.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.901,"y":39.72,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":20.803,"y":8.953,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":23.366,"y":8.953,"w":0.75,"l":1.531,"oc":"#221f1f"}],"Fills":[{"x":6.661,"y":2.251,"w":29.52,"h":43.5,"oc":"#fbedf1"},{"x":2.026,"y":45.751,"w":34.155,"h":1,"oc":"#fbedf1"},{"x":29.251,"y":3.751,"w":6.75,"h":0.75,"clr":1},{"x":2.251,"y":3.751,"w":11.25,"h":2.25,"clr":1},{"x":13.501,"y":3.751,"w":15.75,"h":2.25,"clr":1},{"x":29.251,"y":4.501,"w":6.75,"h":1.5,"clr":1},{"x":2.251,"y":6.001,"w":11.25,"h":1.5,"clr":1},{"x":13.501,"y":6.001,"w":15.75,"h":1.5,"clr":1},{"x":29.251,"y":6.001,"w":6.75,"h":1.5,"clr":1},{"x":2.251,"y":7.501,"w":23.85,"h":1.5,"clr":1},{"x":26.101,"y":7.501,"w":3.15,"h":1.5,"clr":1},{"x":2.251,"y":9.001,"w":27,"h":1.5,"clr":1},{"x":2.251,"y":10.501,"w":13.95,"h":1.5,"clr":1},{"x":16.201,"y":10.501,"w":9,"h":1.5,"clr":1},{"x":25.201,"y":10.501,"w":4.05,"h":1.5,"clr":1},{"x":13.051,"y":14.251,"w":8.55,"h":0.75,"clr":1},{"x":30.601,"y":13.501,"w":5.4,"h":0.75,"clr":1},{"x":6.751,"y":19.501,"w":9.45,"h":0.75,"clr":1},{"x":16.201,"y":19.501,"w":5.4,"h":0.75,"clr":1},{"x":21.601,"y":19.501,"w":4.95,"h":0.75,"clr":1},{"x":6.751,"y":20.251,"w":9.45,"h":0.75,"clr":1},{"x":16.201,"y":20.251,"w":5.4,"h":0.75,"clr":1},{"x":21.601,"y":20.251,"w":4.95,"h":0.75,"clr":1},{"x":6.751,"y":21.001,"w":9.45,"h":0.75,"clr":1},{"x":16.201,"y":21.001,"w":5.4,"h":0.75,"clr":1},{"x":21.601,"y":21.001,"w":4.95,"h":0.75,"clr":1},{"x":6.751,"y":21.751,"w":9.45,"h":0.75,"clr":1},{"x":16.201,"y":21.751,"w":5.4,"h":0.75,"clr":1},{"x":21.601,"y":21.751,"w":4.95,"h":0.75,"clr":1},{"x":6.751,"y":22.501,"w":9.45,"h":0.75,"clr":1},{"x":16.201,"y":22.501,"w":5.4,"h":0.75,"clr":1},{"x":21.601,"y":22.501,"w":4.95,"h":0.75,"clr":1},{"x":6.751,"y":23.251,"w":9.45,"h":0.75,"clr":1},{"x":16.201,"y":23.251,"w":5.4,"h":0.75,"clr":1},{"x":21.601,"y":23.251,"w":4.95,"h":0.75,"clr":1},{"x":30.601,"y":25.501,"w":4.05,"h":0.75,"clr":1},{"x":30.601,"y":26.251,"w":5.4,"h":0.75,"clr":1},{"x":30.601,"y":27.001,"w":4.05,"h":0.75,"clr":1},{"x":30.601,"y":27.751,"w":5.4,"h":0.75,"clr":1},{"x":23.851,"y":28.501,"w":4.05,"h":0.75,"clr":1},{"x":30.601,"y":28.501,"w":4.05,"h":0.75,"clr":1},{"x":30.601,"y":29.251,"w":5.4,"h":0.75,"clr":1},{"x":23.851,"y":30.001,"w":4.05,"h":0.75,"clr":1},{"x":30.601,"y":30.001,"w":4.05,"h":0.75,"clr":1},{"x":30.601,"y":30.751,"w":5.4,"h":0.75,"clr":1},{"x":15.298,"y":31.501,"w":4.043,"h":1.5,"clr":1},{"x":30.601,"y":31.501,"w":4.05,"h":1.5,"clr":1},{"x":15.301,"y":33.001,"w":4.05,"h":1.5,"clr":1},{"x":30.601,"y":33.001,"w":4.05,"h":1.5,"clr":1},{"x":30.601,"y":34.501,"w":4.05,"h":0.75,"clr":1},{"x":30.601,"y":35.251,"w":4.05,"h":0.75,"clr":1},{"x":15.301,"y":36.001,"w":4.05,"h":1.5,"clr":1},{"x":30.601,"y":36.001,"w":4.05,"h":1.5,"clr":1},{"x":30.601,"y":37.501,"w":4.05,"h":0.75,"clr":1},{"x":30.601,"y":38.251,"w":4.05,"h":0.75,"clr":1},{"x":23.851,"y":39.001,"w":4.05,"h":0.75,"clr":1},{"x":23.851,"y":40.501,"w":4.05,"h":0.75,"clr":1},{"x":23.851,"y":41.251,"w":4.05,"h":0.75,"clr":1},{"x":23.851,"y":42.001,"w":4.05,"h":1.5,"clr":1},{"x":30.601,"y":43.501,"w":5.4,"h":0.75,"clr":1},{"x":30.601,"y":44.251,"w":4.05,"h":0.75,"clr":1},{"x":30.601,"y":45.001,"w":5.4,"h":0.75,"clr":1},{"x":23.851,"y":39.751,"w":4.05,"h":0.75,"clr":1}],"Texts":[{"x":2.001,"y":1.8639999999999999,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":2.701,"w":2.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1040A","S":11,"TS":[0,18,1,0]}]},{"x":21.801,"y":2.751,"w":2.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2013","S":11,"TS":[0,18,1,0]}]},{"x":6.951,"y":2.786,"w":16.171,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"U.S. Individual Income Tax Return","S":-1,"TS":[0,16,1,0]}]},{"x":6.951,"y":1.9729999999999999,"w":24.633,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury—Internal Revenue Service ","S":2,"TS":[0,10,0,0]}]},{"x":25.801,"y":2.723,"w":22.743,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"IRS Use Only—Do not write or staple in this space.","S":2,"TS":[0,10,0,0]}]},{"x":17.726,"y":2.751,"w":1.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (99)","S":2,"TS":[0,10,0,0]}]},{"x":30.345,"y":3.5629999999999997,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":3.439,"w":11.632,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your first name and initial ","S":2,"TS":[0,10,0,0]}]},{"x":13.501,"y":3.439,"w":4.947,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Last name ","S":2,"TS":[0,10,0,0]}]},{"x":29.251,"y":4.22,"w":13.727,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Your social security number ","S":8,"TS":[0,10,1,0]}]},{"x":2.001,"y":5.688,"w":20.56,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If a joint return, spouse’s first name and initial ","S":2,"TS":[0,10,0,0]}]},{"x":13.501,"y":5.688,"w":4.947,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Last name ","S":2,"TS":[0,10,0,0]}]},{"x":29.251,"y":5.688,"w":15.855,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Spouse's social security number ","S":-1,"TS":[0,9.3,1,0]}]},{"x":29.138,"y":7.537000000000001,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c","S":-1,"TS":[0,13,0,0]}]},{"x":30.051,"y":7.336,"w":12.965,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Make sure the SSN(s) above ","S":2,"TS":[0,10,0,0]}]},{"x":30.269,"y":7.861000000000001,"w":11.687,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and on line 6c are correct.","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":7.188,"w":34.157,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Home address (number and street). If you have a P.O. box, see instructions. ","S":2,"TS":[0,10,0,0]}]},{"x":26.781,"y":7.188,"w":3.798,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Apt. no. ","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":10.188,"w":9.78,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Foreign country name","S":2,"TS":[0,10,0,0]}]},{"x":16.201,"y":10.188,"w":13.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Foreign province/state/county","S":2,"TS":[0,10,0,0]}]},{"x":25.201,"y":10.188,"w":9.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Foreign postal code ","S":-1,"TS":[0,9.3,0,0]}]},{"x":29.56,"y":8.723,"w":14.949,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Presidential Election Campaign","S":-1,"TS":[0,9.3,1,0]}]},{"x":29.126,"y":9.367,"w":18.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check here if you, or your spouse if filing ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":29.126,"y":9.867,"w":19.69,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"jointly, want $3 to go to this fund. Checking ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":29.126,"y":10.367,"w":17.814,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a box below will not change your tax or ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":29.126,"y":10.866,"w":3.427,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"refund. ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":32.54,"y":11.013,"w":2.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You ","S":-1,"TS":[0,9.3,1,0]}]},{"x":34.288,"y":11.013,"w":3.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.09,1,0]}]},{"x":2.001,"y":11.974,"w":2.945,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Filing ","S":-1,"TS":[0,16,1,0]}]},{"x":2.001,"y":12.786,"w":3.223,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"status ","S":-1,"TS":[0,16,1,0]}]},{"x":2.001,"y":13.376,"w":5.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check only ","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":13.876,"w":3.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"one box.","S":2,"TS":[0,10,0,0]}]},{"x":7.053,"y":11.822,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1","S":10,"TS":[0,14,1,0]}]},{"x":8.751,"y":11.822,"w":2.759,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Single","S":-1,"TS":[0,13,0,0]}]},{"x":7.053,"y":12.572,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2","S":10,"TS":[0,14,1,0]}]},{"x":8.751,"y":12.572,"w":22.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Married filing jointly (even if only one had income)","S":-1,"TS":[0,12.1,0,0]}]},{"x":7.053,"y":13.322,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3","S":10,"TS":[0,14,1,0]}]},{"x":8.751,"y":13.322,"w":25.466,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Married filing separately. Enter spouse’s SSN above and ","S":-1,"TS":[0,11,0,0]}]},{"x":8.751,"y":14.01,"w":6.854,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"full name here. ","S":-1,"TS":[0,11,0,0]}]},{"x":12.178,"y":13.916,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":21.627,"y":11.822,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4","S":10,"TS":[0,14,1,0]}]},{"x":23.151,"y":11.885,"w":19.613,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Head of household (with qualifying person). ","S":-1,"TS":[0,10.7,0,0]}]},{"x":32.089,"y":11.885,"w":7.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(See instructions.)","S":-1,"TS":[0,9.16,0,0]}]},{"x":35.662,"y":11.885,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,10.7,0,0]}]},{"x":23.151,"y":12.572,"w":25.748,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If the qualifying person is a child but not your dependent, ","S":-1,"TS":[0,10.9,0,0]}]},{"x":23.151,"y":13.26,"w":13.171,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"enter this child’s name here. ","S":-1,"TS":[0,10.9,0,0]}]},{"x":29.654,"y":13.166,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":21.627,"y":14.01,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5","S":10,"TS":[0,14,1,0]}]},{"x":23.151,"y":14.01,"w":18.926,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Qualifying widow(er) with dependent child ","S":-1,"TS":[0,11.2,0,0]}]},{"x":31.725,"y":14.01,"w":7.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions)","S":-1,"TS":[0,8.775,0,0]}]},{"x":2.001,"y":14.974,"w":5.627,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Exemptions","S":-1,"TS":[0,15,0,0]}]},{"x":7.053,"y":14.822,"w":1.13,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6a","S":-1,"TS":[0,13,0,0]}]},{"x":9.081,"y":14.822,"w":4.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yourself.","S":10,"TS":[0,14,1,0]}]},{"x":12.226,"y":14.822,"w":19.21,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If someone can claim you as a dependent, ","S":-1,"TS":[0,13,0,0]}]},{"x":22.669,"y":14.822,"w":3.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"do not ","S":10,"TS":[0,14,1,0]}]},{"x":24.691,"y":14.822,"w":2.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"check ","S":-1,"TS":[0,13,0,0]}]},{"x":12.226,"y":15.572,"w":3.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"box 6a.","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":16.26,"w":0.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"b","S":-1,"TS":[0,13,0,0]}]},{"x":9.159,"y":16.291,"w":3.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Spouse","S":10,"TS":[0,14,1,0]}]},{"x":29.698,"y":15.850000000000001,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[2,16.5,0,0]}]},{"x":7.401,"y":17.072,"w":0.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"c","S":-1,"TS":[0,13,0,0]}]},{"x":8.301,"y":17.135,"w":6.334,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Dependents: ","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":18.508,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(1) ","S":-1,"TS":[0,11,1,0]}]},{"x":9.014,"y":18.508,"w":4.705,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"First name","S":-1,"TS":[0,11,0,0]}]},{"x":11.366,"y":18.508,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":12.877,"y":18.508,"w":4.669,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Last name","S":-1,"TS":[0,11,0,0]}]},{"x":16.307,"y":17.449,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(2) ","S":-1,"TS":[0,10.5,1,0]}]},{"x":16.975,"y":17.449,"w":8.576,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Dependent’s social","S":-1,"TS":[0,10.5,0,0]}]},{"x":20.995,"y":17.449,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,10.5,0,0]}]},{"x":16.962,"y":18.012,"w":7.206,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"security number","S":-1,"TS":[0,10.5,0,0]}]},{"x":22.043,"y":17.437,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(3) ","S":-1,"TS":[0,11,1,0]}]},{"x":22.756,"y":17.437,"w":5.706,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Dependent’s","S":-1,"TS":[0,11,0,0]}]},{"x":25.609,"y":17.437,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":21.765,"y":18.037,"w":6.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"relationship to","S":-1,"TS":[0,11,0,0]}]},{"x":24.932,"y":18.037,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":25.071,"y":18.037,"w":1.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you","S":-1,"TS":[0,11,0,0]}]},{"x":26.535,"y":17.061,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(4) ","S":-1,"TS":[0,10.5,1,0]}]},{"x":27.204,"y":17.061,"w":0.755,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"\u0014","S":-1,"TS":[0,15,0,0]}]},{"x":27.77,"y":17.061,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,10.5,0,0]}]},{"x":27.901,"y":17.061,"w":0.518,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"if","S":-1,"TS":[0,10.5,0,0]}]},{"x":28.143,"y":17.061,"w":5.261,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" child under","S":51,"TS":[0,9,0,0]}]},{"x":26.624,"y":17.555,"w":9.353,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"age 17 qualifying for ","S":51,"TS":[0,9,0,0]}]},{"x":26.694,"y":18.055,"w":8.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"child tax credit (see ","S":51,"TS":[0,9,0,0]}]},{"x":27.305,"y":18.555,"w":5.445,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions)","S":51,"TS":[0,9,0,0]}]},{"x":2.001,"y":17.976,"w":7.168,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If more than six ","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":18.601,"w":7.725,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"dependents, see ","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":19.227,"w":5.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions.","S":2,"TS":[0,10,0,0]}]},{"x":7.401,"y":24.572,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":24.572,"w":16.616,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total number of exemptions claimed.","S":-1,"TS":[0,13,0,0]}]},{"x":30.801,"y":14.751,"w":3.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Boxes ","S":8,"TS":[0,10,1,0]}]},{"x":30.801,"y":15.189,"w":6.058,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"checked on ","S":8,"TS":[0,10,1,0]}]},{"x":30.801,"y":15.626000000000001,"w":4.613,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6a and 6b","S":8,"TS":[0,10,1,0]}]},{"x":30.801,"y":16.189,"w":7.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No. of children ","S":8,"TS":[0,10,1,0]}]},{"x":30.801,"y":16.689,"w":5.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"on 6c who: ","S":8,"TS":[0,10,1,0]}]},{"x":30.801,"y":17.314,"w":0.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• ","S":2,"TS":[0,10,0,0]}]},{"x":31.141,"y":17.314,"w":4.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"lived with ","S":8,"TS":[0,10,1,0]}]},{"x":30.801,"y":17.814,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"you","S":8,"TS":[0,10,1,0]}]},{"x":30.801,"y":18.564,"w":0.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• ","S":-1,"TS":[0,9.86,0,0]}]},{"x":31.134,"y":18.564,"w":5.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"did not live","S":-1,"TS":[0,9.86,1,0]}]},{"x":33.365,"y":18.564,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.86,0,0]}]},{"x":30.801,"y":19.064,"w":6.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"with you due","S":-1,"TS":[0,9.86,1,0]}]},{"x":33.405,"y":19.064,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.86,0,0]}]},{"x":33.524,"y":19.064,"w":1.241,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"to ","S":-1,"TS":[0,9.86,0,0]}]},{"x":30.801,"y":19.564,"w":4.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"divorce or","S":-1,"TS":[0,9.86,1,0]}]},{"x":32.865,"y":19.564,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.86,0,0]}]},{"x":30.801,"y":20.064,"w":5.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"separation","S":-1,"TS":[0,9.86,1,0]}]},{"x":32.976,"y":20.064,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.86,0,0]}]},{"x":33.095,"y":20.064,"w":2.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(see ","S":-1,"TS":[0,9.86,1,0]}]},{"x":30.801,"y":20.564,"w":6.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"instructions)","S":-1,"TS":[0,9.86,1,0]}]},{"x":30.801,"y":21.314,"w":6.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Dependents ","S":8,"TS":[0,10,1,0]}]},{"x":30.801,"y":21.814,"w":4.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"on 6c not ","S":8,"TS":[0,10,1,0]}]},{"x":30.801,"y":22.314,"w":6.78,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"entered above","S":8,"TS":[0,10,1,0]}]},{"x":30.801,"y":23.439,"w":6.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Add numbers ","S":8,"TS":[0,10,1,0]}]},{"x":30.801,"y":23.939,"w":4.335,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"on lines ","S":8,"TS":[0,10,1,0]}]},{"x":30.801,"y":24.502,"w":3.168,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"above ","S":8,"TS":[0,10,1,0]}]},{"x":32.187,"y":24.439,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":2.001,"y":25.474,"w":3.831,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Income ","S":-1,"TS":[0,15,0,0]}]},{"x":2.001,"y":26.822,"w":3.686,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attach ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":27.447,"w":6.091,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form(s) W-2 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":28.072,"w":5.055,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"here. Also ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":28.697,"w":3.297,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"attach ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":29.322,"w":3.906,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form(s) ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":29.947,"w":6.241,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1099-R if tax ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":30.572,"w":2.203,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"was ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":31.197,"w":4.609,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"withheld. ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":32.188,"w":6.15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you did not ","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":32.688,"w":7.076,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"get a W-2, see ","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":33.189,"w":5.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions.","S":2,"TS":[0,10,0,0]}]},{"x":4.391,"y":33.189,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":4.513,"y":33.189,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":7.053,"y":26.072,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":26.072,"w":20.67,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Wages, salaries, tips, etc. Attach Form(s) W-2.","S":-1,"TS":[0,13,0,0]}]},{"x":29.502,"y":26.072,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7","S":-1,"TS":[0,13,0,0]}]},{"x":7.053,"y":27.572,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8a","S":10,"TS":[0,14,1,0]}]},{"x":8.29,"y":27.572,"w":4.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Taxable ","S":10,"TS":[0,14,1,0]}]},{"x":10.749,"y":27.572,"w":17.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"interest. Attach Schedule B if required.","S":-1,"TS":[0,13,0,0]}]},{"x":29.271,"y":27.572,"w":1.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8a","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":28.322,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":28.322,"w":5.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Tax-exempt ","S":10,"TS":[0,14,1,0]}]},{"x":11.901,"y":28.322,"w":3.593,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"interest.","S":-1,"TS":[0,13,0,0]}]},{"x":13.835,"y":28.322,"w":3.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Do not ","S":10,"TS":[0,14,1,0]}]},{"x":7.053,"y":29.072,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9a","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":29.072,"w":22.375,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Ordinary dividends. Attach Schedule B if required.","S":-1,"TS":[0,12.9,0,0]}]},{"x":29.334,"y":29.072,"w":1.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9a","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":29.822,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":29.822,"w":16.651,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Qualified dividends (see instructions).","S":-1,"TS":[0,13,0,0]}]},{"x":22.567,"y":29.822,"w":1.149,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9b","S":-1,"TS":[0,13,0,0]}]},{"x":6.706,"y":30.572,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":30.572,"w":19.206,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Capital gain distributions (see instructions).","S":-1,"TS":[0,13,0,0]}]},{"x":29.328,"y":30.572,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10","S":-1,"TS":[0,13,0,0]}]},{"x":6.706,"y":31.322000000000003,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":31.322000000000003,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":31.322000000000003,"w":2.426,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"IRA ","S":-1,"TS":[0,13,0,0]}]},{"x":8.301,"y":32.072,"w":5.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"distributions.","S":-1,"TS":[0,13,0,0]}]},{"x":13.701,"y":32.072,"w":1.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11a","S":-1,"TS":[0,13,0,0]}]},{"x":21.487,"y":31.322000000000003,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11b ","S":10,"TS":[0,14,1,0]}]},{"x":23.151,"y":31.322000000000003,"w":7.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable amount ","S":-1,"TS":[0,13,0,0]}]},{"x":23.151,"y":32.072,"w":7.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions).","S":-1,"TS":[0,13,0,0]}]},{"x":29.144,"y":32.072,"w":1.705,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11b","S":-1,"TS":[0,13,0,0]}]},{"x":6.706,"y":32.822,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":32.822,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":32.822,"w":6.335,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Pensions and ","S":-1,"TS":[0,13,0,0]}]},{"x":8.301,"y":33.572,"w":4.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"annuities.","S":-1,"TS":[0,13,0,0]}]},{"x":13.701,"y":33.572,"w":1.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12a","S":-1,"TS":[0,13,0,0]}]},{"x":21.487,"y":32.822,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12b ","S":10,"TS":[0,14,1,0]}]},{"x":23.151,"y":32.822,"w":7.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable amount ","S":-1,"TS":[0,13,0,0]}]},{"x":23.151,"y":33.572,"w":7.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions).","S":-1,"TS":[0,13,0,0]}]},{"x":29.144,"y":33.572,"w":1.705,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12b","S":-1,"TS":[0,13,0,0]}]},{"x":6.706,"y":35.072,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":35.072,"w":31.234,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Unemployment compensation and Alaska Permanent Fund dividends.","S":-1,"TS":[0,13,0,0]}]},{"x":29.328,"y":35.072,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13","S":-1,"TS":[0,13,0,0]}]},{"x":6.706,"y":35.822,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":35.822,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":35.822,"w":6.796,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Social security ","S":-1,"TS":[0,13,0,0]}]},{"x":8.301,"y":36.572,"w":3.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"benefits.","S":-1,"TS":[0,13,0,0]}]},{"x":13.701,"y":36.572,"w":1.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14a","S":-1,"TS":[0,13,0,0]}]},{"x":21.487,"y":35.822,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14b ","S":10,"TS":[0,14,1,0]}]},{"x":23.151,"y":35.822,"w":7.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable amount ","S":-1,"TS":[0,13,0,0]}]},{"x":23.151,"y":36.572,"w":7.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions).","S":-1,"TS":[0,13,0,0]}]},{"x":29.143,"y":36.572,"w":1.705,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14b","S":-1,"TS":[0,13,0,0]}]},{"x":6.706,"y":38.072,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":38.01,"w":24.451,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 7 through 14b (far right column). This is your ","S":-1,"TS":[0,13,0,0]}]},{"x":21.583,"y":38.01,"w":6.168,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"total income.","S":10,"TS":[0,14,1,0]}]},{"x":27.991,"y":37.916,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.328,"y":38.072,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":38.974,"w":4.519,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Adjusted ","S":-1,"TS":[0,15,0,0]}]},{"x":2.001,"y":39.786,"w":3.241,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"gross ","S":-1,"TS":[0,15,0,0]}]},{"x":2.001,"y":40.598,"w":3.516,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"income","S":-1,"TS":[0,15,0,0]}]},{"x":6.706,"y":39.572,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":39.572,"w":16.724,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Educator expenses (see instructions).","S":-1,"TS":[0,13,0,0]}]},{"x":22.578,"y":39.572,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16","S":-1,"TS":[0,13,0,0]}]},{"x":6.706,"y":40.322,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"17","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":40.322,"w":14.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"IRA deduction (see instructions).","S":-1,"TS":[0,13,0,0]}]},{"x":22.578,"y":40.322,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17","S":-1,"TS":[0,13,0,0]}]},{"x":6.706,"y":41.072,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"18","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":41.072,"w":22.153,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Student loan interest deduction (see instructions).","S":-1,"TS":[0,12.7,0,0]}]},{"x":22.578,"y":41.072,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18","S":-1,"TS":[0,13,0,0]}]},{"x":6.706,"y":42.572,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"19","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":42.572,"w":15.987,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Tuition and fees. Attach Form 8917.","S":-1,"TS":[0,13,0,0]}]},{"x":22.578,"y":42.572,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19","S":-1,"TS":[0,13,0,0]}]},{"x":6.706,"y":43.322,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":43.322,"w":18.135,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 16 through 19. These are your ","S":-1,"TS":[0,13,0,0]}]},{"x":18.26,"y":43.322,"w":8.557,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"total adjustments.","S":10,"TS":[0,14,1,0]}]},{"x":29.328,"y":43.322,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20","S":-1,"TS":[0,13,0,0]}]},{"x":6.706,"y":44.822,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21","S":10,"TS":[0,14,1,0]}]},{"x":8.301,"y":44.822,"w":18.505,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 20 from line 15. This is your ","S":-1,"TS":[0,13,0,0]}]},{"x":18.491,"y":44.822,"w":11.448,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"adjusted gross income. ","S":10,"TS":[0,14,1,0]}]},{"x":27.018,"y":44.822,"w":1.668,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":28.061,"y":44.729,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.328,"y":44.822,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":45.59,"w":44.014,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Disclosure, Privacy Act, and Paperwork Reduction Act Notice, see separate instructions.","S":9,"TS":[0,12,1,0]}]},{"x":27.155,"y":45.626,"w":7.41,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11327A","S":2,"TS":[0,10,0,0]}]},{"x":30.947,"y":45.59,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":3,"TS":[0,12,0,0]}]},{"x":32.416,"y":45.59,"w":3.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1040A ","S":9,"TS":[0,12,1,0]}]},{"x":34.209,"y":45.59,"w":2.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(2013)","S":3,"TS":[0,12,0,0]}]},{"x":16.048,"y":28.322,"w":8.095,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"include on line 8a.","S":-1,"TS":[0,13,0,0]}]},{"x":22.504,"y":28.322,"w":1.149,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8b","S":-1,"TS":[0,13,0,0]}]},{"x":2.022,"y":8.667,"w":320.985,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"City, town or post office. If you have a foreign address, also complete spaces below (see instructions). ","S":-1,"TS":[0,9.3,0,0]}]},{"x":23.595,"y":8.682,"w":28.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"ZIP code","S":-1,"TS":[0,9.3,0,0]}]},{"x":21.024,"y":8.682,"w":16.345,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INJUR","EN":0},"TI":73,"AM":0,"TU":"If a joint return, spouse’s first name and initial","x":3.148,"y":1.199,"w":7.209,"h":0.881},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DECE","EN":0},"TI":74,"AM":0,"TU":"If a joint return, spouse’s first name and initial","x":11.407,"y":1.184,"w":13.766,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":75,"AM":0,"TU":"Your first name","x":2.294,"y":4.667,"w":9.239,"h":1.268},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI","EN":0},"TI":76,"AM":0,"TU":"Taxpayer middle initial","x":11.77,"y":4.726,"w":1.415,"h":1.238,"MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAM","EN":0},"TI":77,"AM":0,"TU":"Last name","x":13.552,"y":4.717,"w":15.631,"h":1.268},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":78,"AM":0,"TU":"Your social security number","x":29.302,"y":5.141,"w":6.69,"h":0.844},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SNAM","EN":0},"TI":79,"AM":0,"TU":"If a joint return, spouse’s first name","x":2.272,"y":6.554,"w":9.339,"h":0.881},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SMI","EN":0},"TI":80,"AM":0,"TU":"Spouse middle initial","x":11.794,"y":6.526,"w":1.531,"h":0.912,"MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SLNM","EN":0},"TI":81,"AM":0,"TU":"Spouse Last name","x":13.553,"y":6.581,"w":15.652,"h":0.881},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":82,"AM":0,"TU":"Spouse’s social security number","x":29.302,"y":6.603,"w":6.69,"h":0.882},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":83,"AM":0,"TU":"Home address (number and street). If you have a P.O. box, see instructions.","x":2.265,"y":8.146,"w":23.79,"h":0.839},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":84,"AM":0,"TU":"Apt. no.","x":26.456,"y":8.156,"w":2.516,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":85,"AM":0,"TU":"City, town or post office. If you have a foreign address, also complete spaces below (see instructions).","x":2.265,"y":9.604,"w":18.01,"h":0.881},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":86,"AM":0,"TU":"State","x":21.202,"y":9.567,"w":1.324,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"no entry"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":87,"AM":0,"TU":"Zip code","x":23.827,"y":9.613,"w":3.285,"h":0.878},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":88,"AM":0,"x":2.296,"y":11.103,"w":12.975,"h":0.857,"PL":{"V":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"]},"V":" "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPC","EN":0},"TI":89,"AM":0,"TU":"Foreign province/state/county","x":16.253,"y":11.145,"w":8.902,"h":0.84},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":90,"AM":0,"TU":"Foreign postal code","x":25.525,"y":11.145,"w":3.401,"h":0.84},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAM","EN":0},"TI":97,"AM":0,"TU":"Child name","x":30.371,"y":13.534,"w":2.894,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN","EN":0},"TI":98,"AM":0,"TU":"Child SSN","x":33.347,"y":13.534,"w":2.811,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNM","EN":0},"TI":99,"AM":0,"TU":"Enter spouse's first name here","x":13.046,"y":14.255,"w":4.152,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNM","EN":0},"TI":100,"AM":0,"TU":"Enter spouse's last name here","x":17.575,"y":14.275,"w":4.012,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6AB","EN":0},"TI":103,"AM":1024,"TU":"Boxes checked on 6a and 6b","x":34.58,"y":15.248,"w":1.387,"h":1.337},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNR","EN":0},"TI":105,"AM":0,"x":11.96,"y":16.406,"w":6.839,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNR","EN":0},"TI":106,"AM":0,"x":23.058,"y":16.316,"w":6.711,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C1","EN":0},"TI":107,"AM":0,"TU":"Number of children on 6c who lived with you","x":34.635,"y":16.995,"w":1.387,"h":1.717},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_1_","EN":0},"TI":108,"AM":0,"TU":"Line 6. c. Dependents: Dependent 5. (1) First name.","x":6.748,"y":19.546,"w":4.436,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_1_","EN":0},"TI":109,"AM":0,"TU":"Line 6. c. Dependents: Dependent 5. (1) Last name.","x":11.343,"y":19.533,"w":4.844,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_1_","EN":0},"TI":110,"AM":0,"TU":"Line 6. c. Dependent 5. (2) Dependent's Social Security Number. 9 digits.","x":16.294,"y":19.533,"w":5.261,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_1_","EN":0},"TI":111,"AM":0,"x":21.692,"y":19.575,"w":4.365,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_2_","EN":0},"TI":113,"AM":0,"TU":"Line 6. c. Dependents: Dependent 2. (1) First name.","x":6.753,"y":20.302,"w":4.436,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_2_","EN":0},"TI":114,"AM":0,"TU":"Line 6. c. Dependents: Dependent 2. (1) Last name.","x":11.349,"y":20.289,"w":4.844,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_2_","EN":0},"TI":115,"AM":0,"TU":"Line 6. c. Dependent 2. (2) Dependent's Social Security Number. 9 digits.","x":16.3,"y":20.289,"w":5.261,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_2_","EN":0},"TI":116,"AM":0,"x":21.697,"y":20.331,"w":4.365,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"N6C2","EN":0},"TI":118,"AM":0,"TU":"Number of children on 6c who did not live with you due to divorce or separation (see instructions)","x":34.565,"y":19.923,"w":1.457,"h":1.437},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_3_","EN":0},"TI":119,"AM":0,"TU":"Line 6. c. Dependents: Dependent 3. (1) First name.","x":6.746,"y":21.057,"w":4.436,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_3_","EN":0},"TI":120,"AM":0,"TU":"Line 6. c. Dependents: Dependent 3. (1) Last name.","x":11.341,"y":21.044,"w":4.844,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_3_","EN":0},"TI":121,"AM":0,"TU":"Line 6. c. Dependent 3. (2) Dependent's Social Security Number. 9 digits.","x":16.292,"y":21.044,"w":5.261,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_3_","EN":0},"TI":122,"AM":0,"x":21.69,"y":21.086,"w":4.365,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_4_","EN":0},"TI":124,"AM":0,"TU":"Line 6. c. Dependents: Dependent 4. (1) First name.","x":6.766,"y":21.785,"w":4.436,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_4_","EN":0},"TI":125,"AM":0,"TU":"Line 6. c. Dependents: Dependent 4. (1) Last name.","x":11.361,"y":21.772,"w":4.844,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_4_","EN":0},"TI":126,"AM":0,"TU":"Line 6. c. Dependent 4. (2) Dependent's Social Security Number. 9 digits.","x":16.312,"y":21.772,"w":5.261,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_4_","EN":0},"TI":127,"AM":0,"x":21.71,"y":21.813,"w":4.365,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_5_","EN":0},"TI":129,"AM":0,"TU":"Line 6. c. Dependents: Dependent 5. (1) First name.","x":6.731,"y":22.54,"w":4.436,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_5_","EN":0},"TI":130,"AM":0,"TU":"Line 6. c. Dependents: Dependent 5. (1) Last name.","x":11.327,"y":22.526,"w":4.844,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_5_","EN":0},"TI":131,"AM":0,"TU":"Line 6. c. Dependent 5. (2) Dependent's Social Security Number. 9 digits.","x":16.278,"y":22.526,"w":5.261,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_5_","EN":0},"TI":132,"AM":0,"x":21.675,"y":22.568,"w":4.365,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C3","EN":0},"TI":133,"AM":0,"TU":"Dependents on 6c not entered above","x":34.426,"y":22.077,"w":1.597,"h":1.228},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C1_6_","EN":0},"TI":135,"AM":0,"TU":"Line 6. c. Dependents: Dependent 6. (1) First name.","x":6.724,"y":23.287,"w":4.436,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C2_6_","EN":0},"TI":136,"AM":0,"TU":"Line 6. c. Dependents: Dependent 6. (1) Last name.","x":11.32,"y":23.273,"w":4.844,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DEPEND_L6C3_6_","EN":0},"TI":137,"AM":0,"TU":"Line 6. c. Dependent 6. (2) Dependent's Social Security Number. 9 digits.","x":16.27,"y":23.273,"w":5.261,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DEPEND_L6C4_6_","EN":0},"TI":138,"AM":0,"x":21.668,"y":23.315,"w":4.365,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FDEPENDA"}},"id":{"Id":"A384","EN":0},"TI":140,"AM":1024,"x":5.886,"y":24.222,"w":1.38,"h":0.837},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6E","EN":0},"TI":141,"AM":1024,"TU":"Add numbers","x":34.57,"y":24.131,"w":1.377,"h":1.159},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7W","EN":0},"TI":142,"AM":0,"TU":"Line 7 write-in","x":22.091,"y":25.91,"w":3.04,"h":0.833,"PL":{"V":[" ","EXCESS ALLOWANCE","F8919","FB","FEC","DCB","HSH","SCH","PSO","PRI","DFC","NONE APPLY"],"D":[" ","EXCESS ALLOWANCE","F8919","FB","FEC","DCB","HSH","SCH","PSO","PRI","DFC","NONE"]},"V":"NONE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7WAMT","EN":0},"TI":143,"AM":0,"x":26.01,"y":25.894,"w":3.272,"h":1.073},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":144,"AM":0,"TU":"7 Wages, salaries, tips, etc.","x":30.575,"y":25.992,"w":4.076,"h":1.016},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHB"}},"id":{"Id":"A367","EN":0},"TI":145,"AM":1024,"x":20.093,"y":27.496,"w":1.38,"h":0.837},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":146,"AM":0,"TU":"8a Taxable interest. Attach Schedule B if required. ","x":30.575,"y":27.477,"w":4.047,"h":1.008},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":147,"AM":0,"TU":"Tax-exempt interest. Do not include on line 8a.","x":23.82,"y":28.519,"w":4.179,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHB"}},"id":{"Id":"A365","EN":0},"TI":148,"AM":1024,"x":21.477,"y":29.14,"w":1.669,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":149,"AM":0,"TU":"9a Ordinary Dividends. Attach Schedule B if required.","x":30.61,"y":29.069,"w":4.076,"h":0.961},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALDIVS","EN":0},"TI":150,"AM":0,"TU":"Qualified Dividends (see instructions)","x":23.835,"y":29.947,"w":4.179,"h":0.836},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":151,"AM":0,"TU":"10 Capital gain distributions (see instructions)","x":30.596,"y":30.393,"w":4.052,"h":1.078},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11A","EN":0},"TI":152,"AM":0,"TU":"11a IRA distributions.","x":15.203,"y":31.861,"w":4.087,"h":1.124},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"QCD","EN":0},"TI":153,"AM":0,"x":20.343,"y":31.882,"w":1.259,"h":0.959,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":154,"AM":0,"TU":"11b Taxable amount (see instructions). ","x":30.645,"y":31.931,"w":4.046,"h":1.054},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12A","EN":0},"TI":155,"AM":0,"TU":"12a Pensions and annuities.","x":15.226,"y":33.454,"w":4.064,"h":1.031},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSO","EN":0},"TI":156,"AM":0,"x":20.436,"y":33.298,"w":1.259,"h":0.917,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12B","EN":0},"TI":157,"AM":0,"TU":"12b Taxable amount (see instructions). ","x":30.645,"y":33.384,"w":3.969,"h":1.148},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L13T1","EN":0},"TI":158,"AM":0,"x":21.445,"y":34.604,"w":3.892,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13T2","EN":0},"TI":159,"AM":0,"x":25.631,"y":34.544,"w":3.347,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":160,"AM":0,"TU":"13 Unemployment compensation and Alaska Permanent Fund dividends. ","x":30.692,"y":34.884,"w":3.969,"h":1.101},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14AMOD","EN":0},"TI":161,"AM":0,"TU":"14a Social security benefits.","x":15.226,"y":36.361,"w":4.064,"h":1.117},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14LSE","EN":0},"TI":162,"AM":0,"x":19.72,"y":36.626,"w":3.346,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14B","EN":0},"TI":163,"AM":0,"TU":"14b Taxable amount (see instructions). ","x":30.715,"y":36.407,"w":3.937,"h":1.07},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":164,"AM":1024,"TU":"15 Add lines 7 through 14b (far right column). This is your total income. ","x":30.692,"y":37.915,"w":3.961,"h":1.055},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EDUCEXP","EN":0},"TI":165,"AM":0,"TU":"16 Educator expenses (see instructions). ","x":23.849,"y":39.445,"w":3.976,"h":0.97},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":166,"AM":0,"TU":"17 IRA deduction (see instructions). ","x":23.75,"y":40.468,"w":4.11,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":167,"AM":0,"TU":"18 Student loan interest deduction (see instructions). ","x":23.75,"y":41.288,"w":4.097,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8917"}},"id":{"Id":"A381","EN":0},"TI":168,"AM":0,"x":19.067,"y":42.541,"w":2.149,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TUITION","EN":0},"TI":169,"AM":1024,"TU":"19 Tuition and fees. Attach Form 8917.","x":23.779,"y":42.261,"w":4.062,"h":1.216},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":170,"AM":1024,"TU":"20 Add lines 16 through 19. These are your total adjustments. ","x":30.856,"y":43.172,"w":3.874,"h":1.055},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":171,"AM":1024,"TU":"21 Subtract line 20 from line 15. This is your adjusted gross income.","x":30.878,"y":44.571,"w":3.857,"h":1.149}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PECY","EN":0},"TI":91,"AM":0,"TU":"Presidential Election Taxpayer","x":32.063,"y":11.237,"w":0.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SECY","EN":0},"TI":92,"AM":0,"TU":"Presidential Election Spouse","x":33.862,"y":11.237,"w":0.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":93,"AM":0,"TU":"Filing Status Checkboxes.","x":8.121,"y":11.94,"w":0.626,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS4","EN":0},"TI":94,"AM":0,"TU":"Filing Status Checkboxes.","x":22.475,"y":12.004,"w":0.626,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":95,"AM":0,"TU":"Filing Status Checkboxes.","x":8.097,"y":12.68,"w":0.626,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS3","EN":0},"TI":96,"AM":0,"TU":"Filing Status Checkboxes.","x":8.077,"y":13.526,"w":0.669,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS5","EN":0},"TI":101,"AM":0,"TU":"Filing Status Checkboxes.","x":22.471,"y":14.072,"w":0.626,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6A","EN":0},"TI":102,"AM":0,"TU":"Exemption Taxpayer","x":8.507,"y":14.988,"w":0.663,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6B","EN":0},"TI":104,"AM":0,"TU":"Exemption Spouse","x":8.573,"y":16.26,"w":0.663,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_1_","EN":0},"TI":112,"AM":0,"TU":"Line 6. c. Dependent 1. (4) Check if child under age 17 qualifying for child tax credit (see instructions). ","x":28.413,"y":19.519,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_2_","EN":0},"TI":117,"AM":0,"TU":"Line 6. c. Dependent 2. (4) Check if child under age 17 qualifying for child tax credit (see instructions). ","x":28.418,"y":20.275,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_3_","EN":0},"TI":123,"AM":0,"TU":"Line 6. c. Dependent 3. (4) Check if child under age 17 qualifying for child tax credit (see instructions). ","x":28.411,"y":21.03,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_4_","EN":0},"TI":128,"AM":0,"TU":"Line 6. c. Dependent 4. (4) Check if child under age 17 qualifying for child tax credit (see instructions). ","x":28.431,"y":21.758,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_5_","EN":0},"TI":134,"AM":0,"TU":"Line 6. c. Dependent 5. (4) Check if child under age 17 qualifying for child tax credit (see instructions). ","x":28.459,"y":22.513,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPEND_L6C5_6_","EN":0},"TI":139,"AM":0,"TU":"Line 6. c. Dependent 6. (4) Check if child under age 17 qualifying for child tax credit (see instructions). ","x":28.451,"y":23.26,"w":0.5,"h":0.833}]}]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":3.001,"w":1.5,"l":31.531,"oc":"#221f1f"},{"x":33.735,"y":3.001,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":31.035,"y":3.001,"w":1.5,"l":3.631,"oc":"#221f1f"},{"x":31.035,"y":3.751,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":34.635,"y":3.001,"w":1.5,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":3.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":3.751,"w":0.75,"l":25.2,"oc":"#221f1f"},{"x":28.351,"y":5.126,"w":2.25,"l":1.35,"oc":"#221f1f"},{"x":28.351,"y":3.876,"w":2.25,"l":1.35,"oc":"#221f1f"},{"x":7.651,"y":5.251,"w":0.75,"l":22.05,"oc":"#221f1f"},{"x":5.563,"y":6.751,"w":0.75,"l":30.438,"oc":"#221f1f"},{"x":2.376,"y":6.001,"w":0.75,"l":3.062,"oc":"#221f1f"},{"x":2.376,"y":18.626,"w":0.75,"l":3.062,"oc":"#221f1f"},{"x":31.035,"y":6.751,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":31.035,"y":7.501,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":34.635,"y":6.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":7.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.563,"y":7.501,"w":0.75,"l":25.488,"oc":"#221f1f"},{"x":31.035,"y":7.501,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":31.035,"y":8.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":34.635,"y":7.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":8.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":8.251,"w":0.75,"l":25.2,"oc":"#221f1f"},{"x":29.685,"y":9.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":31.035,"y":8.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":31.035,"y":9.001,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":34.635,"y":8.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":9.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":9.001,"w":0.75,"l":25.2,"oc":"#221f1f"},{"x":31.035,"y":9.001,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":31.035,"y":10.501,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":34.635,"y":9.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":10.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":10.501,"w":1.125,"l":25.2,"oc":"#221f1f"},{"x":31.035,"y":10.501,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":31.035,"y":11.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":34.635,"y":10.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":11.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":11.251,"w":0.75,"l":25.2,"oc":"#221f1f"},{"x":24.735,"y":11.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.335,"y":11.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":12.751,"w":0.75,"l":18.9,"oc":"#221f1f"},{"x":23.385,"y":12.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.385,"y":14.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":12.751,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":24.735,"y":14.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.335,"y":12.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.335,"y":14.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":14.251,"w":0.75,"l":18.9,"oc":"#221f1f"},{"x":24.735,"y":14.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.335,"y":14.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":15.001,"w":0.75,"l":18.9,"oc":"#221f1f"},{"x":24.735,"y":15.001,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.335,"y":15.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":16.501,"w":0.75,"l":18.9,"oc":"#221f1f"},{"x":24.735,"y":16.501,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":24.735,"y":17.251,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":28.335,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.335,"y":17.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":17.251,"w":0.75,"l":18.9,"oc":"#221f1f"},{"x":29.685,"y":18.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":31.035,"y":18.001,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":34.635,"y":18.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":18.001,"w":0.75,"l":25.2,"oc":"#221f1f"},{"x":29.685,"y":19.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.035,"y":18.001,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":31.035,"y":19.501,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":34.635,"y":18.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":19.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":19.501,"w":0.75,"l":25.2,"oc":"#221f1f"},{"x":24.735,"y":19.501,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.335,"y":19.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":21.001,"w":0.75,"l":18.9,"oc":"#221f1f"},{"x":24.735,"y":21.001,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":24.735,"y":22.501,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.335,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.335,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.563,"y":22.501,"w":0.75,"l":19.188,"oc":"#221f1f"},{"x":2.376,"y":21.376,"w":0.75,"l":3.062,"oc":"#221f1f"},{"x":2.376,"y":24.113,"w":0.75,"l":3.062,"oc":"#221f1f"},{"x":24.735,"y":22.501,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":24.735,"y":23.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.335,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.335,"y":23.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.563,"y":23.251,"w":0.75,"l":19.188,"oc":"#221f1f"},{"x":18.435,"y":23.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":18.435,"y":24.751,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":22.035,"y":23.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.035,"y":24.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":24.751,"w":0.75,"l":12.6,"oc":"#221f1f"},{"x":23.385,"y":25.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":25.501,"w":0.75,"l":18.9,"oc":"#221f1f"},{"x":24.735,"y":25.501,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":24.735,"y":26.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.335,"y":25.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.335,"y":26.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":26.251,"w":0.75,"l":18.9,"oc":"#221f1f"},{"x":2.251,"y":27.001,"w":1.5,"l":33.75,"oc":"#221f1f"},{"x":31.035,"y":27.001,"w":1.5,"l":3.631,"oc":"#221f1f"},{"x":34.635,"y":27.001,"w":1.5,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":28.501,"w":0.75,"l":25.2,"oc":"#221f1f"},{"x":7.635,"y":29.251,"w":0.75,"l":22.081,"oc":"#221f1f"},{"x":29.685,"y":29.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.035,"y":28.501,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":31.035,"y":29.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":34.635,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":29.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":10.357,"y":29.626,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":10.357,"y":30.526,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":11.107,"y":29.626,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":11.107,"y":30.526,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":11.857,"y":29.626,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":11.857,"y":30.526,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":12.607,"y":29.626,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":12.607,"y":30.526,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":13.357,"y":29.626,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":13.357,"y":30.526,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":14.107,"y":29.626,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":14.107,"y":30.526,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":14.857,"y":29.626,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":14.857,"y":30.526,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":15.607,"y":29.626,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":15.607,"y":30.526,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":16.357,"y":29.626,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":16.357,"y":30.526,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":10.357,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":10.357,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":11.107,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":11.107,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":11.857,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":11.857,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":12.607,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":12.607,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":13.357,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":13.357,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":14.107,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":14.107,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":14.857,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":14.857,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":15.607,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":15.607,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":16.357,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":16.357,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":17.107,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":17.107,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":17.857,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":17.857,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":18.607,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":18.607,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":19.357,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":19.357,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":20.107,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":20.107,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":20.857,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":20.857,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":21.607,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":21.607,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":22.357,"y":31.126,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":22.357,"y":32.026,"w":0.75,"l":0.738,"oc":"#221f1f"},{"x":5.851,"y":32.251,"w":0.75,"l":18.9,"oc":"#221f1f"},{"x":24.735,"y":32.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":24.735,"y":33.751,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.335,"y":32.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.335,"y":33.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.251,"y":33.751,"w":0.75,"l":27.45,"oc":"#221f1f"},{"x":29.685,"y":35.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.035,"y":35.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":34.635,"y":35.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.851,"y":35.251,"w":0.75,"l":18.9,"oc":"#221f1f"},{"x":24.735,"y":35.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.335,"y":35.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.251,"y":36.001,"w":1.5,"l":33.75,"oc":"#221f1f"},{"x":2.251,"y":38.251,"w":1.125,"l":33.75,"oc":"#221f1f"},{"x":2.235,"y":42.751,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":5.385,"y":42.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":6.735,"y":41.251,"w":0.75,"l":11.731,"oc":"#221f1f"},{"x":18.435,"y":41.251,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":21.585,"y":41.251,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":41.251,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":42.751,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":6.735,"y":42.751,"w":1.125,"l":9.481,"oc":"#221f1f"},{"x":16.185,"y":42.751,"w":1.125,"l":9.031,"oc":"#221f1f"},{"x":25.185,"y":42.751,"w":1.125,"l":3.181,"oc":"#221f1f"},{"x":28.335,"y":42.751,"w":1.125,"l":3.181,"oc":"#221f1f"},{"x":31.485,"y":42.751,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":6.729,"y":44.251,"w":0.75,"l":21.631,"oc":"#221f1f"},{"x":6.729,"y":45.001,"w":0.75,"l":21.631,"oc":"#221f1f"},{"x":28.335,"y":44.251,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":28.335,"y":45.001,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":2.235,"y":45.751,"w":1.5,"l":33.781,"oc":"#221f1f"},{"x":31.532,"y":42.72,"w":1.5,"l":4.437,"oc":"#57585a"},{"x":31.532,"y":42.032,"w":1.5,"l":4.437,"oc":"#57585a"}],"VLines":[{"x":34.651,"y":2.97,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":29.701,"y":3.876,"w":2.25,"l":1.25,"oc":"#221f1f"},{"x":28.351,"y":3.876,"w":2.25,"l":1.25,"oc":"#221f1f"},{"x":5.563,"y":6.126,"w":0.75,"l":12.375,"oc":"#221f1f"},{"x":2.251,"y":6.126,"w":0.75,"l":12.375,"oc":"#221f1f"},{"x":34.651,"y":6.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":7.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":8.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":8.978,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.651,"y":10.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.351,"y":11.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.351,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.351,"y":14.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.351,"y":14.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.351,"y":16.486,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":17.236,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":17.978,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.351,"y":19.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.351,"y":20.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":5.563,"y":21.501,"w":0.75,"l":2.487,"oc":"#221f1f"},{"x":2.251,"y":21.501,"w":0.75,"l":2.487,"oc":"#221f1f"},{"x":28.351,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.051,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.351,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.351,"y":25.478,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":26.97,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.651,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.101,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":10.351,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":11.851,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":11.101,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":12.601,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":11.851,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":13.351,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":12.601,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":14.101,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":13.351,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":14.851,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":14.101,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":15.601,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":14.851,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":16.351,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":15.601,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":17.101,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":16.351,"y":29.632,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":11.101,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":10.351,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":11.851,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":11.101,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":12.601,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":11.851,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":13.351,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":12.601,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":14.101,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":13.351,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":14.851,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":14.101,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":15.601,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":14.851,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":16.351,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":15.601,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":17.101,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":16.351,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":17.851,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":17.101,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":18.601,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":17.851,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":19.351,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":18.601,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":20.101,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":19.351,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":20.851,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":20.101,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":21.601,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":20.851,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":22.351,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":21.601,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":23.101,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":22.351,"y":31.132,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":28.351,"y":32.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":33.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.351,"y":35.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":39.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":39.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":39.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.451,"y":41.235,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":21.601,"y":41.235,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":41.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.201,"y":42.728,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":25.201,"y":42.728,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.351,"y":42.728,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":31.501,"y":42.728,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.351,"y":44.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.351,"y":44.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.97,"y":42.032,"w":1.5,"l":0.687,"oc":"#57585a"},{"x":31.532,"y":42.032,"w":1.5,"l":0.687,"oc":"#57585a"},{"x":32.251,"y":42.063,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":33.001,"y":42.063,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":33.751,"y":42.063,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":34.501,"y":42.063,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":35.251,"y":42.063,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":35.251,"y":42.063,"w":1.5,"l":0.656,"oc":"#57585a"}],"Fills":[{"x":2.026,"y":2.067,"w":34.25,"h":0.937,"oc":"#fcedf2"},{"x":5.761,"y":3.001,"w":30.51,"h":43.5,"oc":"#fcedf2"},{"x":31.051,"y":3.001,"w":3.6,"h":0.75,"clr":1},{"x":31.051,"y":6.751,"w":3.6,"h":0.75,"clr":1},{"x":31.051,"y":7.501,"w":3.6,"h":0.75,"clr":1},{"x":31.051,"y":8.251,"w":3.6,"h":0.75,"clr":1},{"x":31.051,"y":9.001,"w":3.6,"h":1.5,"clr":1},{"x":31.051,"y":10.501,"w":3.6,"h":0.75,"clr":1},{"x":24.751,"y":11.251,"w":3.6,"h":1.5,"clr":1},{"x":24.751,"y":12.751,"w":3.6,"h":1.5,"clr":1},{"x":24.751,"y":14.251,"w":3.6,"h":0.75,"clr":1},{"x":24.751,"y":15.001,"w":3.6,"h":1.5,"clr":1},{"x":24.751,"y":16.501,"w":3.6,"h":0.75,"clr":1},{"x":31.051,"y":17.251,"w":3.6,"h":0.75,"clr":1},{"x":31.051,"y":18.001,"w":3.6,"h":1.5,"clr":1},{"x":24.751,"y":19.501,"w":3.6,"h":1.5,"clr":1},{"x":24.751,"y":21.001,"w":3.6,"h":1.5,"clr":1},{"x":24.751,"y":22.501,"w":3.6,"h":0.75,"clr":1},{"x":18.451,"y":23.251,"w":3.6,"h":1.5,"clr":1},{"x":24.751,"y":24.751,"w":4.95,"h":0.75,"clr":1},{"x":24.751,"y":25.501,"w":3.6,"h":0.75,"clr":1},{"x":31.051,"y":26.251,"w":4.95,"h":0.75,"clr":1},{"x":31.051,"y":27.001,"w":3.6,"h":1.5,"clr":1},{"x":31.051,"y":28.501,"w":3.6,"h":0.75,"clr":1},{"x":24.751,"y":32.251,"w":3.6,"h":1.5,"clr":1},{"x":31.051,"y":33.751,"w":3.6,"h":1.5,"clr":1},{"x":24.751,"y":35.251,"w":3.6,"h":0.75,"clr":1},{"x":9.901,"y":36.751,"w":8.55,"h":1.5,"clr":1},{"x":21.151,"y":36.751,"w":5.4,"h":1.5,"clr":1},{"x":6.751,"y":39.751,"w":11.7,"h":1.5,"clr":1},{"x":18.451,"y":39.751,"w":3.15,"h":1.5,"clr":1},{"x":21.601,"y":39.751,"w":7.2,"h":1.5,"clr":1},{"x":28.801,"y":39.751,"w":7.2,"h":1.5,"clr":1},{"x":6.751,"y":41.251,"w":11.7,"h":1.5,"clr":1},{"x":18.451,"y":41.251,"w":3.15,"h":1.5,"clr":1},{"x":21.601,"y":41.251,"w":7.2,"h":1.5,"clr":1},{"x":28.801,"y":41.251,"w":7.2,"h":1.5,"clr":1},{"x":31.501,"y":42.001,"w":4.5,"h":0.75,"clr":1},{"x":6.751,"y":42.751,"w":9.45,"h":1.5,"clr":1},{"x":16.201,"y":42.751,"w":9,"h":1.5,"clr":1},{"x":25.201,"y":42.751,"w":3.15,"h":1.5,"clr":1},{"x":28.351,"y":42.751,"w":3.15,"h":1.5,"clr":1},{"x":31.501,"y":42.751,"w":4.5,"h":1.5,"clr":1},{"x":6.745,"y":44.251,"w":21.6,"h":0.75,"clr":1},{"x":6.745,"y":45.001,"w":21.6,"h":0.75,"clr":1},{"x":28.351,"y":44.251,"w":7.65,"h":0.75,"clr":1},{"x":28.351,"y":45.001,"w":7.65,"h":0.75,"clr":1}],"Texts":[{"x":2.001,"y":2.001,"w":8.504,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040A (2013)","S":3,"TS":[0,12,0,0]}]},{"x":33.955,"y":2.01,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":3,"TS":[0,12,0,0]}]},{"x":35.403,"y":2.01,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":2.929,"w":6.114,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Tax, credits, ","S":-1,"TS":[0,11.8,1,0]}]},{"x":2.001,"y":3.7539999999999996,"w":2.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"and ","S":-1,"TS":[0,11.8,1,0]}]},{"x":2.001,"y":4.579,"w":4.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"payments","S":-1,"TS":[0,11.8,1,0]}]},{"x":5.806,"y":2.822,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":2.822,"w":24.489,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount from line 21 (adjusted gross income).","S":-1,"TS":[0,13,0,0]}]},{"x":29.45,"y":2.822,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":3.572,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23 ","S":10,"TS":[0,14,1,0]}]},{"x":6.501,"y":3.572,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":3.572,"w":3.149,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check ","S":-1,"TS":[0,11.3,0,0]}]},{"x":7.401,"y":4.26,"w":0.796,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"if:","S":-1,"TS":[0,11.3,0,0]}]},{"x":9.012,"y":4.082,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"{","S":-1,"TS":[2,15.6,0,0]}]},{"x":10.402,"y":3.572,"w":1.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You","S":-1,"TS":[0,11.8,1,0]}]},{"x":11.431,"y":3.572,"w":15.633,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" were born before January 2, 1949,","S":-1,"TS":[0,11.8,0,0]}]},{"x":21.126,"y":3.572,"w":2.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Blind","S":-1,"TS":[0,13,0,0]}]},{"x":10.416,"y":4.291,"w":3.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11.3,1,0]}]},{"x":12.27,"y":4.291,"w":15.263,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" was born before January 2, 1949,","S":-1,"TS":[0,11.3,0,0]}]},{"x":21.126,"y":4.291,"w":2.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Blind","S":-1,"TS":[0,13,0,0]}]},{"x":22.737,"y":4.082,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[2,15.6,0,0]}]},{"x":23.151,"y":3.5410000000000004,"w":5.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Total boxes ","S":-1,"TS":[0,11.6,1,0]}]},{"x":23.151,"y":4.291,"w":4.558,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"checked ","S":-1,"TS":[0,11.6,1,0]}]},{"x":25.639,"y":4.197,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":26.301,"y":4.322,"w":1.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23a","S":-1,"TS":[0,13,0,0]}]},{"x":6.501,"y":5.072,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":5.072,"w":27.058,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you are married filing separately and your spouse itemizes ","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":5.822,"w":10.466,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"deductions, check here","S":-1,"TS":[0,13,0,0]}]},{"x":13.942,"y":5.822,"w":19.738,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,12.5,0,0]}]},{"x":25.661,"y":5.729,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":26.301,"y":5.822,"w":1.705,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23b","S":-1,"TS":[0,13,0,0]}]},{"x":2.126,"y":5.773,"w":4.89,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Standard ","S":-1,"TS":[0,10.5,1,0]}]},{"x":2.126,"y":6.211,"w":5.445,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Deduction ","S":-1,"TS":[0,10.5,1,0]}]},{"x":2.126,"y":6.648,"w":1.666,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"for-","S":-1,"TS":[0,10.5,1,0]}]},{"x":2.126,"y":7.273,"w":6.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• People who ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":7.710000000000001,"w":5.113,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"check any ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":8.147,"w":5.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"box on line ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":8.585,"w":5.095,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23a or 23b ","S":-1,"TS":[0,10.5,0,0]}]},{"x":4.514,"y":8.585,"w":1.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":9.022,"w":5.76,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"who can be ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":9.46,"w":6.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"claimed as a ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":9.897,"w":5.651,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"dependent, ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":10.334,"w":1.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"see ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":10.772,"w":5.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions. ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":11.396,"w":5.519,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• All others: ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":12.021,"w":4.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Single or ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":12.459,"w":6.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Married filing ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":12.896,"w":5.445,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"separately, ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":13.333,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"$6,100 ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":13.958,"w":6.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Married filing ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":14.395,"w":4.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"jointly or ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":14.833,"w":5.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Qualifying ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":15.27,"w":5.127,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"widow(er), ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":15.707,"w":4.17,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"$12,200 ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":16.332,"w":4.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Head of ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":16.77,"w":5.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"household, ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.126,"y":17.207,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"$8,950 ","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.806,"y":6.572,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":6.572,"w":4.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter your ","S":-1,"TS":[0,13,0,0]}]},{"x":10.07,"y":6.572,"w":9.557,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"standard deduction.","S":10,"TS":[0,14,1,0]}]},{"x":5.806,"y":7.321999999999999,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"25","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":7.321999999999999,"w":30.64,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 24 from line 22. If line 24 is more than line 22, enter -0-.","S":-1,"TS":[0,13,0,0]}]},{"x":29.45,"y":7.321999999999999,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":8.072,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":8.072,"w":6.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Exemptions. ","S":10,"TS":[0,14,1,0]}]},{"x":11.203,"y":8.072,"w":18.806,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply $3,900 by the number on line 6d. ","S":-1,"TS":[0,13,0,0]}]},{"x":29.451,"y":8.072,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"26","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":8.822,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27 ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":8.822,"w":31.196,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 26 from line 25. If line 26 is more than line 25, enter -0-. ","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":9.572,"w":5.371,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"This is your ","S":-1,"TS":[0,13,0,0]}]},{"x":10.445,"y":9.572,"w":7.503,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"taxable income.","S":10,"TS":[0,14,1,0]}]},{"x":15.478,"y":9.572,"w":20.85,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":28.509,"y":9.479,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.451,"y":9.572,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"27","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":10.322,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":10.322,"w":2.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Tax, ","S":10,"TS":[0,14,1,0]}]},{"x":8.825,"y":10.322,"w":24.951,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"including any alternative minimum tax (see instructions).","S":-1,"TS":[0,13,0,0]}]},{"x":29.45,"y":10.322,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"28","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":11.072,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"29 ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":11.072,"w":24.19,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Credit for child and dependent care expenses. Attach ","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":11.822,"w":5.114,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 2441.","S":-1,"TS":[0,13,0,0]}]},{"x":23.151,"y":11.822,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"29","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":12.572,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"30 ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":12.572,"w":20.077,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Credit for the elderly or the disabled. Attach ","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":13.322,"w":5.427,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule R.","S":-1,"TS":[0,13,0,0]}]},{"x":23.151,"y":13.322,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"30","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":14.072,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"31","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":14.072,"w":19.025,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Education credits from Form 8863, line 19.","S":-1,"TS":[0,13,0,0]}]},{"x":23.15,"y":14.072,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"31","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":14.822,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32 ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":14.822,"w":21.523,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Retirement savings contributions credit. Attach ","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":15.572,"w":5.114,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 8880.","S":-1,"TS":[0,13,0,0]}]},{"x":23.151,"y":15.572,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"32","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":16.322,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"33","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":16.322,"w":22.542,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Child tax credit. Attach Schedule 8812, if required.","S":-1,"TS":[0,13,0,0]}]},{"x":23.15,"y":16.322,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"33","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":17.072,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"34","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":17.072,"w":18.135,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 29 through 33. These are your ","S":-1,"TS":[0,13,0,0]}]},{"x":17.298,"y":17.072,"w":5.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"total credits.","S":10,"TS":[0,14,1,0]}]},{"x":29.451,"y":17.072,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"34","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":17.822,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"35 ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":17.822,"w":34.048,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 34 from line 28. If line 34 is more than line 28, enter -0-. This is ","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":18.572,"w":2.241,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"your ","S":-1,"TS":[0,13,0,0]}]},{"x":8.614,"y":18.572,"w":4.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"total tax.","S":10,"TS":[0,14,1,0]}]},{"x":29.451,"y":18.572,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"35","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":19.322,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"36 ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":19.322,"w":22.412,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Federal income tax withheld from Forms W-2 and ","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":20.072,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1099.","S":-1,"TS":[0,13,0,0]}]},{"x":23.151,"y":20.072,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"36","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":20.822,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"37 ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":20.822,"w":22.714,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2013 estimated tax payments and amount applied ","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":21.572,"w":7.744,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from 2012 return.","S":-1,"TS":[0,13,0,0]}]},{"x":23.151,"y":21.572,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"37","S":-1,"TS":[0,13,0,0]}]},{"x":2.126,"y":21.133,"w":5.427,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you have ","S":-1,"TS":[0,11,0,0]}]},{"x":2.126,"y":21.633,"w":5.371,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a qualifying ","S":-1,"TS":[0,11,0,0]}]},{"x":2.126,"y":22.133,"w":5.761,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"child, attach ","S":-1,"TS":[0,11,0,0]}]},{"x":2.126,"y":22.633,"w":4.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule ","S":-1,"TS":[0,11,0,0]}]},{"x":2.126,"y":23.133,"w":1.87,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"EIC.","S":-1,"TS":[0,11,0,0]}]},{"x":5.806,"y":22.322,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"38a","S":10,"TS":[0,14,1,0]}]},{"x":7.39,"y":22.322,"w":13.059,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Earned income credit (EIC).","S":10,"TS":[0,14,1,0]}]},{"x":23.151,"y":22.322,"w":1.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"38a","S":-1,"TS":[0,13,0,0]}]},{"x":6.501,"y":23.072,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":23.072,"w":10.984,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Nontaxable combat pay ","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":23.822,"w":3.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"election.","S":-1,"TS":[0,13,0,0]}]},{"x":16.851,"y":23.822,"w":1.705,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"38b","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":24.572,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"39","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":24.572,"w":22.061,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Additional child tax credit. Attach Schedule 8812.","S":-1,"TS":[0,13,0,0]}]},{"x":23.151,"y":24.572,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"39","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":25.322,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"40","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":25.322,"w":23.1,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"American opportunity credit from Form 8863, line 8.","S":-1,"TS":[0,13,0,0]}]},{"x":23.15,"y":25.322,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"40","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":26.072,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"41","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":26.072,"w":22.176,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 36, 37, 38a, 39, and 40. These are your ","S":-1,"TS":[0,13,0,0]}]},{"x":19.573,"y":26.072,"w":7.335,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"total payments.","S":10,"TS":[0,14,1,0]}]},{"x":25.866,"y":26.072,"w":4.17,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":28.472,"y":25.978,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.451,"y":26.072,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"41","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":27.242,"w":3.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Refund ","S":-1,"TS":[0,15,1,0]}]},{"x":2.001,"y":27.933,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":28.433,"w":2.926,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Direct ","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":28.933,"w":4.168,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"deposit? ","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":29.433,"w":2.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"See ","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":29.933,"w":5.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions ","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":30.433,"w":4.26,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and fill in ","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":30.933,"w":4.466,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"43b, 43c, ","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":31.433,"w":5.132,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and 43d or ","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":31.933,"w":5.114,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 8888.","S":-1,"TS":[0,11,0,0]}]},{"x":5.806,"y":26.822,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"42 ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":26.822,"w":26.602,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If line 41 is more than line 35, subtract line 35 from line 41. ","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":27.572,"w":10.393,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"This is the amount you ","S":-1,"TS":[0,13,0,0]}]},{"x":13.146,"y":27.572,"w":4.446,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"overpaid.","S":10,"TS":[0,14,1,0]}]},{"x":29.451,"y":27.572,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"42","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":28.322,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"43a","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":28.322,"w":12.485,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Amount of line 42 you want ","S":-1,"TS":[0,11.9,0,0]}]},{"x":13.721,"y":28.322,"w":8.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"refunded to you. ","S":-1,"TS":[0,11.9,1,0]}]},{"x":17.838,"y":28.322,"w":16.635,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If Form 8888 is attached, check here ","S":-1,"TS":[0,11.9,0,0]}]},{"x":28.09,"y":28.228,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.451,"y":28.322,"w":1.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"43a","S":-1,"TS":[0,13,0,0]}]},{"x":5.601,"y":29.457,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":6.501,"y":29.385,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":10,"TS":[0,14,1,0]}]},{"x":7.403,"y":29.197,"w":3.76,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Routing ","S":-1,"TS":[0,13,0,0]}]},{"x":7.403,"y":29.822,"w":3.428,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"number","S":-1,"TS":[0,13,0,0]}]},{"x":17.751,"y":29.353,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":18.188,"y":29.447,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":18.362,"y":29.447,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"c ","S":-1,"TS":[0,13,0,0]}]},{"x":18.895,"y":29.447,"w":2.76,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Type:","S":-1,"TS":[0,13,0,0]}]},{"x":21.763,"y":29.447,"w":4.223,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Checking","S":-1,"TS":[0,12.5,0,0]}]},{"x":25.851,"y":29.447,"w":3.537,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Savings","S":-1,"TS":[0,12.5,0,0]}]},{"x":5.601,"y":30.957,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":6.501,"y":30.885,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d","S":10,"TS":[0,14,1,0]}]},{"x":7.403,"y":30.697,"w":4.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Account ","S":-1,"TS":[0,13,0,0]}]},{"x":7.403,"y":31.322000000000003,"w":3.428,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"number","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":32.072,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"44 ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":32.072,"w":12.485,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Amount of line 42 you want ","S":-1,"TS":[0,13,0,0]}]},{"x":14.204,"y":32.072,"w":7.168,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"applied to your","S":10,"TS":[0,14,1,0]}]},{"x":19.659,"y":32.072,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":32.822,"w":9.171,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2014 estimated tax.","S":10,"TS":[0,14,1,0]}]},{"x":23.151,"y":32.822,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"44","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":33.867,"w":4.055,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Amount ","S":-1,"TS":[0,15,1,0]}]},{"x":2.001,"y":34.617,"w":4.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"you owe","S":-1,"TS":[0,15,1,0]}]},{"x":5.806,"y":33.572,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"45 ","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":33.572,"w":8.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Amount you owe. ","S":10,"TS":[0,14,1,0]}]},{"x":12.635,"y":33.572,"w":25.024,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 41 from line 35. For details on how to pay, ","S":-1,"TS":[0,13,0,0]}]},{"x":7.401,"y":34.322,"w":7.594,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"see instructions. ","S":-1,"TS":[0,13,0,0]}]},{"x":27.651,"y":34.322,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":28.52,"y":34.229,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.451,"y":34.322,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"45","S":-1,"TS":[0,13,0,0]}]},{"x":5.806,"y":35.072,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"46","S":10,"TS":[0,14,1,0]}]},{"x":7.401,"y":35.072,"w":17.781,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Estimated tax penalty (see instructions).","S":-1,"TS":[0,13,0,0]}]},{"x":23.15,"y":35.072,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"46 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":36.087,"w":5.501,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Third party ","S":-1,"TS":[0,14.2,1,0]}]},{"x":2.001,"y":36.987,"w":4.335,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"designee","S":-1,"TS":[0,14.2,1,0]}]},{"x":6.501,"y":35.858,"w":40.152,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you want to allow another person to discuss this return with the IRS (see instructions)?","S":-1,"TS":[0,11,0,0]}]},{"x":27.416,"y":35.839,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes.","S":-1,"TS":[0,11,1,0]}]},{"x":28.444,"y":35.839,"w":10.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Complete the following.","S":-1,"TS":[0,11,0,0]}]},{"x":35.029,"y":35.839,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,1,0]}]},{"x":6.501,"y":36.751,"w":5.223,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Designee’s ","S":2,"TS":[0,10,0,0]}]},{"x":6.501,"y":37.251,"w":5.263,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"name ","S":2,"TS":[0,10,0,0]}]},{"x":8.803,"y":37.188,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":18.651,"y":36.751,"w":3.427,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Phone ","S":2,"TS":[0,10,0,0]}]},{"x":18.651,"y":37.251,"w":3.354,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"no. ","S":2,"TS":[0,10,0,0]}]},{"x":20.118,"y":37.188,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":26.751,"y":36.751,"w":10.167,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Personal identification ","S":2,"TS":[0,10,0,0]}]},{"x":26.751,"y":37.251,"w":10.023,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"number (PIN) ","S":2,"TS":[0,10,0,0]}]},{"x":31.136,"y":37.188,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":2.001,"y":38.505,"w":2.445,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Sign ","S":-1,"TS":[0,16,1,0]}]},{"x":2.001,"y":39.255,"w":2.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"here","S":-1,"TS":[0,16,1,0]}]},{"x":3.598,"y":39.255,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,15,0,0]}]},{"x":3.8070000000000004,"y":39.255,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,15,0,0]}]},{"x":2.001,"y":39.952,"w":6.206,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Joint return? ","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":40.514,"w":7.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"See instructions. ","S":-1,"TS":[0,10.2,0,0]}]},{"x":2.001,"y":41.077,"w":5.909,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Keep a copy ","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":41.577,"w":7.407,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"for your records.","S":-1,"TS":[0,10.2,0,0]}]},{"x":6.501,"y":37.907,"w":57.627,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Under penalties of perjury, I declare that I have examined this return and accompanying schedules and statements, and to the be","S":2,"TS":[0,10,0,0]}]},{"x":31.896,"y":37.907,"w":9.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"st of my knowledge ","S":2,"TS":[0,10,0,0]}]},{"x":6.499,"y":38.345,"w":55.176,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and belief, they are true, correct, and accurately list all amounts and sources of income I received during the tax year. Decla","S":2,"TS":[0,10,0,0]}]},{"x":31.052,"y":38.345,"w":10.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"ration of preparer (other ","S":2,"TS":[0,10,0,0]}]},{"x":6.503,"y":38.782,"w":39.061,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"than the taxpayer) is based on all information of which the preparer has any knowledge.","S":2,"TS":[0,10,0,0]}]},{"x":5.601,"y":39.263,"w":0.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"F","S":-1,"TS":[0,50.9994,0,0],"RA":90}]},{"x":6.501,"y":39.438,"w":6.519,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your signature","S":2,"TS":[0,10,0,0]}]},{"x":18.451,"y":39.438,"w":2.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"x":21.601,"y":39.407,"w":7.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your occupation","S":2,"TS":[0,10,0,0]}]},{"x":28.801,"y":39.407,"w":10.468,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Daytime phone number","S":2,"TS":[0,10,0,0]}]},{"x":6.501,"y":40.938,"w":16.151,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Spouse’s signature. If a joint return, ","S":2,"TS":[0,10,0,0]}]},{"x":13.567,"y":40.938,"w":2.167,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"both","S":2,"TS":[0,10,0,0]}]},{"x":14.515,"y":40.938,"w":4.91,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" must sign.","S":2,"TS":[0,10,0,0]}]},{"x":18.451,"y":40.938,"w":2.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"x":21.601,"y":40.907,"w":9.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Spouse’s occupation","S":2,"TS":[0,10,0,0]}]},{"x":28.801,"y":41.001,"w":18.318,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If the IRS sent you an Identity Protection ","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":28.801,"y":41.438,"w":5.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"PIN, enter it ","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":28.801,"y":41.876,"w":6.482,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"here (see inst.)","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":2.001,"y":42.762,"w":2.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Paid ","S":-1,"TS":[0,14.56,1,0]}]},{"x":2.001,"y":43.662,"w":4.613,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"preparer ","S":-1,"TS":[0,14.56,1,0]}]},{"x":2.001,"y":44.562,"w":4.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"use only","S":-1,"TS":[0,14.56,1,0]}]},{"x":6.501,"y":42.438,"w":11.965,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Print/type preparer's name","S":2,"TS":[0,10,0,0]}]},{"x":16.201,"y":42.438,"w":9.037,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Preparer’s signature","S":2,"TS":[0,10,0,0]}]},{"x":25.201,"y":42.438,"w":2.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"x":28.288,"y":42.716,"w":3.149,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check ","S":2,"TS":[0,10,0,0]}]},{"x":29.666,"y":42.654,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":29.979,"y":42.654,"w":2.8,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":47,"TS":[3,8,0,0]}]},{"x":30.853,"y":42.716,"w":0.796,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"if ","S":2,"TS":[0,10,0,0]}]},{"x":28.288,"y":43.241,"w":6.353,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"x":31.501,"y":42.438,"w":2.203,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"x":6.495,"y":44.001,"w":5.799,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm's name ","S":2,"TS":[0,10,0,0]}]},{"x":9.032,"y":43.938,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":6.495,"y":44.751,"w":6.909,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm's address ","S":2,"TS":[0,10,0,0]}]},{"x":9.518,"y":44.688,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":28.351,"y":44.001,"w":4.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm's EIN ","S":2,"TS":[0,10,0,0]}]},{"x":30.498,"y":43.938,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":28.351,"y":44.751,"w":4.557,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Phone no.","S":2,"TS":[0,10,0,0]}]},{"x":31.295,"y":45.572,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":32.438,"y":45.572,"w":3.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1040A ","S":10,"TS":[0,14,1,0]}]},{"x":34.43,"y":45.572,"w":3.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013)","S":2,"TS":[0,10,0,0]}]},{"x":29.451,"y":6.572,"w":21.391,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"x":29.798,"y":6.572,"w":21.391,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":1851,"AM":1024,"TU":"Your first name and initial","x":7.871,"y":1.909,"w":11.228,"h":0.843},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":1852,"AM":1024,"TU":"Your social security number","x":19.547,"y":1.991,"w":6.482,"h":0.846},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":1853,"AM":1024,"TU":"Tax, credits, 22 Enter the amount from line 21 (adjusted gross income). ","x":30.569,"y":3.006,"w":4.042,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N21A","EN":0},"TI":1856,"AM":1024,"x":28.382,"y":4,"w":1.295,"h":1.098},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":1860,"AM":0,"TU":"24 Enter your standard deduction. ","x":30.919,"y":6.788,"w":3.692,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":1861,"AM":1024,"TU":"Subtract line 24 from line 22. If line 24 is more than 22, enter zero.","x":30.989,"y":7.398,"w":3.622,"h":0.837},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":1862,"AM":0,"TU":"26 Exemptions. Multiply $3,900 by the number on line 6d. ","x":30.989,"y":8.218,"w":3.645,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L26T","EN":0},"TI":1863,"AM":0,"x":19.521,"y":9.738,"w":2.965,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26W","EN":0},"TI":1864,"AM":0,"x":23.183,"y":9.803,"w":5.254,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":1865,"AM":1024,"TU":"27 Subtract line 26 from line 25. If line 26 is more than line 25, enter -0-. This is your taxable income. ","x":30.949,"y":9.508,"w":3.679,"h":0.9},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":1866,"AM":0,"TU":"28 Tax, including any alternative minimum tax (see instructions).","x":30.896,"y":10.475,"w":3.817,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2441"}},"id":{"Id":"A368","EN":0},"TI":1867,"AM":1024,"x":11.107,"y":11.802,"w":2.149,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":1868,"AM":1024,"TU":"29 Credit for child and dependent care expenses. Attach Form 2441. ","x":24.792,"y":11.681,"w":3.554,"h":1.054},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHR"}},"id":{"Id":"A385","EN":0},"TI":1869,"AM":1024,"x":11.146,"y":13.283,"w":2.149,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":1870,"AM":1024,"TU":"30 Credit for the elderly or the disabled. Attach Schedule R.","x":24.788,"y":13.274,"w":3.633,"h":0.961},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8863"}},"id":{"Id":"A370","EN":0},"TI":1871,"AM":1024,"x":18.681,"y":14.139,"w":2.149,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":1872,"AM":1024,"TU":"31 Education credits from Form 8863, line 19. ","x":24.798,"y":14.323,"w":3.636,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8880"}},"id":{"Id":"A372","EN":0},"TI":1873,"AM":1024,"x":11.08,"y":15.475,"w":2.149,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RSCCRED","EN":0},"TI":1874,"AM":1024,"TU":"32 Retirement savings contribution credit. Attach Form 8880","x":24.696,"y":15.458,"w":3.633,"h":0.979},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":1875,"AM":0,"TU":"33 Child tax credit. Attach Schedule 8812 if required.","x":24.69,"y":16.558,"w":3.633,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":1876,"AM":1024,"TU":"34 Add lines 29 through 33. These are your total credits. ","x":30.903,"y":17.118,"w":3.723,"h":0.86},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":1877,"AM":1024,"TU":"35 Subtract line 34 from line 28. If line 34 is more than line 28, enter -0-. This is your total tax. ","x":30.902,"y":18.578,"w":3.817,"h":0.963},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"L37B1","EN":0},"TI":1878,"AM":0,"x":11.624,"y":20.23,"w":5.152,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37B2","EN":0},"TI":1879,"AM":0,"x":17.506,"y":20.154,"w":3.346,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":1880,"AM":0,"TU":"Line 36. Federal income tax withheld from Forms W-2 and 1099.","x":24.813,"y":19.977,"w":3.55,"h":0.98},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":1881,"AM":0,"TU":"37 2013 estimated tax payments and amount applied from 2012 return.","x":24.755,"y":21.373,"w":3.561,"h":1.04},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHEIC"}},"id":{"Id":"A380","EN":0},"TI":1882,"AM":1024,"x":16.167,"y":22.333,"w":2.149,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L38W","EN":0},"TI":1883,"AM":0,"x":19.656,"y":22.52,"w":3.347,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38A","EN":0},"TI":1884,"AM":0,"TU":"38a Earned income credit (EIC). ","x":24.735,"y":22.468,"w":3.568,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCOMBAT","EN":0},"TI":1885,"AM":0,"TU":"Nontaxable combat pay election","x":18.385,"y":23.622,"w":3.699,"h":1.063},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SST1","EN":0},"TI":1886,"AM":0,"x":29.999,"y":23.558,"w":3.381,"h":0.876},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8812"}},"id":{"Id":"A373","EN":0},"TI":1887,"AM":0,"x":20.273,"y":24.692,"w":1.332,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":1888,"AM":1024,"TU":"39 Additional child tax credit. Attach Schedule 8812. ","x":24.696,"y":24.562,"w":3.678,"h":0.916},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SST2","EN":0},"TI":1889,"AM":0,"x":30.176,"y":24.723,"w":2.924,"h":0.834},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8863"}},"id":{"Id":"A383","EN":0},"TI":1890,"AM":0,"x":20.903,"y":25.395,"w":1.188,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOPE","EN":0},"TI":1891,"AM":1024,"TU":"40 American opportunity credit from Form 8863, line 8. ","x":24.758,"y":25.545,"w":3.567,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":1892,"AM":0,"TU":"41 Add lines 36, 37, 38a, 39, and 40. These are your total payments. ","x":30.879,"y":26.141,"w":3.794,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":1893,"AM":1024,"TU":"42 If line 41 is more than line 35, subtract line 35 from line 41. This is the amount you overpaid.","x":30.978,"y":27.445,"w":3.723,"h":0.9},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8888"}},"id":{"Id":"A382","EN":0},"TI":1894,"AM":0,"x":26.484,"y":28.404,"w":1.284,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42A","EN":0},"TI":1896,"AM":1024,"TU":"43a Amount of line 42 you want refunded to you. ","x":31.035,"y":28.468,"w":3.701,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ROUTNO","EN":0},"TI":1897,"AM":0,"TU":"43b Routing number","x":10.357,"y":29.647,"w":6.743,"h":0.863,"MV":"maxl:9"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCNO","EN":0},"TI":1900,"AM":0,"TU":"43d Account number","x":10.357,"y":31.147,"w":12.743,"h":0.863,"MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L43","EN":0},"TI":1901,"AM":0,"TU":"44 Amount of line 42 you want applied to your 2014 estimated tax. ","x":24.718,"y":32.564,"w":3.644,"h":1.129},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L44","EN":0},"TI":1902,"AM":1024,"TU":"45 Amount you owe. Subtract line 41 from line 35. For details on how to pay, see instructions. ","x":31.018,"y":34.143,"w":3.679,"h":1.133},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L45","EN":0},"TI":1903,"AM":0,"TU":"46 Estimated tax penalty (see instructions). ","x":24.661,"y":35.232,"w":6.154,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESNAM","EN":0},"TI":1906,"AM":0,"TU":"Designee's name","x":9.856,"y":37.154,"w":8.569,"h":1.023},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DESPH","EN":0},"TI":1907,"AM":0,"TU":"Phone number","x":20.687,"y":37.16,"w":6.124,"h":1.038},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DESPIN","EN":0},"TI":1908,"AM":0,"TU":"Personal Identification number (PIN)","x":31.95,"y":37.373,"w":4.05,"h":0.833,"MV":"99999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":1909,"AM":0,"TU":"Your occupation","x":21.63,"y":40.381,"w":6.964,"h":0.844},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DTPHO","EN":0},"TI":1910,"AM":0,"TU":"Daytime phone number","x":29.008,"y":40.339,"w":6.97,"h":0.896},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SOCC","EN":0},"TI":1911,"AM":0,"TU":"Spouse’s occupation","x":21.611,"y":41.821,"w":7.021,"h":0.962},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"IDTHEFT","EN":0},"TI":1912,"AM":0,"TU":"If the IRS sent you an Identity Protection PIN, enter it here (see instructions)","x":31.53,"y":41.907,"w":4.44,"h":0.833,"MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIG","EN":0},"TI":1913,"AM":1024,"x":16.295,"y":43.383,"w":8.643,"h":0.833,"V":"Not for use by paid preparers"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":1914,"AM":1024,"x":9.895,"y":44.278,"w":9.617,"h":0.833,"V":"Self-prepared"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21A1","EN":0},"TI":1854,"AM":0,"TU":"You were born before January 2, 1949","x":9.893,"y":3.693,"w":0.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21A2","EN":0},"TI":1855,"AM":0,"TU":"Spouse was born before January 2, 1949","x":20.701,"y":3.716,"w":0.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21A3","EN":0},"TI":1857,"AM":0,"TU":"Spouse was born before January 2, 1949","x":9.887,"y":4.513,"w":0.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21A4","EN":0},"TI":1858,"AM":0,"TU":"Spouse Blind","x":20.736,"y":4.5,"w":0.483,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21B","EN":0},"TI":1859,"AM":0,"TU":"If you are married filing separately and your spouse itemizes deductions, check here","x":28.806,"y":5.889,"w":0.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FM8888","EN":0},"TI":1895,"AM":1024,"TU":"If Form 8888 is attached, check here","x":28.935,"y":28.457,"w":0.593,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCC","EN":0},"TI":1898,"AM":0,"TU":"Account type checking","x":21.136,"y":29.541,"w":0.626,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCS","EN":0},"TI":1899,"AM":0,"TU":"Account type checking","x":25.195,"y":29.612,"w":0.626,"h":0.833,"checked":false}],"id":{"Id":"ACCRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PDDY","EN":0},"TI":1904,"AM":0,"TU":"Preparer discuss with IRS yes","x":26.981,"y":36,"w":0.626,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PDDN","EN":0},"TI":1905,"AM":0,"TU":"Preparer discuss with IRS yes","x":34.525,"y":35.945,"w":0.626,"h":0.833,"checked":false}],"id":{"Id":"PPDRB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F1040EZ.json b/test/data/fd/form/F1040EZ.json index e469b024..9b76c298 100755 --- a/test/data/fd/form/F1040EZ.json +++ b/test/data/fd/form/F1040EZ.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":4.501,"w":0.75,"l":31.023},{"oc":"#221f1f","x":6.147,"y":6.001,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.127,"y":6.001,"w":0.75,"l":43.313},{"oc":"#221f1f","x":37.127,"y":4.501,"w":0.75,"l":43.313},{"oc":"#221f1f","x":80.397,"y":4.501,"w":1.5,"l":18.648},{"oc":"#221f1f","x":6.147,"y":6.001,"w":0.75,"l":31.023},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":31.023},{"oc":"#221f1f","x":37.127,"y":7.501,"w":0.75,"l":43.313},{"oc":"#221f1f","x":37.127,"y":6.001,"w":0.75,"l":43.313},{"oc":"#221f1f","x":80.397,"y":6.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.397,"y":7.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.397,"y":9.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":82.872,"y":9.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":65.674},{"oc":"#221f1f","x":6.147,"y":9.001,"w":0.75,"l":65.674},{"oc":"#221f1f","x":71.777,"y":9.001,"w":0.75,"l":8.663},{"oc":"#221f1f","x":71.777,"y":7.501,"w":0.75,"l":8.663},{"oc":"#221f1f","x":6.147,"y":9.001,"w":0.75,"l":74.336},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":74.336},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":38.448},{"oc":"#221f1f","x":44.509,"y":10.501,"w":0.75,"l":24.836},{"oc":"#221f1f","x":69.259,"y":10.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":9.001,"w":0.75,"l":18.648},{"oc":"#181516","x":6.19,"y":12.001,"w":1.2000000000000002,"l":92.813},{"oc":"#221f1f","x":82.872,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":19.555,"y":13.501,"w":0.75,"l":79.448},{"oc":"#221f1f","x":82.872,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":19.555,"y":15.001,"w":0.75,"l":79.448},{"oc":"#221f1f","x":82.872,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":19.555,"y":16.501,"w":0.75,"l":79.448},{"oc":"#221f1f","x":82.872,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":19.555,"y":18.001,"w":0.75,"l":79.448},{"oc":"#221f1f","x":82.872,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":19.555,"y":21.751,"w":0.75,"l":79.448},{"oc":"#221f1f","x":82.872,"y":21.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.19,"y":23.251,"w":1.5,"l":92.813},{"oc":"#221f1f","x":82.872,"y":23.251,"w":1.5,"l":12.461},{"oc":"#221f1f","x":95.247,"y":23.251,"w":1.5,"l":3.798},{"oc":"#221f1f","x":19.555,"y":24.001,"w":0.75,"l":79.448},{"oc":"#221f1f","x":82.872,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":19.555,"y":24.751,"w":0.75,"l":79.443},{"oc":"#221f1f","x":58.122,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":25.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.209,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":19.555,"y":25.501,"w":0.75,"l":38.61},{"oc":"#221f1f","x":82.872,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":19.555,"y":26.251,"w":0.75,"l":79.344},{"oc":"#221f1f","x":82.872,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":27.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.19,"y":27.751,"w":1.5,"l":76.754},{"oc":"#221f1f","x":82.872,"y":27.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":19.555,"y":29.251,"w":0.75,"l":79.448},{"oc":"#221f1f","x":35.89,"y":30.376,"w":0.75,"l":22.275},{"oc":"#221f1f","x":35.854,"y":31.844,"w":0.75,"l":42.133},{"oc":"#221f1f","x":82.872,"y":29.251,"w":1.5,"l":12.461},{"oc":"#221f1f","x":95.247,"y":29.251,"w":1.5,"l":3.798},{"oc":"#221f1f","x":6.19,"y":32.251,"w":1.5,"l":71.775},{"oc":"#221f1f","x":6.19,"y":33.751,"w":1.5,"l":92.813},{"oc":"#221f1f","x":6.19,"y":36.001,"w":1.125,"l":92.813},{"oc":"#221f1f","x":14.809,"y":40.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":18.522,"y":39.001,"w":0.75,"l":32.261},{"oc":"#221f1f","x":50.697,"y":39.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":59.359,"y":39.001,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.159,"y":39.001,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.159,"y":40.501,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.147,"y":40.501,"w":1.125,"l":9.986},{"oc":"#221f1f","x":6.147,"y":43.501,"w":1.5,"l":9.986},{"oc":"#221f1f","x":16.047,"y":40.501,"w":1.125,"l":19.886},{"oc":"#221f1f","x":16.047,"y":42.001,"w":0.75,"l":19.886},{"oc":"#221f1f","x":35.847,"y":40.501,"w":1.125,"l":31.023},{"oc":"#221f1f","x":35.847,"y":42.001,"w":0.75,"l":31.023},{"oc":"#221f1f","x":66.784,"y":40.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":66.784,"y":42.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.159,"y":40.501,"w":1.125,"l":8.748},{"oc":"#221f1f","x":79.159,"y":42.001,"w":0.75,"l":8.748},{"oc":"#221f1f","x":87.822,"y":40.501,"w":1.125,"l":11.223},{"oc":"#221f1f","x":87.822,"y":42.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":16.047,"y":42.001,"w":0.75,"l":52.061},{"oc":"#221f1f","x":16.047,"y":42.751,"w":0.75,"l":52.061},{"oc":"#221f1f","x":16.047,"y":43.501,"w":1.5,"l":52.061},{"oc":"#221f1f","x":68.022,"y":42.001,"w":0.75,"l":31.023},{"oc":"#221f1f","x":68.022,"y":42.751,"w":0.75,"l":31.023},{"oc":"#221f1f","x":68.022,"y":42.751,"w":0.75,"l":31.023},{"oc":"#221f1f","x":68.022,"y":43.501,"w":1.5,"l":31.023},{"oc":"#221f1f","x":6.147,"y":43.501,"w":1.5,"l":49.586},{"oc":"#221f1f","x":55.647,"y":43.501,"w":1.5,"l":29.786},{"oc":"#221f1f","x":85.347,"y":43.501,"w":1.5,"l":13.698},{"oc":"#231f20","x":35.976,"y":30.345,"w":1.5,"l":22.119},{"oc":"#231f20","x":35.976,"y":29.657,"w":1.5,"l":22.119},{"oc":"#231f20","x":86.713,"y":35.871,"w":1.5,"l":10.966},{"oc":"#231f20","x":86.713,"y":35.184,"w":1.5,"l":10.966},{"oc":"#57585a","x":86.713,"y":40.47,"w":1.5,"l":12.203},{"oc":"#57585a","x":86.713,"y":39.782,"w":1.5,"l":12.203}],"VLines":[{"oc":"#221f1f","x":37.127,"y":4.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":4.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":37.127,"y":4.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":80.44,"y":4.47,"w":0.75,"l":1.563},{"dsh":1,"oc":"#221f1f","x":86.247,"y":5.251,"w":0.75,"l":0.625},{"dsh":1,"oc":"#221f1f","x":89.96,"y":5.251,"w":0.75,"l":0.625},{"oc":"#221f1f","x":37.127,"y":5.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":6.001,"w":0.75,"l":1.5},{"oc":"#221f1f","x":37.127,"y":6.001,"w":0.75,"l":1.5},{"oc":"#221f1f","x":80.44,"y":5.985,"w":0.75,"l":1.531},{"dsh":1,"oc":"#221f1f","x":86.247,"y":6.751,"w":0.75,"l":0.625},{"dsh":1,"oc":"#221f1f","x":89.96,"y":6.751,"w":0.75,"l":0.625},{"oc":"#221f1f","x":71.777,"y":7.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":7.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":71.777,"y":7.501,"w":0.75,"l":1.5},{"oc":"#221f1f","x":80.44,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":44.552,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":44.552,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":10.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.72,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":20.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.22,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.29,"y":23.22,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":28.47,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.29,"y":28.47,"w":0.75,"l":0.797},{"dsh":1,"oc":"#221f1f","x":38.365,"y":29.626,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":35.89,"y":29.626,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":40.84,"y":29.626,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":43.315,"y":29.626,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":45.79,"y":29.626,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":48.265,"y":29.626,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":50.74,"y":29.626,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":53.215,"y":29.626,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":55.69,"y":29.626,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":58.165,"y":29.626,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":38.328,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":35.853,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":40.803,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":43.278,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":45.754,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":48.229,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":50.704,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":53.179,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":55.654,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":58.129,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":60.724,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":63.079,"y":31.156,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":65.71,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":68.029,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":70.504,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":72.979,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":75.454,"y":31.126,"w":0.75,"l":0.688},{"dsh":1,"oc":"#221f1f","x":77.929,"y":31.139,"w":0.75,"l":0.688},{"oc":"#221f1f","x":95.29,"y":29.22,"w":0.75,"l":3.797},{"oc":"#221f1f","x":95.29,"y":29.22,"w":0.75,"l":3.797},{"oc":"#221f1f","x":95.29,"y":32.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.74,"y":38.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":38.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":38.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":16.09,"y":40.478,"w":0.75,"l":3.055},{"oc":"#221f1f","x":35.89,"y":40.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":40.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":66.827,"y":40.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":40.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":87.865,"y":40.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":68.065,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":42.735,"w":0.75,"l":0.797},{"oc":"#221f1f","x":68.065,"y":41.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":42.735,"w":0.75,"l":0.797},{"oc":"#231f20","x":58.095,"y":29.657,"w":1.5,"l":0.687},{"oc":"#231f20","x":35.976,"y":29.657,"w":1.5,"l":0.687},{"oc":"#231f20","x":38.366,"y":29.689,"w":1.5,"l":0.656},{"oc":"#231f20","x":40.843,"y":29.689,"w":1.5,"l":0.656},{"oc":"#231f20","x":43.32,"y":29.689,"w":1.5,"l":0.656},{"oc":"#231f20","x":45.797,"y":29.689,"w":1.5,"l":0.656},{"oc":"#231f20","x":48.273,"y":29.689,"w":1.5,"l":0.656},{"oc":"#231f20","x":50.75,"y":29.689,"w":1.5,"l":0.656},{"oc":"#231f20","x":53.227,"y":29.689,"w":1.5,"l":0.656},{"oc":"#231f20","x":55.704,"y":29.689,"w":1.5,"l":0.656},{"oc":"#231f20","x":55.704,"y":29.689,"w":1.5,"l":0.656},{"oc":"#231f20","x":97.679,"y":35.184,"w":1.5,"l":0.687},{"oc":"#231f20","x":86.713,"y":35.184,"w":1.5,"l":0.687},{"oc":"#231f20","x":88.855,"y":35.215,"w":1.5,"l":0.656},{"oc":"#231f20","x":91.082,"y":35.215,"w":1.5,"l":0.656},{"oc":"#231f20","x":93.31,"y":35.215,"w":1.5,"l":0.656},{"oc":"#231f20","x":95.537,"y":35.215,"w":1.5,"l":0.656},{"oc":"#231f20","x":95.537,"y":35.215,"w":1.5,"l":0.656},{"oc":"#57585a","x":98.916,"y":39.782,"w":1.5,"l":0.687},{"oc":"#57585a","x":86.713,"y":39.782,"w":1.5,"l":0.687},{"oc":"#57585a","x":88.69,"y":39.814,"w":1.5,"l":0.656},{"oc":"#57585a","x":90.752,"y":39.814,"w":1.5,"l":0.656},{"oc":"#57585a","x":92.815,"y":39.814,"w":1.5,"l":0.656},{"oc":"#57585a","x":94.877,"y":39.814,"w":1.5,"l":0.656},{"oc":"#57585a","x":96.94,"y":39.814,"w":1.5,"l":0.656},{"oc":"#57585a","x":96.94,"y":39.814,"w":1.5,"l":0.656},{"oc":"#221f1f","x":57.855,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.418,"y":8.985,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#ecf6ea","x":16.09,"y":2.251,"w":83.097,"h":41.25,"clr":-1},{"oc":"#ecf6ea","x":6.19,"y":43.501,"w":93.456,"h":0.75,"clr":-1},{"x":80.44,"y":5.251,"w":18.562,"h":0.75,"clr":1},{"x":80.44,"y":6.751,"w":18.562,"h":0.75,"clr":1},{"x":6.19,"y":4.501,"w":30.938,"h":1.5,"clr":1},{"x":37.127,"y":4.501,"w":43.313,"h":1.5,"clr":1},{"x":80.44,"y":4.501,"w":18.562,"h":1.5,"clr":1},{"x":6.19,"y":6.001,"w":30.938,"h":1.5,"clr":1},{"x":37.127,"y":6.001,"w":43.313,"h":1.5,"clr":1},{"x":80.44,"y":6.001,"w":18.562,"h":1.5,"clr":1},{"x":6.19,"y":7.501,"w":65.588,"h":1.5,"clr":1},{"x":71.777,"y":7.501,"w":8.663,"h":1.5,"clr":1},{"x":6.19,"y":9.001,"w":74.25,"h":1.5,"clr":1},{"x":6.19,"y":10.501,"w":38.362,"h":1.5,"clr":1},{"x":44.552,"y":10.501,"w":24.75,"h":1.5,"clr":1},{"x":69.302,"y":10.501,"w":11.138,"h":1.5,"clr":1},{"x":82.915,"y":12.001,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":12.001,"w":3.713,"h":0.75,"clr":1},{"x":82.915,"y":12.751,"w":16.088,"h":0.75,"clr":1},{"x":82.915,"y":13.501,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":13.501,"w":3.713,"h":0.75,"clr":1},{"x":82.915,"y":14.251,"w":16.088,"h":0.75,"clr":1},{"x":82.915,"y":15.001,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":15.001,"w":3.713,"h":0.75,"clr":1},{"x":82.915,"y":15.751,"w":16.088,"h":0.75,"clr":1},{"x":82.915,"y":16.501,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":16.501,"w":3.713,"h":0.75,"clr":1},{"x":82.915,"y":17.251,"w":16.088,"h":0.75,"clr":1},{"x":82.915,"y":18.001,"w":12.375,"h":3,"clr":1},{"x":95.29,"y":18.001,"w":3.713,"h":3,"clr":1},{"x":82.915,"y":21.001,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":21.001,"w":3.713,"h":0.75,"clr":1},{"x":82.915,"y":21.751,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":21.751,"w":3.713,"h":0.75,"clr":1},{"x":82.915,"y":22.501,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":22.501,"w":3.713,"h":0.75,"clr":1},{"x":82.915,"y":23.251,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":23.251,"w":3.713,"h":0.75,"clr":1},{"x":82.915,"y":24.001,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":24.001,"w":3.713,"h":0.75,"clr":1},{"x":61.877,"y":24.751,"w":12.375,"h":0.75,"clr":1},{"x":74.252,"y":24.751,"w":3.712,"h":0.75,"clr":1},{"x":82.915,"y":24.751,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":24.751,"w":3.713,"h":0.75,"clr":1},{"x":82.915,"y":25.501,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":25.501,"w":3.713,"h":0.75,"clr":1},{"x":82.915,"y":26.251,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":26.251,"w":3.713,"h":0.75,"clr":1},{"x":82.915,"y":27.001,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":27.001,"w":3.713,"h":0.75,"clr":1},{"x":82.915,"y":27.751,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":27.751,"w":3.713,"h":0.75,"clr":1},{"x":82.915,"y":28.501,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":28.501,"w":3.713,"h":0.75,"clr":1},{"x":35.89,"y":29.626,"w":22.291,"h":0.75,"clr":1},{"x":35.89,"y":31.126,"w":42.133,"h":0.75,"clr":1},{"x":82.915,"y":29.251,"w":12.375,"h":3.75,"clr":1},{"x":95.29,"y":29.251,"w":3.713,"h":3.75,"clr":1},{"x":82.915,"y":33.001,"w":12.375,"h":0.75,"clr":1},{"x":95.29,"y":33.001,"w":3.713,"h":0.75,"clr":1},{"x":27.227,"y":35.251,"w":22.275,"h":0.75,"clr":1},{"x":56.927,"y":35.251,"w":14.85,"h":0.75,"clr":1},{"x":86.627,"y":35.153,"w":11.137,"h":0.75,"clr":1},{"x":18.565,"y":37.501,"w":32.175,"h":1.5,"clr":1},{"x":50.74,"y":37.501,"w":8.662,"h":1.5,"clr":1},{"x":59.402,"y":37.501,"w":19.8,"h":1.5,"clr":1},{"x":79.202,"y":37.501,"w":19.8,"h":1.5,"clr":1},{"x":18.565,"y":39.001,"w":32.175,"h":1.5,"clr":1},{"x":50.74,"y":39.001,"w":8.662,"h":1.5,"clr":1},{"x":59.402,"y":39.001,"w":19.8,"h":1.5,"clr":1},{"x":79.202,"y":39.001,"w":19.8,"h":1.5,"clr":1},{"x":86.627,"y":39.751,"w":12.375,"h":0.75,"clr":1},{"x":16.09,"y":40.501,"w":19.8,"h":1.5,"clr":1},{"x":35.89,"y":40.501,"w":30.938,"h":1.5,"clr":1},{"x":66.827,"y":40.501,"w":12.375,"h":1.5,"clr":1},{"x":79.202,"y":40.501,"w":8.663,"h":1.5,"clr":1},{"x":87.865,"y":40.501,"w":11.138,"h":1.5,"clr":1},{"x":16.09,"y":42.001,"w":51.975,"h":0.75,"clr":1},{"x":16.09,"y":42.751,"w":51.975,"h":0.75,"clr":1},{"x":68.065,"y":42.001,"w":30.937,"h":0.75,"clr":1},{"x":68.065,"y":42.751,"w":30.937,"h":0.75,"clr":1},{"x":86.627,"y":35.153,"w":11.137,"h":0.75,"clr":1},{"x":0.081,"y":48.96,"w":1.484,"h":0.54,"clr":1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.573,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Form%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.476,"w":3.502,"clr":-1,"A":"left","R":[{"T":"1040EZ","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":19.552,"y":1.8239999999999998,"w":22.188,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%E2%80%94Internal%20Revenue%20Service","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":19.552,"y":2.641,"w":16.226000000000003,"clr":-1,"A":"left","R":[{"T":"Income%20Tax%20Return%20for%20Single%20and%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":19.552,"y":3.4530000000000003,"w":15.947000000000006,"clr":-1,"A":"left","R":[{"T":"Joint%20Filers%20With%20No%20Dependents%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":48.344,"y":3.4530000000000003,"w":1.63,"clr":-1,"A":"left","R":[{"T":"(99)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":57.915,"y":3.4370000000000003,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,20,1,0]}]},{"oc":"#221f1f","x":84.308,"y":3.457,"w":8.583,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.627,"y":4.17,"w":11.631999999999998,"clr":-1,"A":"left","R":[{"T":"Your%20first%20name%20and%20initial%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.565,"y":4.181,"w":4.946999999999999,"clr":-1,"A":"left","R":[{"T":"Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.877,"y":4.171,"w":13.727000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":6.627,"y":5.659,"w":20.560000000000006,"clr":-1,"A":"left","R":[{"T":"If%20a%20joint%20return%2C%20spouse%E2%80%99s%20first%20name%20and%20initial%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.565,"y":5.657,"w":4.946999999999999,"clr":-1,"A":"left","R":[{"T":"Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.877,"y":5.655,"w":15.855000000000006,"clr":-1,"A":"left","R":[{"T":"Spouse's%20social%20security%20number%20","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":80.568,"y":7.537000000000001,"w":1,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":84.893,"y":7.336,"w":9.946,"clr":-1,"A":"left","R":[{"T":"Make%20sure%20the%20SSN(s)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.807,"y":7.861000000000001,"w":8.148000000000001,"clr":-1,"A":"left","R":[{"T":"above%20are%20correct.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.627,"y":7.157,"w":34.15699999999999,"clr":-1,"A":"left","R":[{"T":"Home%20address%20(number%20and%20street).%20If%20you%20have%20a%20P.O.%20box%2C%20see%20instructions.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.085,"y":7.149,"w":3.798,"clr":-1,"A":"left","R":[{"T":"Apt.%20no.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.627,"y":8.648,"w":320.9849999999999,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office.%20If%20you%20have%20a%20foreign%20address%2C%20also%20complete%20spaces%20below%20(see%20instructions).%20","S":-1,"TS":[0,9.299958,0,0]}]},{"oc":"#221f1f","x":6.627,"y":10.187,"w":9.780000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.99,"y":10.19,"w":13.408000000000003,"clr":-1,"A":"left","R":[{"T":"Foreign%20province%2Fstate%2Fcounty","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.74,"y":10.188,"w":9.742,"clr":-1,"A":"left","R":[{"T":"Foreign%20postal%20code%20%20%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":80.877,"y":8.723,"w":14.949000000000007,"clr":-1,"A":"left","R":[{"T":"Presidential%20Election%20Campaign","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":80.533,"y":9.367,"w":18.502000000000006,"clr":-1,"A":"left","R":[{"T":"Check%20here%20if%20you%2C%20or%20your%20spouse%20if%20filing%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"oc":"#221f1f","x":80.533,"y":9.867,"w":19.69,"clr":-1,"A":"left","R":[{"T":"jointly%2C%20want%20%243%20to%20go%20to%20this%20fund.%20Checking%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"oc":"#221f1f","x":80.533,"y":10.367,"w":17.814000000000004,"clr":-1,"A":"left","R":[{"T":"a%20box%20below%20will%20not%20change%20your%20tax%20or%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"oc":"#221f1f","x":80.533,"y":10.866,"w":3.4270000000000005,"clr":-1,"A":"left","R":[{"T":"refund.%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"oc":"#221f1f","x":89.922,"y":11.013,"w":2.167,"clr":-1,"A":"left","R":[{"T":"You%20","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":94.729,"y":11.013,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.09,1,0]}]},{"oc":"#221f1f","x":5.94,"y":12.008,"w":3.5010000000000003,"clr":-1,"A":"left","R":[{"T":"Income","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.94,"y":12.956,"w":3.389,"clr":-1,"A":"left","R":[{"T":"Attach%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":13.519,"w":6.111000000000001,"clr":-1,"A":"left","R":[{"T":"Form(s)%20W-2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":14.081,"w":2.39,"clr":-1,"A":"left","R":[{"T":"here.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":15.097,"w":6.444000000000001,"clr":-1,"A":"left","R":[{"T":"Enclose%2C%20but%20do%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":15.628,"w":6.11,"clr":-1,"A":"left","R":[{"T":"not%20attach%2C%20any%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":16.159,"w":3.694,"clr":-1,"A":"left","R":[{"T":"payment.","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":20.016,"y":11.773,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":11.773,"w":32.05199999999999,"clr":-1,"A":"left","R":[{"T":"Wages%2C%20salaries%2C%20and%20tips.%20This%20should%20be%20shown%20in%20box%201%20of%20your%20Form(s)%20W-2.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.265,"y":12.46,"w":10.498000000000001,"clr":-1,"A":"left","R":[{"T":"Attach%20your%20Form(s)%20W-2.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.671,"y":12.51,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.016,"y":14.01,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":14.01,"w":29.663,"clr":-1,"A":"left","R":[{"T":"Taxable%20interest.%20If%20the%20total%20is%20over%20%241%2C500%2C%20you%20cannot%20use%20Form%201040EZ.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.671,"y":14.01,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.016,"y":15.510000000000002,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":15.573,"w":35.079999999999984,"clr":-1,"A":"left","R":[{"T":"Unemployment%20compensation%20and%20Alaska%20Permanent%20Fund%20dividends%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.671,"y":15.510000000000002,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.016,"y":17.01,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":17.01,"w":13.833,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%2C%202%2C%20and%203.%20This%20is%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.016,"y":17.773,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":17.773,"w":32.88099999999997,"clr":-1,"A":"left","R":[{"T":"If%20someone%20can%20claim%20you%20(or%20your%20spouse%20if%20a%20joint%20return)%20as%20a%20dependent%2C%20check%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.265,"y":18.46,"w":31.853999999999985,"clr":-1,"A":"left","R":[{"T":"the%20applicable%20box(es)%20below%20and%20enter%20the%20amount%20from%20the%20worksheet%20on%20back.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.74,"y":19.323,"w":1.889,"clr":-1,"A":"left","R":[{"T":"You","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.877,"y":19.323,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Spouse","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":20.023,"w":29.66099999999998,"clr":-1,"A":"left","R":[{"T":"If%20no%20one%20can%20claim%20you%20(or%20your%20spouse%20if%20a%20joint%20return)%2C%20enter%20%2410%2C000%20if%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.286,"y":20.023,"w":3.2230000000000003,"clr":-1,"A":"left","R":[{"T":"single%3B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":20.71,"w":4.361,"clr":-1,"A":"left","R":[{"T":"%2420%2C000%20if%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.011,"y":20.71,"w":10.114000000000004,"clr":-1,"A":"left","R":[{"T":"married%20filing%20jointly.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":43.846,"y":20.71,"w":10.164000000000001,"clr":-1,"A":"left","R":[{"T":"See%20back%20for%20explanation.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.671,"y":20.76,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.016,"y":21.523,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":21.523,"w":26.828999999999986,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%205%20from%20line%204.%20If%20line%205%20is%20larger%20than%20line%204%2C%20enter%20-0-.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.265,"y":22.238,"w":5.0280000000000005,"clr":-1,"A":"left","R":[{"T":"This%20is%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.699,"y":22.238,"w":6.666,"clr":-1,"A":"left","R":[{"T":"taxable%20income.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":76.477,"y":22.145,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.671,"y":22.26,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":23.453,"w":5.280000000000001,"clr":-1,"A":"left","R":[{"T":"Payments%2C%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.94,"y":24.203,"w":4.001,"clr":-1,"A":"left","R":[{"T":"Credits%2C%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.94,"y":24.953,"w":3.779,"clr":-1,"A":"left","R":[{"T":"and%20Tax","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":20.016,"y":23.01,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":23.01,"w":23.301999999999996,"clr":-1,"A":"left","R":[{"T":"Federal%20income%20tax%20withheld%20from%20Form(s)%20W-2%20and%201099.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.671,"y":23.01,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.016,"y":23.76,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"8a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.481,"y":23.76,"w":13.337000000000003,"clr":-1,"A":"left","R":[{"T":"Earned%20income%20credit%20(EIC)%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":41.437,"y":23.76,"w":7.11,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.671,"y":23.76,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"8a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.79,"y":24.51,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":24.51,"w":13.164000000000005,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20combat%20pay%20election.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.997,"y":24.573,"w":1.25,"clr":-1,"A":"left","R":[{"T":"8b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.016,"y":25.26,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":25.323,"w":14.191000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20lines%207%20and%208a.%20These%20are%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.388,"y":25.323,"w":11.805000000000003,"clr":-1,"A":"left","R":[{"T":"total%20payments%20and%20credits.%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":76.477,"y":25.229,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.671,"y":25.26,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.243,"y":26.029,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":26.023,"w":2.2790000000000004,"clr":-1,"A":"left","R":[{"T":"Tax.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":26.617,"y":26.023,"w":7.777000000000001,"clr":-1,"A":"left","R":[{"T":"Use%20the%20amount%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.647,"y":26.023,"w":6.003,"clr":-1,"A":"left","R":[{"T":"line%206%20above%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":46.855,"y":26.023,"w":15.110000000000007,"clr":-1,"A":"left","R":[{"T":"to%20find%20your%20tax%20in%20the%20tax%20table%20in%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.265,"y":26.71,"w":23.469999999999995,"clr":-1,"A":"left","R":[{"T":"instructions.%20Then%2C%20enter%20the%20tax%20from%20the%20table%20on%20this%20line.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.897,"y":26.76,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.243,"y":27.573,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"11a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":27.573,"w":28.52499999999999,"clr":-1,"A":"left","R":[{"T":"If%20line%209%20is%20larger%20than%20line%2010%2C%20subtract%20line%2010%20from%20line%209.%20This%20is%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.186,"y":27.573,"w":3.667,"clr":-1,"A":"left","R":[{"T":"refund.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":28.26,"w":15.135000000000007,"clr":-1,"A":"left","R":[{"T":"If%20Form%208888%20is%20attached%2C%20check%20here%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.676,"y":28.166,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.897,"y":28.26,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"11a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":27.797,"w":3.444,"clr":-1,"A":"left","R":[{"T":"Refund","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.94,"y":28.634,"w":6.471,"clr":-1,"A":"left","R":[{"T":"Have%20it%20directly%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":29.134,"w":6.11,"clr":-1,"A":"left","R":[{"T":"deposited!%20See%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":29.634,"w":6.611000000000001,"clr":-1,"A":"left","R":[{"T":"instructions%20and%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":30.134,"w":6.389,"clr":-1,"A":"left","R":[{"T":"fill%20in%2011b%2C%2011c%2C%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":30.635,"w":4.527,"clr":-1,"A":"left","R":[{"T":"and%2011d%20or%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":31.135,"w":4.667,"clr":-1,"A":"left","R":[{"T":"Form%208888.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":18.315,"y":29.52,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.79,"y":29.448,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":29.385,"w":6.528,"clr":-1,"A":"left","R":[{"T":"Routing%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.152,"y":29.354,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.656,"y":29.448,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":61.73,"y":29.448,"w":2.583,"clr":-1,"A":"left","R":[{"T":"%20Type%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.052,"y":29.468,"w":3.833,"clr":-1,"A":"left","R":[{"T":"Checking","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":77.585,"y":29.468,"w":3.167,"clr":-1,"A":"left","R":[{"T":"Savings","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":18.315,"y":31.02,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":20.79,"y":30.948,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":30.885,"w":6.6930000000000005,"clr":-1,"A":"left","R":[{"T":"Account%20number","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":32.118,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Amount%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":32.68,"w":4.279,"clr":-1,"A":"left","R":[{"T":"You%20Owe","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":19.243,"y":32.023,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.265,"y":32.03,"w":26.691999999999993,"clr":-1,"A":"left","R":[{"T":"If%20line%2010%20is%20larger%20than%20line%209%2C%20subtract%20line%209%20from%20line%2010.%20This%20is%20%20","S":-1,"TS":[0,11.8,0,0]}]},{"oc":"#221f1f","x":23.265,"y":32.739,"w":1.472,"clr":-1,"A":"left","R":[{"T":"the%20","S":-1,"TS":[0,11.8,0,0]}]},{"oc":"#221f1f","x":25.664,"y":32.739,"w":8.446,"clr":-1,"A":"left","R":[{"T":"amount%20you%20owe.%20","S":-1,"TS":[0,11.8,1,0]}]},{"oc":"#221f1f","x":37.18,"y":32.739,"w":17.138,"clr":-1,"A":"left","R":[{"T":"For%20details%20on%20how%20to%20pay%2C%20see%20instructions.","S":-1,"TS":[0,11.8,0,0]}]},{"oc":"#221f1f","x":76.477,"y":32.645,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.897,"y":32.76,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":33.899,"w":5.557,"clr":-1,"A":"left","R":[{"T":"Third%20Party%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":34.586,"w":4.446,"clr":-1,"A":"left","R":[{"T":"Designee","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":18.315,"y":33.608,"w":40.15199999999999,"clr":-1,"A":"left","R":[{"T":"Do%20you%20want%20to%20allow%20another%20person%20to%20discuss%20this%20return%20with%20the%20IRS%20(see%20instructions)%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.715,"y":33.589,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":80.198,"y":33.589,"w":7.871,"clr":-1,"A":"left","R":[{"T":"%20Complete%20below.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":96.277,"y":33.589,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":18.315,"y":34.488,"w":4.6930000000000005,"clr":-1,"A":"left","R":[{"T":"Designee%E2%80%99s%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.315,"y":34.988,"w":4.666,"clr":-1,"A":"left","R":[{"T":"name%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":23.928,"y":34.925,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":50.49,"y":34.488,"w":3,"clr":-1,"A":"left","R":[{"T":"Phone%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.49,"y":34.988,"w":3,"clr":-1,"A":"left","R":[{"T":"no.%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.099,"y":34.925,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":72.765,"y":34.488,"w":9.277000000000001,"clr":-1,"A":"left","R":[{"T":"Personal%20identification%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.765,"y":34.988,"w":9.332,"clr":-1,"A":"left","R":[{"T":"number%20(PIN)%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.992,"y":34.925,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":5.94,"y":35.834,"w":2.723,"clr":-1,"A":"left","R":[{"T":"Sign%20%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":5.94,"y":36.522,"w":2.223,"clr":-1,"A":"left","R":[{"T":"Here","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":5.94,"y":37.437,"w":6.971,"clr":-1,"A":"left","R":[{"T":"Joint%20return%3F%20See%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":37.937,"w":4.917000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":38.853,"w":6.664,"clr":-1,"A":"left","R":[{"T":"Keep%20a%20copy%20for%20","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":5.94,"y":39.322,"w":5.276000000000001,"clr":-1,"A":"left","R":[{"T":"your%20records.","S":-1,"TS":[0,10.5,0,0]}]},{"oc":"#221f1f","x":18.318,"y":36.532,"w":26.687999999999995,"clr":-1,"A":"left","R":[{"T":"on%20all%20information%20of%20which%20the%20preparer%20has%20any%20knowledge.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.84,"y":36.913,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,50.9994,0,0],"RA":90}]},{"oc":"#221f1f","x":18.315,"y":37.189,"w":6.519000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.177,"y":37.189,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.84,"y":37.172,"w":7.390000000000001,"clr":-1,"A":"left","R":[{"T":"Your%20occupation","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":37.157,"w":10.468,"clr":-1,"A":"left","R":[{"T":"Daytime%20phone%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.315,"y":38.688,"w":16.151000000000003,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20signature.%20If%20a%20joint%20return%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.574,"y":38.688,"w":2.166,"clr":-1,"A":"left","R":[{"T":"both","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":40.009,"y":38.688,"w":4.91,"clr":-1,"A":"left","R":[{"T":"%20must%20sign.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.177,"y":38.688,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.84,"y":38.626,"w":9.465,"clr":-1,"A":"left","R":[{"T":"Spouse%E2%80%99s%20occupation","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":38.751,"w":18.318000000000005,"clr":-1,"A":"left","R":[{"T":"If%20the%20IRS%20sent%20you%20an%20Identity%20Protection%20","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"oc":"#221f1f","x":79.64,"y":39.188,"w":5.834000000000001,"clr":-1,"A":"left","R":[{"T":"PIN%2C%20enter%20it%20%20","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"oc":"#221f1f","x":79.64,"y":39.626,"w":6.482000000000001,"clr":-1,"A":"left","R":[{"T":"here%20(see%20inst.)","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"oc":"#221f1f","x":5.94,"y":40.573,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Paid%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":5.94,"y":41.398,"w":4.391,"clr":-1,"A":"left","R":[{"T":"Preparer%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":5.94,"y":42.223,"w":4.335000000000001,"clr":-1,"A":"left","R":[{"T":"Use%20Only","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":16.527,"y":40.22,"w":12.502000000000006,"clr":-1,"A":"left","R":[{"T":"Print%2FType%20preparer%E2%80%99s%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":36.877,"y":40.251,"w":9.315000000000003,"clr":-1,"A":"left","R":[{"T":"Preparer%E2%80%99s%20signature%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.265,"y":40.251,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":40.501,"w":6.447000000000003,"clr":-1,"A":"left","R":[{"T":"Check%20%20%20%20%20%20%20%20%20if%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":40.939,"w":6.353,"clr":-1,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.302,"y":40.22,"w":2.481,"clr":-1,"A":"left","R":[{"T":"%20PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":16.527,"y":41.876,"w":6.911000000000001,"clr":-1,"A":"left","R":[{"T":"Firm%E2%80%99s%20name%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":24.842,"y":41.813,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":16.527,"y":42.626,"w":6.908999999999999,"clr":-1,"A":"left","R":[{"T":"Firm%E2%80%99s%20address%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":24.839,"y":42.563,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":68.502,"y":41.876,"w":5.186,"clr":-1,"A":"left","R":[{"T":"Firm's%20EIN%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.741,"y":41.813,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":68.502,"y":42.626,"w":4.835000000000001,"clr":-1,"A":"left","R":[{"T":"Phone%20no.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":43.342,"w":39.622999999999976,"clr":-1,"A":"left","R":[{"T":"For%20Disclosure%2C%20Privacy%20Act%2C%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":65.439,"y":43.342,"w":7.055,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011329W","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.449,"y":43.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.591,"y":43.322,"w":3.78,"clr":-1,"A":"left","R":[{"T":"1040EZ%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":43.322,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"x":59.064,"y":26.717,"w":202.3100000000001,"clr":0,"A":"left","R":[{"T":"Click%20%22Do%20the%20math%22%20before%20calculating%20tax.","S":-1,"TS":[0,9.001999999999999,1,0]}]},{"oc":"#221f1f","x":44.319,"y":17.01,"w":11.170000000000003,"clr":-1,"A":"left","R":[{"T":"adjusted%20gross%20income.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":80.72,"y":17.01,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.315,"y":35.657,"w":60.53099999999993,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20return%20and%2C%20to%20the%20best%20of%20my%20knowledge%20and%20belief%2C%20it%20is%20true%2C%20correct%2C%20and%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.325,"y":36.095,"w":62.15699999999993,"clr":-1,"A":"left","R":[{"T":"accurately%20lists%20all%20amounts%20and%20sources%20of%20income%20I%20received%20during%20the%20tax%20year.%20Declaration%20of%20preparer%20(other%20than%20the%20taxpayer)%20is%20based%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.173,"y":8.69,"w":13.636,"clr":-1,"A":"left","R":[{"T":"State","S":-1,"TS":[0,9.299958,0,0]}]},{"oc":"#221f1f","x":66.488,"y":8.682,"w":30.205000000000002,"clr":-1,"A":"left","R":[{"T":"ZIP%20code%20","S":-1,"TS":[0,9.299958,0,0]}]},{"x":0.09399999999999997,"y":48.62,"w":18.340000000000003,"clr":0,"A":"left","R":[{"T":"Not%20","S":-1,"TS":[0,11.999939999999999,0,0]}]},{"x":3.243,"y":48.62,"w":14.45,"clr":0,"A":"left","R":[{"T":"for%20","S":-1,"TS":[0,11.999939999999999,0,0]}]},{"x":5.724,"y":48.62,"w":18.900000000000002,"clr":0,"A":"left","R":[{"T":"use%20","S":-1,"TS":[0,11.999939999999999,0,0]}]},{"x":8.972,"y":48.62,"w":13.34,"clr":0,"A":"left","R":[{"T":"by%20","S":-1,"TS":[0,11.999939999999999,0,0]}]},{"x":11.263,"y":48.62,"w":21.680000000000003,"clr":0,"A":"left","R":[{"T":"paid%20","S":-1,"TS":[0,11.999939999999999,0,0]}]},{"x":14.989,"y":48.62,"w":42.79,"clr":0,"A":"left","R":[{"T":"preparers","S":-1,"TS":[0,11.999939999999999,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INJUR","EN":0},"TI":415,"AM":0,"x":0.075,"y":0.383,"w":16.498,"h":1.319,"TU":"Injured spouse text"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DECE","EN":0},"TI":416,"AM":0,"x":18.417,"y":0.41,"w":25.781,"h":1.292,"TU":"Deceased date"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":417,"AM":0,"x":6.188,"y":5.148,"w":25.772,"h":0.879,"TU":"Your first name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI","EN":0},"TI":418,"AM":0,"x":32.608,"y":5.118,"w":3.965,"h":0.912,"TU":"Taxpayer middle initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAM","EN":0},"TI":419,"AM":0,"x":37.125,"y":5.173,"w":43.313,"h":0.833,"TU":"Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":420,"AM":0,"x":80.438,"y":5.153,"w":18.563,"h":0.847,"TU":"Your social security number. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SNAM","EN":0},"TI":421,"AM":0,"x":6.188,"y":6.708,"w":25.612,"h":0.847,"TU":"If a joint return, spouse's first name"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SMI","EN":0},"TI":422,"AM":0,"x":32.822,"y":6.615,"w":3.559,"h":0.912,"TU":"Spouse middle initial","MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SLNM","EN":0},"TI":423,"AM":0,"x":37.381,"y":6.624,"w":43.056,"h":0.876,"TU":"Spouse's Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":424,"AM":0,"x":80.438,"y":6.613,"w":18.563,"h":0.887,"TU":"Spouse's social Security Number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":425,"AM":0,"x":6.188,"y":8.118,"w":65.588,"h":0.882,"TU":"Home address (number and street). If you have a Post Office Box, see instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":426,"AM":0,"x":71.775,"y":8.109,"w":8.662,"h":0.891,"TU":"Apartment number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":427,"AM":0,"x":6.188,"y":9.683,"w":50.065,"h":0.845,"TU":"City, town or post office. If you have a foreign address, also complete spaces below (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":428,"AM":0,"x":59.11,"y":9.576,"w":4.516,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":429,"AM":0,"x":66.383,"y":9.663,"w":7.881,"h":0.866,"TU":"Zip code"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":430,"AM":0,"x":6.534,"y":11.063,"w":36.556,"h":0.857,"PL":{"V":[null,"Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPC","EN":0},"TI":431,"AM":0,"x":44.55,"y":11.184,"w":24.173,"h":0.833,"TU":"Foreign province/state/county. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":432,"AM":0,"x":70.518,"y":11.187,"w":8.766,"h":0.833,"TU":"Foreign postal code. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1T","EN":0},"TI":435,"AM":0,"x":49.53,"y":12.75,"w":9.235,"h":0.833,"PL":{"V":[" ","EXCESS ALLOWANCE","F8919","FB","FEC","DCB","HSH","SCH","PSO","PRI","DFC","NONE APPLY"],"D":[" ","EXCESS ALLOWANCE","F8919","FB","FEC","DCB","HSH","SCH","PSO","PRI","DFC","NONE"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LSCL1T","EN":0},"TI":436,"AM":0,"x":60.116,"y":12.604,"w":19.792,"h":0.912,"TU":"Line 1 write-in amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":437,"AM":0,"x":82.912,"y":12.75,"w":12.375,"h":0.833,"TU":"Line 1 Wages, salaries and tips. This should be shown in box 1 of your Form(s) W-2. "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L2W","EN":0},"TI":438,"AM":0,"x":69.249,"y":14.086,"w":4.22,"h":0.833,"TU":"Line 2 write-in text.","MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2WA","EN":0},"TI":439,"AM":0,"x":74.191,"y":14.183,"w":6.242,"h":0.833,"TU":"Line 2 write-in amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":440,"AM":0,"x":82.784,"y":14.25,"w":12.375,"h":0.833,"TU":"Line 2 Taxable interest. If the total is over $1,500, you cannot use Form 1040 E Z."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L3T1","EN":0},"TI":441,"AM":0,"x":59.891,"y":15.136,"w":7.739,"h":0.833,"TU":"Line 3 write-in text."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3T2","EN":0},"TI":442,"AM":0,"x":68.65,"y":15.163,"w":11.856,"h":0.833,"TU":"Line 3 write-in amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":443,"AM":0,"x":82.977,"y":15.75,"w":12.375,"h":0.833,"TU":"Line 3 Unemployment compensation and Alaska Permanent Fund dividends."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":444,"AM":1024,"x":82.912,"y":17.25,"w":12.375,"h":0.833,"TU":"Line 4 Add lines 1, 2, and 3. This is your adjusted gross income. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":447,"AM":0,"x":82.838,"y":21,"w":12.375,"h":0.833,"TU":"Line 5. If no one can claim you (or your spouse if a joint return), enter $10,000 if single; $20,000 if married filing jointly. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":448,"AM":1024,"x":82.912,"y":22.5,"w":12.375,"h":0.833,"TU":"6 Subtract line 5 from line 4. If line 5 is larger than line 4, enter6 Subtract line 4 from line 4. If line 5 is larger than line 4, enter zero. This is your taxable income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":449,"AM":0,"x":82.912,"y":23.25,"w":12.375,"h":0.833,"TU":"Line 7. Federal income tax withheld from Forms W-2 and 1099."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L8W","EN":0},"TI":450,"AM":0,"x":66.704,"y":24.011,"w":7.964,"h":0.833,"TU":"Line 8a \"No\" EIC ","MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":451,"AM":0,"x":82.912,"y":24,"w":12.375,"h":0.833,"TU":"Line 8a. Earned income credit (EIC)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCOMBAT","EN":0},"TI":452,"AM":0,"x":61.875,"y":24.75,"w":16.237,"h":0.833,"TU":"Line 8b. Nontaxable combat pay election. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L9W","EN":0},"TI":453,"AM":0,"x":63.56,"y":25.473,"w":5.268,"h":0.833,"TU":"Line 10 write-in text."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9WA","EN":0},"TI":454,"AM":0,"x":69.249,"y":25.508,"w":6.915,"h":0.833,"TU":"Line 10 write-in amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":455,"AM":1024,"x":82.912,"y":25.5,"w":12.375,"h":0.833,"TU":"Line 9. Add lines 7 and 8a. These are your total payments and credits. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":456,"AM":0,"x":82.912,"y":27,"w":12.375,"h":0.833,"TU":"Line 10. Tax. Use the amount on line 6 above to find your tax in the tax table in the instructions. Then, enter the tax from the table on this line. "},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8888"}},"id":{"Id":"Add_F8888","EN":0},"TI":458,"AM":0,"x":52.912,"y":28.399,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11A","EN":0},"TI":459,"AM":1024,"x":82.912,"y":28.5,"w":12.375,"h":0.833,"TU":"Line 11a. If line 9 is larger than line 10, subtract line 10 from line 9. This is your refund."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ROUTNO","EN":0},"TI":460,"AM":0,"x":35.871,"y":29.579,"w":22.107,"h":0.833,"TU":"Line 11b. Routing number","MV":"maxl:9"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCNO","EN":0},"TI":463,"AM":0,"x":35.888,"y":31.125,"w":42.133,"h":0.833,"TU":" Line 11d. Account Number.","MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":464,"AM":1024,"x":82.912,"y":33,"w":12.375,"h":0.833,"TU":"Line 12. If line 10 is larger than line 9, subtract line 9 from line 10. This is the amount you owe. For details on how to pay, see instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESNAM","EN":0},"TI":467,"AM":0,"x":27.225,"y":35.125,"w":22.275,"h":0.833,"TU":"Designee's name. "},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DESPH","EN":0},"TI":468,"AM":0,"x":56.925,"y":35.125,"w":14.85,"h":0.833,"TU":"Designee's Phone number. "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DESPIN","EN":0},"TI":469,"AM":0,"x":86.625,"y":35.152,"w":11.137,"h":0.833,"TU":"Personal identification number (P I N). 5 digits.","MV":"99999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":470,"AM":0,"x":59.4,"y":38.154,"w":19.8,"h":0.847,"TU":"Your occupation."},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DTPHO","EN":0},"TI":471,"AM":0,"x":79.264,"y":38.125,"w":19.8,"h":0.875,"TU":"Daytime phone number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SOCC","EN":0},"TI":472,"AM":0,"x":59.4,"y":39.646,"w":19.8,"h":0.854,"TU":"Spouse's occupation. "},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"IDTHEFT","EN":0},"TI":473,"AM":0,"x":86.625,"y":39.75,"w":12.375,"h":0.833,"TU":"If the IRS sent you an Identity Protection PIN, enter it here (see instructions). 6 digits.","MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIG","EN":0},"TI":474,"AM":1024,"x":36.37,"y":41.148,"w":25.445,"h":0.833,"V":"Not for use by paid preparers"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":475,"AM":1024,"x":27.499,"y":42.084,"w":26.446,"h":0.833,"V":"Self-prepared"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PECY","EN":0},"TI":433,"AM":0,"x":88.206,"y":11.25,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SECY","EN":0},"TI":434,"AM":0,"x":93.237,"y":11.25,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DXT","EN":0},"TI":445,"AM":0,"x":23.513,"y":19.438,"w":1.719,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DXS","EN":0},"TI":446,"AM":0,"x":34.65,"y":19.438,"w":1.719,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8888","EN":0},"TI":457,"AM":1024,"x":49.5,"y":28.375,"w":1.719,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCC","EN":0},"TI":461,"AM":0,"x":66.797,"y":29.52,"w":1.967,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCS","EN":0},"TI":462,"AM":0,"x":75.488,"y":29.579,"w":1.806,"h":0.833,"checked":false}],"id":{"Id":"ACCRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PPDY","EN":0},"TI":465,"AM":0,"x":75.327,"y":33.764,"w":1.645,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PPDN","EN":0},"TI":466,"AM":0,"x":94.074,"y":33.707,"w":1.484,"h":0.833,"checked":false}],"id":{"Id":"PPDRB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":87.949},{"oc":"#221f1f","x":94.009,"y":3.001,"w":1.5,"l":5.036},{"oc":"#221f1f","x":6.19,"y":24.751,"w":1.2000000000000002,"l":92.813},{"oc":"#221f1f","x":60.597,"y":29.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":60.597,"y":30.001,"w":0.75,"l":1.323},{"oc":"#221f1f","x":61.834,"y":30.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":86.584,"y":30.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":30.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":31.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":32.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":32.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":33.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":33.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":35.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":35.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":37.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":37.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.19,"y":42.001,"w":1.5,"l":92.813},{"oc":"#221f1f","x":6.147,"y":44.268,"w":1.5,"l":92.899}],"VLines":[],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":9.078000000000003,"clr":-1,"A":"left","R":[{"T":"Form%201040EZ%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.7,"y":2.01,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.797,"y":2.01,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.016,"w":6.668000000000001,"clr":-1,"A":"left","R":[{"T":"Use%20this%20form%20","S":-1,"TS":[0,14.56,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.891,"w":0.611,"clr":-1,"A":"left","R":[{"T":"if","S":-1,"TS":[0,14.56,1,0]}]},{"oc":"#221f1f","x":19.552,"y":3.5730000000000004,"w":45.40299999999999,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Your%20filing%20status%20is%20single%20or%20married%20filing%20jointly.%20If%20you%20are%20not%20sure%20about%20your%20filing%20status%2C%20see%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":4.273,"w":48.535999999999994,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20(and%20your%20spouse%20if%20married%20filing%20jointly)%20were%20under%20age%2065%20and%20not%20blind%20at%20the%20end%20of%202013.%20If%20you%20were%20born%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":4.96,"w":27.243999999999993,"clr":-1,"A":"left","R":[{"T":"January%201%2C%201949%2C%20you%20are%20considered%20to%20be%20age%2065%20at%20the%20end%20of%202013.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":5.823,"w":32.957999999999984,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20do%20not%20claim%20any%20dependents.%20For%20information%20on%20dependents%2C%20see%20Pub.%20501.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":6.573,"w":21.292,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Your%20taxable%20income%20(line%206)%20is%20less%20than%20%24100%2C000.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":7.273,"w":50.596999999999994,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20do%20not%20claim%20any%20adjustments%20to%20income.%20For%20information%20on%20adjustments%20to%20income%2C%20use%20the%20TeleTax%20topics%20listed%20under%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":7.960000000000001,"w":9.110000000000001,"clr":-1,"A":"left","R":[{"T":"Adjustments%20to%20Income","S":44,"TS":[2,12,0,0]}]},{"oc":"#221f1f","x":33.644,"y":7.960000000000001,"w":1.222,"clr":-1,"A":"left","R":[{"T":"%20at%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.534,"y":7.960000000000001,"w":8.89,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Ftaxtopics","S":44,"TS":[2,12,0,0]}]},{"oc":"#221f1f","x":49.286,"y":7.960000000000001,"w":7.36,"clr":-1,"A":"left","R":[{"T":"%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":8.698,"w":51.11699999999999,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20The%20only%20tax%20credit%20you%20can%20claim%20is%20the%20earned%20income%20credit%20(EIC).%20The%20credit%20may%20give%20you%20a%20refund%20even%20if%20you%20do%20not%20owe%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":9.385,"w":49.939,"clr":-1,"A":"left","R":[{"T":"any%20tax.%20You%20do%20not%20need%20a%20qualifying%20child%20to%20claim%20the%20EIC.%20For%20information%20on%20credits%2C%20use%20the%20TeleTax%20topics%20listed%20under%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":10.072,"w":4.695000000000001,"clr":-1,"A":"left","R":[{"T":"Tax%20Credits","S":44,"TS":[2,12,0,0]}]},{"oc":"#221f1f","x":26.815,"y":10.072,"w":1.222,"clr":-1,"A":"left","R":[{"T":"%20at%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.705,"y":10.072,"w":8.89,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Ftaxtopics","S":44,"TS":[2,12,0,0]}]},{"oc":"#221f1f","x":42.457,"y":10.072,"w":36.076,"clr":-1,"A":"left","R":[{"T":"%20(see%20instructions).%20If%20you%20received%20a%20Form%201098-T%20or%20paid%20higher%20education%20expenses%2C%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":10.76,"w":50.245999999999974,"clr":-1,"A":"left","R":[{"T":"may%20be%20eligible%20for%20a%20tax%20credit%20or%20deduction%20that%20you%20must%20claim%20on%20Form%201040A%20or%20Form%201040.%20For%20more%20information%20on%20tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":11.447,"w":14.803,"clr":-1,"A":"left","R":[{"T":"benefits%20for%20education%2C%20see%20Pub.%20970.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":12.391,"w":47.593999999999994,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20had%20only%20wages%2C%20salaries%2C%20tips%2C%20taxable%20scholarship%20or%20fellowship%20grants%2C%20unemployment%20compensation%2C%20or%20Alaska%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":13.078,"w":50.44,"clr":-1,"A":"left","R":[{"T":"Permanent%20Fund%20dividends%2C%20and%20your%20taxable%20interest%20was%20not%20over%20%241%2C500.%20But%20if%20you%20earned%20tips%2C%20including%20allocated%20tips%2C%20that","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":13.766,"w":50.631999999999984,"clr":-1,"A":"left","R":[{"T":"are%20not%20included%20in%20box%205%20and%20box%207%20of%20your%20Form%20W-2%2C%20you%20may%20not%20be%20able%20to%20use%20Form%201040EZ%20(see%20instructions).%20If%20you%20are%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":14.453,"w":42.912000000000006,"clr":-1,"A":"left","R":[{"T":"planning%20to%20use%20Form%201040EZ%20for%20a%20child%20who%20received%20Alaska%20Permanent%20Fund%20dividends%2C%20see%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":16.765,"w":6.835000000000001,"clr":-1,"A":"left","R":[{"T":"Filling%20in%20your%20","S":-1,"TS":[0,14.56,1,0]}]},{"oc":"#221f1f","x":5.94,"y":17.641,"w":2.8890000000000002,"clr":-1,"A":"left","R":[{"T":"return","S":-1,"TS":[0,14.56,1,0]}]},{"oc":"#221f1f","x":19.552,"y":16.64,"w":46.686,"clr":-1,"A":"left","R":[{"T":"If%20you%20received%20a%20scholarship%20or%20fellowship%20grant%20or%20tax-exempt%20interest%20income%2C%20such%20as%20on%20municipal%20bonds%2C%20see%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":17.327,"w":50.60399999999998,"clr":-1,"A":"left","R":[{"T":"instructions%20before%20filling%20in%20the%20form.%20Also%2C%20see%20the%20instructions%20if%20you%20received%20a%20Form%201099-INT%20showing%20federal%20income%20tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":18.014,"w":50.355,"clr":-1,"A":"left","R":[{"T":"withheld%20or%20if%20federal%20income%20tax%20was%20withheld%20from%20your%20unemployment%20compensation%20or%20Alaska%20Permanent%20Fund%20dividends.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":19.928,"w":4.5840000000000005,"clr":-1,"A":"left","R":[{"T":"For%20tips%20on%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":20.615,"w":5.4719999999999995,"clr":-1,"A":"left","R":[{"T":"how%20to%20avoid%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":21.303,"w":3.75,"clr":-1,"A":"left","R":[{"T":"common%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":21.99,"w":5.527,"clr":-1,"A":"left","R":[{"T":"mistakes%2C%20see%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":22.678,"w":4.917000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":19.552,"y":20.023,"w":51.326999999999984,"clr":-1,"A":"left","R":[{"T":"Remember%2C%20you%20must%20report%20all%20wages%2C%20salaries%2C%20and%20tips%20even%20if%20you%20do%20not%20get%20a%20Form%20W-2%20from%20your%20employer.%20You%20must%20also%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":20.742,"w":48.715999999999994,"clr":-1,"A":"left","R":[{"T":"report%20all%20your%20taxable%20interest%2C%20including%20interest%20from%20banks%2C%20savings%20and%20loans%2C%20credit%20unions%2C%20etc.%2C%20even%20if%20you%20do%20not%20get","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.91,"y":20.742,"w":0.944,"clr":-1,"A":"left","R":[{"T":"%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":21.46,"w":7.1659999999999995,"clr":-1,"A":"left","R":[{"T":"Form%201099-INT.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":25.765,"w":5.668000000000001,"clr":-1,"A":"left","R":[{"T":"Worksheet%20%20","S":-1,"TS":[0,14.56,1,0]}]},{"oc":"#221f1f","x":5.94,"y":26.641,"w":5.557,"clr":-1,"A":"left","R":[{"T":"for%20Line%205%20%E2%80%9E%20","S":-1,"TS":[0,14.56,1,0]}]},{"oc":"#221f1f","x":5.94,"y":27.516,"w":6.0009999999999994,"clr":-1,"A":"left","R":[{"T":"Dependents%20","S":-1,"TS":[0,14.56,1,0]}]},{"oc":"#221f1f","x":5.94,"y":28.391,"w":6.890000000000001,"clr":-1,"A":"left","R":[{"T":"Who%20Checked%20","S":-1,"TS":[0,14.56,1,0]}]},{"oc":"#221f1f","x":5.94,"y":29.266,"w":6.055999999999999,"clr":-1,"A":"left","R":[{"T":"One%20or%20Both%20","S":-1,"TS":[0,14.56,1,0]}]},{"oc":"#221f1f","x":5.94,"y":30.142,"w":3.0010000000000003,"clr":-1,"A":"left","R":[{"T":"Boxes","S":-1,"TS":[0,14.56,1,0]}]},{"oc":"#221f1f","x":5.94,"y":38.053,"w":6.775,"clr":-1,"A":"left","R":[{"T":"(keep%20a%20copy%20for%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":38.74,"w":5.359000000000001,"clr":-1,"A":"left","R":[{"T":"your%20records)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":19.552,"y":25.553,"w":44.49299999999998,"clr":-1,"A":"left","R":[{"T":"Use%20this%20worksheet%20to%20figure%20the%20amount%20to%20enter%20on%20line%205%20if%20someone%20can%20claim%20you%20(or%20your%20spouse%20if%20married%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":19.552,"y":26.178,"w":45.32800000000001,"clr":-1,"A":"left","R":[{"T":"filing%20jointly)%20as%20a%20dependent%2C%20even%20if%20that%20person%20chooses%20not%20to%20do%20so.%20To%20find%20out%20if%20someone%20can%20claim%20you%20as%20a%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":19.552,"y":26.803,"w":10.193,"clr":-1,"A":"left","R":[{"T":"dependent%2C%20see%20Pub.%20501.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":19.552,"y":28.323,"w":1.278,"clr":-1,"A":"left","R":[{"T":"A.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.442,"y":28.323,"w":14.721000000000004,"clr":-1,"A":"left","R":[{"T":"Amount%2C%20if%20any%2C%20from%20line%201%20on%20front%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":28.323,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.39,"y":28.963,"w":0.5640000000000001,"clr":-1,"A":"left","R":[{"T":"%2B","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.48,"y":29.073,"w":2.75,"clr":-1,"A":"left","R":[{"T":"350.00","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.766,"y":29.073,"w":4.694,"clr":-1,"A":"left","R":[{"T":"Enter%20total%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.327,"y":28.979,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.195,"y":29.073,"w":1.278,"clr":-1,"A":"left","R":[{"T":"A%20.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.552,"y":29.823,"w":1.278,"clr":-1,"A":"left","R":[{"T":"B.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.357,"y":29.823,"w":12.083000000000002,"clr":-1,"A":"left","R":[{"T":"Minimum%20standard%20deduction%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":29.823,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.227,"y":29.823,"w":1.278,"clr":-1,"A":"left","R":[{"T":"B%20.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.552,"y":30.573,"w":1.278,"clr":-1,"A":"left","R":[{"T":"C.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.442,"y":30.573,"w":3.888,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.457,"y":30.573,"w":3.057,"clr":-1,"A":"left","R":[{"T":"larger%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":31.881,"y":30.573,"w":9.526000000000002,"clr":-1,"A":"left","R":[{"T":"of%20line%20A%20or%20line%20B%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":30.573,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.187,"y":30.573,"w":1.278,"clr":-1,"A":"left","R":[{"T":"C%20.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.552,"y":31.323,"w":1.278,"clr":-1,"A":"left","R":[{"T":"D.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.442,"y":31.323,"w":13.415000000000003,"clr":-1,"A":"left","R":[{"T":"Maximum%20standard%20deduction.%20If%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.679,"y":31.323,"w":3.446,"clr":-1,"A":"left","R":[{"T":"single%2C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":46.406,"y":31.323,"w":6.388,"clr":-1,"A":"left","R":[{"T":"enter%20%246%2C100%3B%20if%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.116,"y":31.323,"w":10.114000000000004,"clr":-1,"A":"left","R":[{"T":"married%20filing%20jointly%2C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":69.951,"y":31.323,"w":5.749,"clr":-1,"A":"left","R":[{"T":"enter%20%2412%2C200%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.877,"y":31.323,"w":0.25,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.195,"y":31.323,"w":1.278,"clr":-1,"A":"left","R":[{"T":"D%20.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.552,"y":32.072,"w":1.223,"clr":-1,"A":"left","R":[{"T":"E.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.357,"y":32.072,"w":3.888,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.372,"y":32.072,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":32.656,"y":32.072,"w":22.636,"clr":-1,"A":"left","R":[{"T":"of%20line%20C%20or%20line%20D%20here.%20This%20is%20your%20standard%20deduction%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.815,"y":32.072,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.233,"y":32.072,"w":1.223,"clr":-1,"A":"left","R":[{"T":"E%20.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.552,"y":32.823,"w":1.167,"clr":-1,"A":"left","R":[{"T":"F.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.271,"y":32.823,"w":7.889000000000001,"clr":-1,"A":"left","R":[{"T":"Exemption%20amount.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.027,"y":33.572,"w":8.32,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20single%2C%20enter%20-0-.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.027,"y":34.323,"w":12.849000000000004,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20married%20filing%20jointly%20and%20%E2%80%94","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.231,"y":35.073,"w":27.771999999999988,"clr":-1,"A":"left","R":[{"T":"%E2%80%94both%20you%20and%20your%20spouse%20can%20be%20claimed%20as%20dependents%2C%20enter%20-0-.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.231,"y":35.823,"w":25.438999999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%94only%20one%20of%20you%20can%20be%20claimed%20as%20a%20dependent%2C%20enter%20%243%2C900.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.671,"y":34.783,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[0,31.5001,0,0]}]},{"oc":"#221f1f","x":84.281,"y":34.323,"w":1.167,"clr":-1,"A":"left","R":[{"T":"F%20.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.552,"y":36.572,"w":1.334,"clr":-1,"A":"left","R":[{"T":"G.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.529,"y":36.572,"w":25.968999999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%20E%20and%20F.%20Enter%20the%20total%20here%20and%20on%20line%205%20on%20the%20front%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":36.572,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.147,"y":36.572,"w":1.334,"clr":-1,"A":"left","R":[{"T":"G%20.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.552,"y":38.073,"w":19.173000000000002,"clr":-1,"A":"left","R":[{"T":"If%20you%20did%20not%20check%20any%20boxes%20on%20line%205%2C","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.767,"y":38.073,"w":24.13699999999999,"clr":-1,"A":"left","R":[{"T":"%20enter%20on%20line%205%20the%20amount%20shown%20below%20that%20applies%20to%20you.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":38.823,"w":42.92899999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Single%2C%20enter%20%2410%2C000.%20This%20is%20the%20total%20of%20your%20standard%20deduction%20(%246%2C100)%20and%20your%20exemption%20(%243%2C900).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":39.648,"w":49.622999999999976,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Married%20filing%20jointly%2C%20enter%20%2420%2C000.%20This%20is%20the%20total%20of%20your%20standard%20deduction%20(%2412%2C200)%2C%20your%20exemption%20(%243%2C900)%2C%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":40.323,"w":13.762000000000002,"clr":-1,"A":"left","R":[{"T":"your%20spouse's%20exemption%20(%243%2C900).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":42.14,"w":3.7229999999999994,"clr":-1,"A":"left","R":[{"T":"Mailing%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.94,"y":42.89,"w":3.2219999999999995,"clr":-1,"A":"left","R":[{"T":"Return","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":19.552,"y":42.498,"w":8.110000000000001,"clr":-1,"A":"left","R":[{"T":"Mail%20your%20return%20by%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.926000000000002,"y":42.498,"w":7.004000000000001,"clr":-1,"A":"left","R":[{"T":"April%2015%2C%202014.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":41.852,"y":42.498,"w":25.525999999999986,"clr":-1,"A":"left","R":[{"T":"Mail%20it%20to%20the%20address%20shown%20on%20the%20last%20page%20of%20the%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.926,"y":44.276,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.069,"y":44.276,"w":3.502,"clr":-1,"A":"left","R":[{"T":"1040EZ","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":44.276,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":94.241,"y":29.879,"w":2.25,"clr":-1,"A":"left","R":[{"T":"1%2C000","S":3,"TS":[0,12,0,0]}]}],"Fields":[],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.7","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Income Tax Return for Single and Joint Filers With No Dependents","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Adobe Acrobat Pro 10.1.8","CreationDate":"D:20131203195744-08'00'","ModDate":"D:20140131180641-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":4.501,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":2.235,"y":6.001,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":13.501,"y":6.001,"w":0.75,"l":15.75,"oc":"#221f1f"},{"x":13.501,"y":4.501,"w":0.75,"l":15.75,"oc":"#221f1f"},{"x":29.235,"y":4.501,"w":1.5,"l":6.781,"oc":"#221f1f"},{"x":2.235,"y":6.001,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":2.235,"y":7.501,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":13.501,"y":7.501,"w":0.75,"l":15.75,"oc":"#221f1f"},{"x":13.501,"y":6.001,"w":0.75,"l":15.75,"oc":"#221f1f"},{"x":29.235,"y":6.001,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":29.235,"y":7.501,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":29.235,"y":9.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.135,"y":9.001,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":2.235,"y":7.501,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":2.235,"y":9.001,"w":0.75,"l":23.881,"oc":"#221f1f"},{"x":26.101,"y":9.001,"w":0.75,"l":3.15,"oc":"#221f1f"},{"x":26.101,"y":7.501,"w":0.75,"l":3.15,"oc":"#221f1f"},{"x":2.235,"y":9.001,"w":0.75,"l":27.031,"oc":"#221f1f"},{"x":2.235,"y":10.501,"w":0.75,"l":27.031,"oc":"#221f1f"},{"x":2.235,"y":10.501,"w":0.75,"l":13.981,"oc":"#221f1f"},{"x":16.185,"y":10.501,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":25.185,"y":10.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":9.001,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":2.251,"y":12.001,"w":1.2,"l":33.75,"oc":"#181516"},{"x":30.135,"y":12.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":12.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":7.111,"y":13.501,"w":0.75,"l":28.89,"oc":"#221f1f"},{"x":30.135,"y":13.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":13.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":7.111,"y":15.001,"w":0.75,"l":28.89,"oc":"#221f1f"},{"x":30.135,"y":15.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":15.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":7.111,"y":16.501,"w":0.75,"l":28.89,"oc":"#221f1f"},{"x":30.135,"y":16.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":7.111,"y":18.001,"w":0.75,"l":28.89,"oc":"#221f1f"},{"x":30.135,"y":18.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":7.111,"y":21.751,"w":0.75,"l":28.89,"oc":"#221f1f"},{"x":30.135,"y":21.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":21.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.251,"y":23.251,"w":1.5,"l":33.75,"oc":"#221f1f"},{"x":30.135,"y":23.251,"w":1.5,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":23.251,"w":1.5,"l":1.381,"oc":"#221f1f"},{"x":7.111,"y":24.001,"w":0.75,"l":28.89,"oc":"#221f1f"},{"x":30.135,"y":24.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":24.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":7.111,"y":24.751,"w":0.75,"l":28.888,"oc":"#221f1f"},{"x":21.135,"y":25.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.485,"y":24.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":25.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":24.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":26.985,"y":25.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":7.111,"y":25.501,"w":0.75,"l":14.04,"oc":"#221f1f"},{"x":30.135,"y":24.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":24.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":7.111,"y":26.251,"w":0.75,"l":28.853,"oc":"#221f1f"},{"x":30.135,"y":26.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":26.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":27.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.251,"y":27.751,"w":1.5,"l":27.91,"oc":"#221f1f"},{"x":30.135,"y":27.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":27.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":7.111,"y":29.251,"w":0.75,"l":28.89,"oc":"#221f1f"},{"x":13.051,"y":30.376,"w":0.75,"l":8.1,"oc":"#221f1f"},{"x":13.038,"y":31.844,"w":0.75,"l":15.321,"oc":"#221f1f"},{"x":30.135,"y":29.251,"w":1.5,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":29.251,"w":1.5,"l":1.381,"oc":"#221f1f"},{"x":2.251,"y":32.251,"w":1.5,"l":26.1,"oc":"#221f1f"},{"x":2.251,"y":33.751,"w":1.5,"l":33.75,"oc":"#221f1f"},{"x":2.251,"y":36.001,"w":1.125,"l":33.75,"oc":"#221f1f"},{"x":5.385,"y":40.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":6.735,"y":39.001,"w":0.75,"l":11.731,"oc":"#221f1f"},{"x":18.435,"y":39.001,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":21.585,"y":39.001,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":39.001,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":40.501,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":2.235,"y":40.501,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":2.235,"y":43.501,"w":1.5,"l":3.631,"oc":"#221f1f"},{"x":5.835,"y":40.501,"w":1.125,"l":7.231,"oc":"#221f1f"},{"x":5.835,"y":42.001,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":13.035,"y":40.501,"w":1.125,"l":11.281,"oc":"#221f1f"},{"x":13.035,"y":42.001,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":24.285,"y":40.501,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":42.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.785,"y":40.501,"w":1.125,"l":3.181,"oc":"#221f1f"},{"x":28.785,"y":42.001,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":31.935,"y":40.501,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":31.935,"y":42.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":5.835,"y":42.001,"w":0.75,"l":18.931,"oc":"#221f1f"},{"x":5.835,"y":42.751,"w":0.75,"l":18.931,"oc":"#221f1f"},{"x":5.835,"y":43.501,"w":1.5,"l":18.931,"oc":"#221f1f"},{"x":24.735,"y":42.001,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":24.735,"y":42.751,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":24.735,"y":42.751,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":24.735,"y":43.501,"w":1.5,"l":11.281,"oc":"#221f1f"},{"x":2.235,"y":43.501,"w":1.5,"l":18.031,"oc":"#221f1f"},{"x":20.235,"y":43.501,"w":1.5,"l":10.831,"oc":"#221f1f"},{"x":31.035,"y":43.501,"w":1.5,"l":4.981,"oc":"#221f1f"},{"x":13.082,"y":30.345,"w":1.5,"l":8.043,"oc":"#231f20"},{"x":13.082,"y":29.657,"w":1.5,"l":8.043,"oc":"#231f20"},{"x":31.532,"y":35.871,"w":1.5,"l":3.987,"oc":"#231f20"},{"x":31.532,"y":35.184,"w":1.5,"l":3.987,"oc":"#231f20"},{"x":31.532,"y":40.47,"w":1.5,"l":4.437,"oc":"#57585a"},{"x":31.532,"y":39.782,"w":1.5,"l":4.437,"oc":"#57585a"}],"VLines":[{"x":13.501,"y":4.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":4.501,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":13.501,"y":4.501,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":29.251,"y":4.47,"w":0.75,"l":1.563,"oc":"#221f1f"},{"x":31.363,"y":5.251,"w":0.75,"l":0.625,"oc":"#221f1f","dsh":1},{"x":32.713,"y":5.251,"w":0.75,"l":0.625,"oc":"#221f1f","dsh":1},{"x":13.501,"y":5.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":6.001,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":13.501,"y":6.001,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":29.251,"y":5.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.363,"y":6.751,"w":0.75,"l":0.625,"oc":"#221f1f","dsh":1},{"x":32.713,"y":6.751,"w":0.75,"l":0.625,"oc":"#221f1f","dsh":1},{"x":26.101,"y":7.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":7.501,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":26.101,"y":7.501,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":29.251,"y":8.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.201,"y":10.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":10.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.201,"y":10.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":10.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":10.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":12.72,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":34.651,"y":13.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":14.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":17.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":34.651,"y":20.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":20.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":23.22,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":34.651,"y":23.22,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":34.651,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":26.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":26.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":28.47,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":34.651,"y":28.47,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":13.951,"y":29.626,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":13.051,"y":29.626,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":14.851,"y":29.626,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":15.751,"y":29.626,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":16.651,"y":29.626,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":17.551,"y":29.626,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":18.451,"y":29.626,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":19.351,"y":29.626,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":20.251,"y":29.626,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":21.151,"y":29.626,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":13.938,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":13.038,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":14.838,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":15.738,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":16.638,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":17.538,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":18.438,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":19.338,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":20.238,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":21.138,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":22.081,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":22.938,"y":31.156,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":23.894,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":24.738,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":25.638,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":26.538,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":27.438,"y":31.126,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":28.338,"y":31.139,"w":0.75,"l":0.688,"oc":"#221f1f","dsh":1},{"x":34.651,"y":29.22,"w":0.75,"l":3.797,"oc":"#221f1f"},{"x":34.651,"y":29.22,"w":0.75,"l":3.797,"oc":"#221f1f"},{"x":34.651,"y":32.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":32.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":37.486,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":37.486,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":37.486,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.451,"y":38.985,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":21.601,"y":38.985,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":38.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":5.851,"y":40.478,"w":0.75,"l":3.055,"oc":"#221f1f"},{"x":13.051,"y":40.478,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":40.478,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":24.301,"y":40.478,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":40.478,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":31.951,"y":40.478,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":24.751,"y":41.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.751,"y":42.735,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":24.751,"y":41.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.751,"y":42.735,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":21.125,"y":29.657,"w":1.5,"l":0.687,"oc":"#231f20"},{"x":13.082,"y":29.657,"w":1.5,"l":0.687,"oc":"#231f20"},{"x":13.951,"y":29.689,"w":1.5,"l":0.656,"oc":"#231f20"},{"x":14.852,"y":29.689,"w":1.5,"l":0.656,"oc":"#231f20"},{"x":15.753,"y":29.689,"w":1.5,"l":0.656,"oc":"#231f20"},{"x":16.653,"y":29.689,"w":1.5,"l":0.656,"oc":"#231f20"},{"x":17.554,"y":29.689,"w":1.5,"l":0.656,"oc":"#231f20"},{"x":18.455,"y":29.689,"w":1.5,"l":0.656,"oc":"#231f20"},{"x":19.355,"y":29.689,"w":1.5,"l":0.656,"oc":"#231f20"},{"x":20.256,"y":29.689,"w":1.5,"l":0.656,"oc":"#231f20"},{"x":20.256,"y":29.689,"w":1.5,"l":0.656,"oc":"#231f20"},{"x":35.52,"y":35.184,"w":1.5,"l":0.687,"oc":"#231f20"},{"x":31.532,"y":35.184,"w":1.5,"l":0.687,"oc":"#231f20"},{"x":32.311,"y":35.215,"w":1.5,"l":0.656,"oc":"#231f20"},{"x":33.121,"y":35.215,"w":1.5,"l":0.656,"oc":"#231f20"},{"x":33.931,"y":35.215,"w":1.5,"l":0.656,"oc":"#231f20"},{"x":34.741,"y":35.215,"w":1.5,"l":0.656,"oc":"#231f20"},{"x":34.741,"y":35.215,"w":1.5,"l":0.656,"oc":"#231f20"},{"x":35.97,"y":39.782,"w":1.5,"l":0.687,"oc":"#57585a"},{"x":31.532,"y":39.782,"w":1.5,"l":0.687,"oc":"#57585a"},{"x":32.251,"y":39.814,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":33.001,"y":39.814,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":33.751,"y":39.814,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":34.501,"y":39.814,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":35.251,"y":39.814,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":35.251,"y":39.814,"w":1.5,"l":0.656,"oc":"#57585a"},{"x":20.991,"y":9.016,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":23.553,"y":9.016,"w":0.75,"l":1.531,"oc":"#221f1f"}],"Fills":[{"x":5.851,"y":2.251,"w":30.217,"h":41.25,"oc":"#ecf6ea"},{"x":2.251,"y":43.501,"w":33.984,"h":0.75,"oc":"#ecf6ea"},{"x":29.251,"y":5.251,"w":6.75,"h":0.75,"clr":1},{"x":29.251,"y":6.751,"w":6.75,"h":0.75,"clr":1},{"x":2.251,"y":4.501,"w":11.25,"h":1.5,"clr":1},{"x":13.501,"y":4.501,"w":15.75,"h":1.5,"clr":1},{"x":29.251,"y":4.501,"w":6.75,"h":1.5,"clr":1},{"x":2.251,"y":6.001,"w":11.25,"h":1.5,"clr":1},{"x":13.501,"y":6.001,"w":15.75,"h":1.5,"clr":1},{"x":29.251,"y":6.001,"w":6.75,"h":1.5,"clr":1},{"x":2.251,"y":7.501,"w":23.85,"h":1.5,"clr":1},{"x":26.101,"y":7.501,"w":3.15,"h":1.5,"clr":1},{"x":2.251,"y":9.001,"w":27,"h":1.5,"clr":1},{"x":2.251,"y":10.501,"w":13.95,"h":1.5,"clr":1},{"x":16.201,"y":10.501,"w":9,"h":1.5,"clr":1},{"x":25.201,"y":10.501,"w":4.05,"h":1.5,"clr":1},{"x":30.151,"y":12.001,"w":4.5,"h":0.75,"clr":1},{"x":30.151,"y":12.751,"w":5.85,"h":0.75,"clr":1},{"x":30.151,"y":13.501,"w":4.5,"h":0.75,"clr":1},{"x":30.151,"y":14.251,"w":5.85,"h":0.75,"clr":1},{"x":30.151,"y":15.001,"w":4.5,"h":0.75,"clr":1},{"x":30.151,"y":15.751,"w":5.85,"h":0.75,"clr":1},{"x":30.151,"y":16.501,"w":4.5,"h":0.75,"clr":1},{"x":30.151,"y":17.251,"w":5.85,"h":0.75,"clr":1},{"x":30.151,"y":18.001,"w":4.5,"h":3,"clr":1},{"x":34.651,"y":18.001,"w":1.35,"h":3,"clr":1},{"x":30.151,"y":21.001,"w":4.5,"h":0.75,"clr":1},{"x":30.151,"y":21.751,"w":4.5,"h":0.75,"clr":1},{"x":30.151,"y":22.501,"w":4.5,"h":0.75,"clr":1},{"x":30.151,"y":23.251,"w":4.5,"h":0.75,"clr":1},{"x":30.151,"y":24.001,"w":4.5,"h":0.75,"clr":1},{"x":22.501,"y":24.751,"w":4.5,"h":0.75,"clr":1},{"x":30.151,"y":24.751,"w":4.5,"h":0.75,"clr":1},{"x":30.151,"y":25.501,"w":4.5,"h":0.75,"clr":1},{"x":30.151,"y":26.251,"w":4.5,"h":0.75,"clr":1},{"x":30.151,"y":27.001,"w":4.5,"h":0.75,"clr":1},{"x":30.151,"y":27.751,"w":4.5,"h":0.75,"clr":1},{"x":30.151,"y":28.501,"w":4.5,"h":0.75,"clr":1},{"x":13.051,"y":29.626,"w":8.106,"h":0.75,"clr":1},{"x":13.051,"y":31.126,"w":15.321,"h":0.75,"clr":1},{"x":30.151,"y":29.251,"w":4.5,"h":3.75,"clr":1},{"x":34.651,"y":29.251,"w":1.35,"h":3.75,"clr":1},{"x":30.151,"y":33.001,"w":4.5,"h":0.75,"clr":1},{"x":9.901,"y":35.251,"w":8.1,"h":0.75,"clr":1},{"x":20.701,"y":35.251,"w":5.4,"h":0.75,"clr":1},{"x":31.501,"y":35.153,"w":4.05,"h":0.75,"clr":1},{"x":6.751,"y":37.501,"w":11.7,"h":1.5,"clr":1},{"x":18.451,"y":37.501,"w":3.15,"h":1.5,"clr":1},{"x":21.601,"y":37.501,"w":7.2,"h":1.5,"clr":1},{"x":28.801,"y":37.501,"w":7.2,"h":1.5,"clr":1},{"x":6.751,"y":39.001,"w":11.7,"h":1.5,"clr":1},{"x":18.451,"y":39.001,"w":3.15,"h":1.5,"clr":1},{"x":21.601,"y":39.001,"w":7.2,"h":1.5,"clr":1},{"x":28.801,"y":39.001,"w":7.2,"h":1.5,"clr":1},{"x":31.501,"y":39.751,"w":4.5,"h":0.75,"clr":1},{"x":5.851,"y":40.501,"w":7.2,"h":1.5,"clr":1},{"x":13.051,"y":40.501,"w":11.25,"h":1.5,"clr":1},{"x":24.301,"y":40.501,"w":4.5,"h":1.5,"clr":1},{"x":28.801,"y":40.501,"w":3.15,"h":1.5,"clr":1},{"x":31.951,"y":40.501,"w":4.05,"h":1.5,"clr":1},{"x":5.851,"y":42.001,"w":18.9,"h":0.75,"clr":1},{"x":5.851,"y":42.751,"w":18.9,"h":0.75,"clr":1},{"x":24.751,"y":42.001,"w":11.25,"h":0.75,"clr":1},{"x":24.751,"y":42.751,"w":11.25,"h":0.75,"clr":1},{"x":31.501,"y":35.153,"w":4.05,"h":0.75,"clr":1}],"Texts":[{"x":2.001,"y":2.573,"w":2.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form ","S":8,"TS":[0,10,1,0]}]},{"x":2.001,"y":3.476,"w":3.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1040EZ","S":11,"TS":[0,18,1,0]}]},{"x":6.951,"y":1.8239999999999998,"w":22.188,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Department of the Treasury—Internal Revenue Service","S":2,"TS":[0,10,0,0]}]},{"x":6.951,"y":2.641,"w":16.226,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Income Tax Return for Single and ","S":-1,"TS":[0,16,1,0]}]},{"x":6.951,"y":3.4530000000000003,"w":15.947,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Joint Filers With No Dependents ","S":-1,"TS":[0,16,1,0]}]},{"x":17.421,"y":3.4530000000000003,"w":1.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(99)","S":2,"TS":[0,10,0,0]}]},{"x":20.901,"y":3.4370000000000003,"w":2.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,20,1,0]}]},{"x":30.498,"y":3.457,"w":8.583,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":2.251,"y":4.17,"w":11.632,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your first name and initial ","S":2,"TS":[0,10,0,0]}]},{"x":13.501,"y":4.181,"w":4.947,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Last name ","S":2,"TS":[0,10,0,0]}]},{"x":29.251,"y":4.171,"w":13.727,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Your social security number ","S":8,"TS":[0,10,1,0]}]},{"x":2.251,"y":5.659,"w":20.56,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If a joint return, spouse’s first name and initial ","S":2,"TS":[0,10,0,0]}]},{"x":13.501,"y":5.657,"w":4.947,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Last name ","S":2,"TS":[0,10,0,0]}]},{"x":29.251,"y":5.655,"w":15.855,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Spouse's social security number ","S":-1,"TS":[0,9.3,1,0]}]},{"x":29.138,"y":7.537000000000001,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c","S":-1,"TS":[0,13,0,0]}]},{"x":30.711,"y":7.336,"w":9.946,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Make sure the SSN(s) ","S":2,"TS":[0,10,0,0]}]},{"x":31.043,"y":7.861000000000001,"w":8.148,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"above are correct.","S":2,"TS":[0,10,0,0]}]},{"x":2.251,"y":7.157,"w":34.157,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Home address (number and street). If you have a P.O. box, see instructions. ","S":2,"TS":[0,10,0,0]}]},{"x":26.781,"y":7.149,"w":3.798,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Apt. no. ","S":2,"TS":[0,10,0,0]}]},{"x":2.251,"y":10.187,"w":9.78,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Foreign country name","S":2,"TS":[0,10,0,0]}]},{"x":16.201,"y":10.19,"w":13.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Foreign province/state/county","S":2,"TS":[0,10,0,0]}]},{"x":25.201,"y":10.188,"w":9.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Foreign postal code ","S":-1,"TS":[0,9.3,0,0]}]},{"x":29.251,"y":8.723,"w":14.949,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Presidential Election Campaign","S":-1,"TS":[0,9.3,1,0]}]},{"x":29.126,"y":9.367,"w":18.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check here if you, or your spouse if filing ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":29.126,"y":9.867,"w":19.69,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"jointly, want $3 to go to this fund. Checking ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":29.126,"y":10.367,"w":17.814,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a box below will not change your tax or ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":29.126,"y":10.866,"w":3.427,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"refund. ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":32.54,"y":11.013,"w":2.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You ","S":-1,"TS":[0,9.3,1,0]}]},{"x":34.288,"y":11.013,"w":3.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.09,1,0]}]},{"x":2.001,"y":12.008,"w":3.501,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Income","S":-1,"TS":[0,16,1,0]}]},{"x":2.001,"y":12.956,"w":3.389,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":13.519,"w":6.111,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form(s) W-2 ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":14.081,"w":2.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"here.","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":15.097,"w":6.444,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Enclose, but do ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.001,"y":15.628,"w":6.11,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"not attach, any ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.001,"y":16.159,"w":3.694,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"payment.","S":-1,"TS":[0,11.5,0,0]}]},{"x":7.12,"y":11.773,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1 ","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":11.773,"w":32.052,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Wages, salaries, and tips. This should be shown in box 1 of your Form(s) W-2. ","S":3,"TS":[0,12,0,0]}]},{"x":8.301,"y":12.46,"w":10.498,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach your Form(s) W-2.","S":3,"TS":[0,12,0,0]}]},{"x":29.176,"y":12.51,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1 ","S":9,"TS":[0,12,1,0]}]},{"x":7.12,"y":14.01,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":14.01,"w":29.663,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Taxable interest. If the total is over $1,500, you cannot use Form 1040EZ.","S":3,"TS":[0,12,0,0]}]},{"x":29.176,"y":14.01,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":7.12,"y":15.510000000000002,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":15.573,"w":35.08,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Unemployment compensation and Alaska Permanent Fund dividends (see instructions).","S":3,"TS":[0,12,0,0]}]},{"x":29.176,"y":15.510000000000002,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":9,"TS":[0,12,1,0]}]},{"x":7.12,"y":17.01,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":17.01,"w":13.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Add lines 1, 2, and 3. This is your ","S":3,"TS":[0,12,0,0]}]},{"x":7.12,"y":17.773,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":17.773,"w":32.881,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If someone can claim you (or your spouse if a joint return) as a dependent, check ","S":3,"TS":[0,12,0,0]}]},{"x":8.301,"y":18.46,"w":31.854,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"the applicable box(es) below and enter the amount from the worksheet on back.","S":3,"TS":[0,12,0,0]}]},{"x":9.201,"y":19.323,"w":1.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You","S":9,"TS":[0,12,1,0]}]},{"x":13.251,"y":19.323,"w":3.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Spouse","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":20.023,"w":29.661,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If no one can claim you (or your spouse if a joint return), enter $10,000 if ","S":3,"TS":[0,12,0,0]}]},{"x":24.672,"y":20.023,"w":3.223,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"single;","S":9,"TS":[0,12,1,0]}]},{"x":26.548,"y":20.023,"w":0.25,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":8.301,"y":20.71,"w":4.361,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"$20,000 if ","S":3,"TS":[0,12,0,0]}]},{"x":10.754,"y":20.71,"w":10.114,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"married filing jointly. ","S":9,"TS":[0,12,1,0]}]},{"x":15.785,"y":20.71,"w":10.164,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"See back for explanation.","S":3,"TS":[0,12,0,0]}]},{"x":29.176,"y":20.76,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":7.12,"y":21.523,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":21.523,"w":26.829,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Subtract line 5 from line 4. If line 5 is larger than line 4, enter -0-. ","S":3,"TS":[0,12,0,0]}]},{"x":8.301,"y":22.238,"w":5.028,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"This is your ","S":3,"TS":[0,12,0,0]}]},{"x":11.004,"y":22.238,"w":6.666,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"taxable income.","S":-1,"TS":[2,12,1,0]}]},{"x":27.651,"y":22.145,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.176,"y":22.26,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":23.453,"w":5.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Payments, ","S":-1,"TS":[0,16,1,0]}]},{"x":2.001,"y":24.203,"w":4.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Credits, ","S":-1,"TS":[0,16,1,0]}]},{"x":2.001,"y":24.953,"w":3.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"and Tax","S":-1,"TS":[0,16,1,0]}]},{"x":7.12,"y":23.01,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":23.01,"w":23.302,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Federal income tax withheld from Form(s) W-2 and 1099.","S":3,"TS":[0,12,0,0]}]},{"x":29.176,"y":23.01,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":9,"TS":[0,12,1,0]}]},{"x":7.12,"y":23.76,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8a ","S":9,"TS":[0,12,1,0]}]},{"x":8.38,"y":23.76,"w":13.337,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Earned income credit (EIC) ","S":9,"TS":[0,12,1,0]}]},{"x":14.909,"y":23.76,"w":7.11,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(see instructions).","S":3,"TS":[0,12,0,0]}]},{"x":29.176,"y":23.76,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8a ","S":9,"TS":[0,12,1,0]}]},{"x":7.401,"y":24.51,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":24.51,"w":13.164,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Nontaxable combat pay election.","S":3,"TS":[0,12,0,0]}]},{"x":21.295,"y":24.573,"w":1.25,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8b ","S":3,"TS":[0,12,0,0]}]},{"x":7.12,"y":25.26,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":25.323,"w":14.191,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Add lines 7 and 8a. These are your ","S":3,"TS":[0,12,0,0]}]},{"x":16.346,"y":25.323,"w":11.805,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"total payments and credits. ","S":-1,"TS":[2,12,1,0]}]},{"x":27.651,"y":25.229,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.176,"y":25.26,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9","S":9,"TS":[0,12,1,0]}]},{"x":6.838,"y":26.029,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":26.023,"w":2.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Tax. ","S":9,"TS":[0,12,1,0]}]},{"x":9.52,"y":26.023,"w":7.777,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Use the amount on ","S":3,"TS":[0,12,0,0]}]},{"x":13.894,"y":26.023,"w":6.003,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"line 6 above ","S":9,"TS":[0,12,1,0]}]},{"x":16.879,"y":26.023,"w":15.11,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"to find your tax in the tax table in the ","S":3,"TS":[0,12,0,0]}]},{"x":8.301,"y":26.71,"w":23.47,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"instructions. Then, enter the tax from the table on this line.","S":3,"TS":[0,12,0,0]}]},{"x":28.894,"y":26.76,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10","S":9,"TS":[0,12,1,0]}]},{"x":6.838,"y":27.573,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11a ","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":27.573,"w":28.525,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If line 9 is larger than line 10, subtract line 10 from line 9. This is your ","S":3,"TS":[0,12,0,0]}]},{"x":23.908,"y":27.573,"w":3.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"refund. ","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":28.26,"w":15.135,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If Form 8888 is attached, check here ","S":3,"TS":[0,12,0,0]}]},{"x":16.814,"y":28.166,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":28.895,"y":28.26,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11a","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":27.797,"w":3.444,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Refund","S":-1,"TS":[0,16,1,0]}]},{"x":2.001,"y":28.634,"w":6.471,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Have it directly ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.001,"y":29.134,"w":6.11,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"deposited! See ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.001,"y":29.634,"w":6.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"instructions and ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.001,"y":30.134,"w":6.389,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"fill in 11b, 11c, ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.001,"y":30.635,"w":4.527,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"and 11d or ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.001,"y":31.135,"w":4.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 8888.","S":-1,"TS":[0,10.5,0,0]}]},{"x":6.501,"y":29.52,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":7.401,"y":29.448,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":29.385,"w":6.528,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Routing number","S":3,"TS":[0,12,0,0]}]},{"x":21.351,"y":29.354,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":21.788,"y":29.448,"w":0.25,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":21.898,"y":29.448,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c ","S":9,"TS":[0,12,1,0]}]},{"x":22.288,"y":29.448,"w":2.583,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Type:","S":3,"TS":[0,12,0,0]}]},{"x":24.951,"y":29.468,"w":3.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Checking","S":-1,"TS":[0,10.6,0,0]}]},{"x":28.054,"y":29.468,"w":3.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Savings","S":-1,"TS":[0,10.6,0,0]}]},{"x":6.501,"y":31.02,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":7.401,"y":30.948,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d ","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":30.885,"w":6.693,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Account number","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":32.118,"w":4.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Amount ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":32.68,"w":4.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You Owe","S":10,"TS":[0,14,1,0]}]},{"x":6.838,"y":32.023,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":9,"TS":[0,12,1,0]}]},{"x":8.301,"y":32.03,"w":26.692,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If line 10 is larger than line 9, subtract line 9 from line 10. This is ","S":-1,"TS":[0,11.8,0,0]}]},{"x":8.301,"y":32.739,"w":1.472,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"the ","S":-1,"TS":[0,11.8,0,0]}]},{"x":9.173,"y":32.739,"w":8.446,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"amount you owe. ","S":-1,"TS":[0,11.8,1,0]}]},{"x":13.361,"y":32.739,"w":17.138,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For details on how to pay, see instructions.","S":-1,"TS":[0,11.8,0,0]}]},{"x":22.661,"y":32.645,"w":0.25,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":27.651,"y":32.645,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":28.895,"y":32.76,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":33.899,"w":5.557,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Third Party ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":34.586,"w":4.446,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Designee","S":10,"TS":[0,14,1,0]}]},{"x":6.501,"y":33.608,"w":40.152,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you want to allow another person to discuss this return with the IRS (see instructions)?","S":-1,"TS":[0,11,0,0]}]},{"x":28.101,"y":33.589,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes.","S":-1,"TS":[0,11,1,0]}]},{"x":29.004,"y":33.589,"w":7.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Complete below.","S":-1,"TS":[0,11,0,0]}]},{"x":34.851,"y":33.589,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,1,0]}]},{"x":6.501,"y":34.488,"w":4.693,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Designee’s ","S":2,"TS":[0,10,0,0]}]},{"x":6.501,"y":34.988,"w":4.666,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"name ","S":2,"TS":[0,10,0,0]}]},{"x":8.542,"y":34.925,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":18.201,"y":34.488,"w":3,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Phone ","S":2,"TS":[0,10,0,0]}]},{"x":18.201,"y":34.988,"w":3,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"no. ","S":2,"TS":[0,10,0,0]}]},{"x":19.513,"y":34.925,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":26.301,"y":34.488,"w":9.277,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Personal identification ","S":2,"TS":[0,10,0,0]}]},{"x":26.301,"y":34.988,"w":9.332,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"number (PIN) ","S":2,"TS":[0,10,0,0]}]},{"x":30.384,"y":34.925,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":2.001,"y":35.834,"w":2.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Sign ","S":-1,"TS":[0,15,1,0]}]},{"x":2.001,"y":36.522,"w":2.223,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Here","S":-1,"TS":[0,15,1,0]}]},{"x":2.001,"y":37.437,"w":6.971,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Joint return? See ","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":37.937,"w":4.917,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"instructions.","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":38.853,"w":6.664,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Keep a copy for ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2.001,"y":39.322,"w":5.276,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"your records.","S":-1,"TS":[0,10.5,0,0]}]},{"x":6.502,"y":36.532,"w":26.688,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on all information of which the preparer has any knowledge.","S":2,"TS":[0,10,0,0]}]},{"x":5.601,"y":36.913,"w":0.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"F","S":-1,"TS":[0,50.9994,0,0],"RA":90}]},{"x":6.501,"y":37.189,"w":6.519,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your signature","S":2,"TS":[0,10,0,0]}]},{"x":18.451,"y":37.189,"w":2.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"x":21.601,"y":37.172,"w":7.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your occupation","S":2,"TS":[0,10,0,0]}]},{"x":28.801,"y":37.157,"w":10.468,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Daytime phone number","S":2,"TS":[0,10,0,0]}]},{"x":6.501,"y":38.688,"w":16.151,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Spouse’s signature. If a joint return, ","S":2,"TS":[0,10,0,0]}]},{"x":13.504,"y":38.688,"w":2.166,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"both","S":8,"TS":[0,10,1,0]}]},{"x":14.39,"y":38.688,"w":4.91,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" must sign.","S":2,"TS":[0,10,0,0]}]},{"x":18.451,"y":38.688,"w":2.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"x":21.601,"y":38.626,"w":9.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Spouse’s occupation","S":2,"TS":[0,10,0,0]}]},{"x":28.801,"y":38.751,"w":18.318,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If the IRS sent you an Identity Protection ","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":28.801,"y":39.188,"w":5.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"PIN, enter it ","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":28.801,"y":39.626,"w":6.482,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"here (see inst.)","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":2.001,"y":40.573,"w":2.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Paid ","S":-1,"TS":[0,15,1,0]}]},{"x":2.001,"y":41.398,"w":4.391,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Preparer ","S":-1,"TS":[0,15,1,0]}]},{"x":2.001,"y":42.223,"w":4.335,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Use Only","S":-1,"TS":[0,15,1,0]}]},{"x":5.851,"y":40.22,"w":12.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Print/Type preparer’s name ","S":2,"TS":[0,10,0,0]}]},{"x":13.251,"y":40.251,"w":9.315,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Preparer’s signature ","S":2,"TS":[0,10,0,0]}]},{"x":24.301,"y":40.251,"w":2.371,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date ","S":2,"TS":[0,10,0,0]}]},{"x":28.801,"y":40.501,"w":6.447,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check if ","S":2,"TS":[0,10,0,0]}]},{"x":28.801,"y":40.939,"w":6.353,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"x":31.951,"y":40.22,"w":2.481,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" PTIN","S":2,"TS":[0,10,0,0]}]},{"x":5.851,"y":41.876,"w":6.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm’s name ","S":2,"TS":[0,10,0,0]}]},{"x":8.874,"y":41.813,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":5.851,"y":42.626,"w":6.909,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm’s address ","S":2,"TS":[0,10,0,0]}]},{"x":8.873,"y":42.563,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":24.751,"y":41.876,"w":5.186,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm's EIN ","S":2,"TS":[0,10,0,0]}]},{"x":27.02,"y":41.813,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":24.751,"y":42.626,"w":4.835,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Phone no. ","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":43.342,"w":39.623,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Disclosure, Privacy Act, and Paperwork Reduction Act Notice, see instructions.","S":-1,"TS":[0,11,1,0]}]},{"x":23.637,"y":43.342,"w":7.055,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Cat. No. 11329W","S":-1,"TS":[0,11,0,0]}]},{"x":30.913,"y":43.322,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":32.056,"y":43.322,"w":3.78,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1040EZ ","S":10,"TS":[0,14,1,0]}]},{"x":34.43,"y":43.322,"w":3.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013)","S":2,"TS":[0,10,0,0]}]},{"x":21.319,"y":26.717,"w":202.31,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Click \"Do the math\" before calculating tax.","S":-1,"TS":[0,9.001999999999999,1,0]}]},{"x":15.957,"y":17.01,"w":11.17,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"adjusted gross income.","S":9,"TS":[0,12,1,0]}]},{"x":29.194,"y":17.01,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":9,"TS":[0,12,1,0]}]},{"x":6.501,"y":35.657,"w":60.531,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Under penalties of perjury, I declare that I have examined this return and, to the best of my knowledge and belief, it is true, correct, and ","S":2,"TS":[0,10,0,0]}]},{"x":6.505,"y":36.095,"w":62.157,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"accurately lists all amounts and sources of income I received during the tax year. Declaration of preparer (other than the taxpayer) is based ","S":2,"TS":[0,10,0,0]}]},{"x":2.209,"y":8.667,"w":320.985,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"City, town or post office. If you have a foreign address, also complete spaces below (see instructions). ","S":-1,"TS":[0,9.3,0,0]}]},{"x":23.783,"y":8.682,"w":28.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"ZIP code","S":-1,"TS":[0,9.3,0,0]}]},{"x":21.094,"y":8.682,"w":16.345,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INJUR","EN":0},"TI":12,"AM":0,"TU":"Injured spouse text","x":0.027,"y":0.383,"w":5.999,"h":1.319},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DECE","EN":0},"TI":13,"AM":0,"TU":"Deceased date","x":6.697,"y":0.41,"w":9.375,"h":1.292},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":14,"AM":0,"TU":"Your first name","x":2.25,"y":5.148,"w":9.372,"h":0.879},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"MI","EN":0},"TI":15,"AM":0,"TU":"Taxpayer middle initial","x":11.857,"y":5.118,"w":1.442,"h":0.912,"MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAM","EN":0},"TI":16,"AM":0,"TU":"Last name.","x":13.5,"y":5.173,"w":15.75,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":17,"AM":0,"TU":"Your social security number. ","x":29.25,"y":5.153,"w":6.75,"h":0.847},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SNAM","EN":0},"TI":18,"AM":0,"TU":"If a joint return, spouse's first name","x":2.25,"y":6.708,"w":9.313,"h":0.847},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"SMI","EN":0},"TI":19,"AM":0,"TU":"Spouse middle initial","x":11.935,"y":6.615,"w":1.294,"h":0.912,"MV":"maxl:1"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SLNM","EN":0},"TI":20,"AM":0,"TU":"Spouse's Last name.","x":13.593,"y":6.624,"w":15.657,"h":0.876},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":21,"AM":0,"TU":"Spouse's social Security Number.","x":29.25,"y":6.613,"w":6.75,"h":0.887},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":22,"AM":0,"TU":"Home address (number and street). If you have a Post Office Box, see instructions.","x":2.25,"y":8.118,"w":23.85,"h":0.882},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":23,"AM":0,"TU":"Apartment number.","x":26.1,"y":8.109,"w":3.15,"h":0.891},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":24,"AM":0,"TU":"City, town or post office. If you have a foreign address, also complete spaces below (see instructions).","x":2.25,"y":9.683,"w":18.414,"h":0.845},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":25,"AM":0,"TU":"State","x":21.386,"y":9.569,"w":1.324,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AL"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":26,"AM":0,"TU":"Zip code","x":23.996,"y":9.663,"w":2.866,"h":0.866},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":27,"AM":0,"x":2.376,"y":11.063,"w":12.975,"h":0.857,"PL":{"V":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"]},"V":" "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPC","EN":0},"TI":28,"AM":0,"TU":"Foreign province/state/county. ","x":16.2,"y":11.184,"w":8.79,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":29,"AM":0,"TU":"Foreign postal code. ","x":25.643,"y":11.187,"w":3.188,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1T","EN":0},"TI":32,"AM":0,"TU":"Line 1 write-in","x":18.011,"y":12.75,"w":3.04,"h":0.833,"PL":{"V":[" ","EXCESS ALLOWANCE","F8919","FB","FEC","DCB","HSH","SCH","PSO","PRI","DFC","NONE APPLY"],"D":[" ","EXCESS ALLOWANCE","F8919","FB","FEC","DCB","HSH","SCH","PSO","PRI","DFC","NONE"]},"V":"NONE"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LSCL1T","EN":0},"TI":33,"AM":0,"TU":"Line 1 write-in amount.","x":21.86,"y":12.604,"w":7.197,"h":0.912},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":34,"AM":0,"TU":"Line 1 Wages, salaries and tips. This should be shown in box 1 of your Form(s) W-2. ","x":30.15,"y":12.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L2W","EN":0},"TI":35,"AM":0,"TU":"Line 2 write-in text.","x":25.182,"y":14.086,"w":1.535,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2WA","EN":0},"TI":36,"AM":0,"TU":"Line 2 write-in amount.","x":26.978,"y":14.183,"w":2.27,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":37,"AM":0,"TU":"Line 2 Taxable interest. If the total is over $1,500, you cannot use Form 1040 E Z.","x":30.103,"y":14.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L3T1","EN":0},"TI":38,"AM":0,"TU":"Line 3 write-in text.","x":21.779,"y":15.136,"w":2.814,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3T2","EN":0},"TI":39,"AM":0,"TU":"Line 3 write-in amount.","x":24.964,"y":15.163,"w":4.311,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":40,"AM":0,"TU":"Line 3 Unemployment compensation and Alaska Permanent Fund dividends.","x":30.173,"y":15.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":41,"AM":1024,"TU":"Line 4 Add lines 1, 2, and 3. This is your adjusted gross income. ","x":30.15,"y":17.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":44,"AM":0,"TU":"Line 5. If no one can claim you (or your spouse if a joint return), enter $10,000 if single; $20,000 if married filing jointly. ","x":30.123,"y":21,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":45,"AM":1024,"TU":"6 Subtract line 5 from line 4. If line 5 is larger than line 4, enter6 Subtract line 4 from line 4. If line 5 is larger than line 4, enter zero. This is your taxable income.","x":30.15,"y":22.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":46,"AM":0,"TU":"Line 7. Federal income tax withheld from Forms W-2 and 1099.","x":30.15,"y":23.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L8W","EN":0},"TI":47,"AM":0,"TU":"Line 8a \"No\" EIC ","x":24.256,"y":24.011,"w":2.896,"h":0.833,"MV":"a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":48,"AM":0,"TU":"Line 8a. Earned income credit (EIC).","x":30.15,"y":24,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCOMBAT","EN":0},"TI":49,"AM":0,"TU":"Line 8b. Nontaxable combat pay election. ","x":22.5,"y":24.75,"w":5.904,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L9W","EN":0},"TI":50,"AM":0,"TU":"Line 10 write-in text.","x":23.113,"y":25.473,"w":1.916,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9WA","EN":0},"TI":51,"AM":0,"TU":"Line 10 write-in amount.","x":25.182,"y":25.508,"w":2.515,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":52,"AM":1024,"TU":"Line 9. Add lines 7 and 8a. These are your total payments and credits. ","x":30.15,"y":25.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":53,"AM":0,"TU":"Line 10. Tax. Use the amount on line 6 above to find your tax in the tax table in the instructions. Then, enter the tax from the table on this line. ","x":30.15,"y":27,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8888"}},"id":{"Id":"A306","EN":0},"TI":55,"AM":0,"TU":"link to F8888","x":19.241,"y":28.399,"w":0.583,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11A","EN":0},"TI":56,"AM":1024,"TU":"Line 11a. If line 9 is larger than line 10, subtract line 10 from line 9. This is your refund.","x":30.15,"y":28.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ROUTNO","EN":0},"TI":57,"AM":0,"TU":"Line 11b. Routing number","x":13.044,"y":29.579,"w":8.039,"h":0.833,"MV":"maxl:9"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCNO","EN":0},"TI":60,"AM":0,"TU":" Line 11d. Account Number.","x":13.05,"y":31.125,"w":15.321,"h":0.833,"MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":61,"AM":1024,"TU":"Line 12. If line 10 is larger than line 9, subtract line 9 from line 10. This is the amount you owe. For details on how to pay, see instructions.","x":30.15,"y":33,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESNAM","EN":0},"TI":64,"AM":0,"TU":"Designee's name. ","x":9.9,"y":35.125,"w":8.1,"h":0.833},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DESPH","EN":0},"TI":65,"AM":0,"TU":"Designee's Phone number. ","x":20.7,"y":35.125,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DESPIN","EN":0},"TI":66,"AM":0,"TU":"Personal identification number (P I N). 5 digits.","x":31.5,"y":35.152,"w":4.05,"h":0.833,"MV":"99999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":67,"AM":0,"TU":"Your occupation.","x":21.6,"y":38.154,"w":7.2,"h":0.847},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DTPHO","EN":0},"TI":68,"AM":0,"TU":"Daytime phone number.","x":28.823,"y":38.125,"w":7.2,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SOCC","EN":0},"TI":69,"AM":0,"TU":"Spouse's occupation. ","x":21.6,"y":39.646,"w":7.2,"h":0.854},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"IDTHEFT","EN":0},"TI":70,"AM":0,"TU":"If the IRS sent you an Identity Protection PIN, enter it here (see instructions). 6 digits.","x":31.5,"y":39.75,"w":4.5,"h":0.833,"MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PREPSIG","EN":0},"TI":71,"AM":1024,"x":13.226,"y":41.148,"w":9.253,"h":0.833,"V":"Not for use by paid preparers"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":72,"AM":1024,"x":10,"y":42.084,"w":9.617,"h":0.833,"V":"Self-prepared"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PECY","EN":0},"TI":30,"AM":0,"TU":"Presidential Election Campaign. Check here if you want $3 to go to this fund. Checking a box below will not change your tax or refund. ","x":32.075,"y":11.25,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SECY","EN":0},"TI":31,"AM":0,"TU":"Presidential Election Campaign. Your spouse.","x":33.904,"y":11.25,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DXT","EN":0},"TI":42,"AM":0,"TU":"5. If someone can claim you (or your spouse if a joint return) as a dependent, check the applicable box(es) below and enter the amount from the worksheet on back. You.","x":8.55,"y":19.438,"w":0.625,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DXS","EN":0},"TI":43,"AM":0,"TU":"Line 5. Spouse.","x":12.6,"y":19.438,"w":0.625,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8888","EN":0},"TI":54,"AM":1024,"TU":"Refund. Have it directly deposited! See instructions and fill in 11b, 11c, and 11d or Form 8888. Line 11a. If Form 8888 is attached, check here.","x":18,"y":28.375,"w":0.625,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCC","EN":0},"TI":58,"AM":0,"TU":"Account type checking or savings","x":24.29,"y":29.52,"w":0.715,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCS","EN":0},"TI":59,"AM":0,"TU":"Account type checking or savings","x":27.45,"y":29.579,"w":0.657,"h":0.833,"checked":false}],"id":{"Id":"ACCRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PPDY","EN":0},"TI":62,"AM":0,"TU":"Do you want to allow another person to discuss this return with the IRS (see instructions)? No","x":27.392,"y":33.764,"w":0.598,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PPDN","EN":0},"TI":63,"AM":0,"TU":"Do you want to allow another person to discuss this return with the IRS (see instructions)? No","x":34.209,"y":33.707,"w":0.54,"h":0.833,"checked":false}],"id":{"Id":"PPDRB","EN":0}}]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":3.001,"w":1.5,"l":31.981,"oc":"#221f1f"},{"x":34.185,"y":3.001,"w":1.5,"l":1.831,"oc":"#221f1f"},{"x":2.251,"y":24.751,"w":1.2,"l":33.75,"oc":"#221f1f"},{"x":22.035,"y":29.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.035,"y":30.001,"w":0.75,"l":0.481,"oc":"#221f1f"},{"x":22.485,"y":30.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":31.485,"y":30.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":30.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":31.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":32.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":32.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":33.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":33.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":35.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":35.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":37.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":37.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.251,"y":42.001,"w":1.5,"l":33.75,"oc":"#221f1f"},{"x":2.235,"y":44.268,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[],"Fills":[],"Texts":[{"x":2.001,"y":1.9729999999999999,"w":9.078,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040EZ (2013)","S":2,"TS":[0,10,0,0]}]},{"x":34.277,"y":2.01,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":2.01,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":4.016,"w":6.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Use this form ","S":-1,"TS":[0,14.56,1,0]}]},{"x":2.001,"y":4.891,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"if","S":-1,"TS":[0,14.56,1,0]}]},{"x":6.951,"y":3.5730000000000004,"w":45.403,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• Your filing status is single or married filing jointly. If you are not sure about your filing status, see instructions. ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":4.273,"w":48.536,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• You (and your spouse if married filing jointly) were under age 65 and not blind at the end of 2013. If you were born on ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":4.96,"w":27.244,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"January 1, 1949, you are considered to be age 65 at the end of 2013.","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":5.823,"w":32.958,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• You do not claim any dependents. For information on dependents, see Pub. 501. ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":6.573,"w":21.292,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• Your taxable income (line 6) is less than $100,000. ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":7.273,"w":50.597,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• You do not claim any adjustments to income. For information on adjustments to income, use the TeleTax topics listed under ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":7.960000000000001,"w":9.11,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Adjustments to Income","S":-1,"TS":[2,12,0,1]}]},{"x":12.075,"y":7.960000000000001,"w":1.222,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" at ","S":3,"TS":[0,12,0,0]}]},{"x":12.763,"y":7.960000000000001,"w":8.89,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"www.irs.gov/taxtopics","S":-1,"TS":[2,12,0,1]}]},{"x":17.763,"y":7.960000000000001,"w":7.36,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" (see instructions).","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":8.698,"w":51.117,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• The only tax credit you can claim is the earned income credit (EIC). The credit may give you a refund even if you do not owe ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":9.385,"w":49.939,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"any tax. You do not need a qualifying child to claim the EIC. For information on credits, use the TeleTax topics listed under ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":10.072,"w":4.695,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Tax Credits","S":-1,"TS":[2,12,0,1]}]},{"x":9.592,"y":10.072,"w":1.222,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" at ","S":3,"TS":[0,12,0,0]}]},{"x":10.279,"y":10.072,"w":8.89,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"www.irs.gov/taxtopics","S":-1,"TS":[2,12,0,1]}]},{"x":15.28,"y":10.072,"w":36.076,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" (see instructions). If you received a Form 1098-T or paid higher education expenses, you ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":10.76,"w":50.246,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"may be eligible for a tax credit or deduction that you must claim on Form 1040A or Form 1040. For more information on tax ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":11.447,"w":14.803,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"benefits for education, see Pub. 970. ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":12.391,"w":47.594,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• You had only wages, salaries, tips, taxable scholarship or fellowship grants, unemployment compensation, or Alaska ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":13.078,"w":50.44,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Permanent Fund dividends, and your taxable interest was not over $1,500. But if you earned tips, including allocated tips, that","S":3,"TS":[0,12,0,0]}]},{"x":35.323,"y":13.078,"w":0.25,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":13.766,"w":50.632,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"are not included in box 5 and box 7 of your Form W-2, you may not be able to use Form 1040EZ (see instructions). If you are ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":14.453,"w":42.912,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"planning to use Form 1040EZ for a child who received Alaska Permanent Fund dividends, see instructions.","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":16.765,"w":6.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Filling in your ","S":-1,"TS":[0,14.56,1,0]}]},{"x":2.001,"y":17.641,"w":2.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"return","S":-1,"TS":[0,14.56,1,0]}]},{"x":6.951,"y":16.64,"w":46.686,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If you received a scholarship or fellowship grant or tax-exempt interest income, such as on municipal bonds, see the ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":17.327,"w":50.604,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"instructions before filling in the form. Also, see the instructions if you received a Form 1099-INT showing federal income tax ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":18.014,"w":50.355,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"withheld or if federal income tax was withheld from your unemployment compensation or Alaska Permanent Fund dividends.","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":19.928,"w":4.584,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For tips on ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":20.615,"w":5.472,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"how to avoid ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":21.303,"w":3.75,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"common ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":21.99,"w":5.527,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"mistakes, see ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":22.678,"w":4.917,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"instructions.","S":-1,"TS":[0,13,0,0]}]},{"x":6.951,"y":20.023,"w":51.327,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Remember, you must report all wages, salaries, and tips even if you do not get a Form W-2 from your employer. You must also ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":20.742,"w":48.716,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"report all your taxable interest, including interest from banks, savings and loans, credit unions, etc., even if you do not get","S":3,"TS":[0,12,0,0]}]},{"x":34.354,"y":20.742,"w":0.944,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" a ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":21.46,"w":7.166,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1099-INT. ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":25.765,"w":5.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Worksheet ","S":-1,"TS":[0,14.56,1,0]}]},{"x":2.001,"y":26.641,"w":5.557,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"for Line 5 „ ","S":-1,"TS":[0,14.56,1,0]}]},{"x":2.001,"y":27.516,"w":6.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Dependents ","S":-1,"TS":[0,14.56,1,0]}]},{"x":2.001,"y":28.391,"w":6.89,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Who Checked ","S":-1,"TS":[0,14.56,1,0]}]},{"x":2.001,"y":29.266,"w":6.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"One or Both ","S":-1,"TS":[0,14.56,1,0]}]},{"x":2.001,"y":30.142,"w":3.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Boxes","S":-1,"TS":[0,14.56,1,0]}]},{"x":2.001,"y":38.053,"w":6.775,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(keep a copy for ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":38.74,"w":5.359,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"your records)","S":-1,"TS":[0,13,0,0]}]},{"x":6.951,"y":25.553,"w":44.493,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Use this worksheet to figure the amount to enter on line 5 if someone can claim you (or your spouse if married ","S":-1,"TS":[0,13,0,0]}]},{"x":6.951,"y":26.178,"w":45.328,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"filing jointly) as a dependent, even if that person chooses not to do so. To find out if someone can claim you as a ","S":-1,"TS":[0,13,0,0]}]},{"x":6.951,"y":26.803,"w":10.193,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"dependent, see Pub. 501. ","S":-1,"TS":[0,13,0,0]}]},{"x":6.951,"y":28.323,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A. ","S":9,"TS":[0,12,1,0]}]},{"x":7.638,"y":28.323,"w":14.721,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Amount, if any, from line 1 on front ","S":3,"TS":[0,12,0,0]}]},{"x":16.251,"y":28.323,"w":7.998,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":20.702,"y":28.323,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":21.801,"y":28.963,"w":0.564,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"+","S":3,"TS":[0,12,0,0]}]},{"x":24.379,"y":29.073,"w":2.75,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"350.00","S":3,"TS":[0,12,0,0]}]},{"x":26.301,"y":29.073,"w":4.694,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Enter total ","S":3,"TS":[0,12,0,0]}]},{"x":28.941,"y":29.073,"w":0.25,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":29.051,"y":28.979,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":30.457,"y":29.073,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A .","S":9,"TS":[0,12,1,0]}]},{"x":6.951,"y":29.823,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B. ","S":9,"TS":[0,12,1,0]}]},{"x":7.607,"y":29.823,"w":12.083,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Minimum standard deduction ","S":3,"TS":[0,12,0,0]}]},{"x":14.751,"y":29.823,"w":27.993,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"x":30.469,"y":29.823,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B .","S":9,"TS":[0,12,1,0]}]},{"x":6.951,"y":30.573,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"C. ","S":9,"TS":[0,12,1,0]}]},{"x":7.638,"y":30.573,"w":3.888,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":9.825,"y":30.573,"w":3.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"larger ","S":9,"TS":[0,12,1,0]}]},{"x":11.434,"y":30.573,"w":9.526,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"of line A or line B here ","S":3,"TS":[0,12,0,0]}]},{"x":17.001,"y":30.573,"w":23.994,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":30.454,"y":30.573,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"C .","S":9,"TS":[0,12,1,0]}]},{"x":6.951,"y":31.323,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"D. ","S":9,"TS":[0,12,1,0]}]},{"x":7.638,"y":31.323,"w":13.415,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Maximum standard deduction. If ","S":3,"TS":[0,12,0,0]}]},{"x":14.997,"y":31.323,"w":3.446,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"single, ","S":9,"TS":[0,12,1,0]}]},{"x":16.716,"y":31.323,"w":6.388,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"enter $6,100; if ","S":3,"TS":[0,12,0,0]}]},{"x":20.247,"y":31.323,"w":10.114,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"married filing jointly, ","S":9,"TS":[0,12,1,0]}]},{"x":25.278,"y":31.323,"w":5.749,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"enter $12,200 ","S":3,"TS":[0,12,0,0]}]},{"x":29.251,"y":31.323,"w":0.25,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":30.458,"y":31.323,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"D .","S":9,"TS":[0,12,1,0]}]},{"x":6.951,"y":32.072,"w":1.223,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"E. ","S":9,"TS":[0,12,1,0]}]},{"x":7.607,"y":32.072,"w":3.888,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":9.794,"y":32.072,"w":3.78,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"smaller ","S":9,"TS":[0,12,1,0]}]},{"x":11.716,"y":32.072,"w":22.636,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"of line C or line D here. This is your standard deduction ","S":3,"TS":[0,12,0,0]}]},{"x":24.501,"y":32.072,"w":10.664,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"x":30.471,"y":32.072,"w":1.223,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"E .","S":9,"TS":[0,12,1,0]}]},{"x":6.951,"y":32.823,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"F. ","S":9,"TS":[0,12,1,0]}]},{"x":7.576,"y":32.823,"w":7.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Exemption amount.","S":3,"TS":[0,12,0,0]}]},{"x":7.851000000000001,"y":33.572,"w":8.32,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• If single, enter -0-. ","S":3,"TS":[0,12,0,0]}]},{"x":7.851000000000001,"y":34.323,"w":12.849,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• If married filing jointly and —","S":3,"TS":[0,12,0,0]}]},{"x":8.288,"y":35.073,"w":27.772,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"—both you and your spouse can be claimed as dependents, enter -0-. ","S":3,"TS":[0,12,0,0]}]},{"x":8.288,"y":35.823,"w":25.439,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"—only one of you can be claimed as a dependent, enter $3,900.","S":3,"TS":[0,12,0,0]}]},{"x":29.539,"y":34.783,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[0,31.5001,0,0]}]},{"x":30.488,"y":34.323,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"F .","S":9,"TS":[0,12,1,0]}]},{"x":6.951,"y":36.572,"w":1.334,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"G. ","S":9,"TS":[0,12,1,0]}]},{"x":7.67,"y":36.572,"w":25.969,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Add lines E and F. Enter the total here and on line 5 on the front ","S":3,"TS":[0,12,0,0]}]},{"x":23.001,"y":36.572,"w":13.33,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":30.44,"y":36.572,"w":1.334,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"G .","S":9,"TS":[0,12,1,0]}]},{"x":6.951,"y":38.073,"w":19.173,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If you did not check any boxes on line 5,","S":9,"TS":[0,12,1,0]}]},{"x":16.483,"y":38.073,"w":24.137,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" enter on line 5 the amount shown below that applies to you.","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":38.823,"w":42.929,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• Single, enter $10,000. This is the total of your standard deduction ($6,100) and your exemption ($3,900). ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":39.648,"w":49.623,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• Married filing jointly, enter $20,000. This is the total of your standard deduction ($12,200), your exemption ($3,900), and ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":40.323,"w":13.762,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"your spouse's exemption ($3,900).","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":42.14,"w":3.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Mailing ","S":-1,"TS":[0,16,1,0]}]},{"x":2.001,"y":42.89,"w":3.222,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Return","S":-1,"TS":[0,16,1,0]}]},{"x":6.951,"y":42.498,"w":8.11,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Mail your return by ","S":3,"TS":[0,12,0,0]}]},{"x":11.45,"y":42.498,"w":7.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"April 15, 2014. ","S":9,"TS":[0,12,1,0]}]},{"x":15.06,"y":42.498,"w":25.526,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Mail it to the address shown on the last page of the instructions.","S":3,"TS":[0,12,0,0]}]},{"x":31.087,"y":44.276,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":32.23,"y":44.276,"w":3.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1040EZ","S":10,"TS":[0,14,1,0]}]},{"x":34.43,"y":44.276,"w":3.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013)","S":2,"TS":[0,10,0,0]}]},{"x":34.11,"y":29.879,"w":2.25,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"1,000","S":3,"TS":[0,12,0,0]}]}],"Fields":[],"Boxsets":[]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F1040ST.json b/test/data/fd/form/F1040ST.json index 028c41e8..6938da55 100755 --- a/test/data/fd/form/F1040ST.json +++ b/test/data/fd/form/F1040ST.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 1040","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"x":6.145,"y":3.75,"w":1.5,"l":2.561},{"x":8.62,"y":3.75,"w":1.5,"l":8.748},{"x":61.832,"y":3.75,"w":0.75,"l":12.461},{"x":74.207,"y":3.75,"w":1.5,"l":24.836},{"x":17.282,"y":3.75,"w":1.5,"l":34.736},{"x":51.932,"y":3.75,"w":1.5,"l":9.924},{"x":6.145,"y":3.75,"w":1.5,"l":48.348},{"x":54.407,"y":3.75,"w":1.5,"l":14.936},{"x":69.257,"y":3.75,"w":1.5,"l":11.223},{"x":80.395,"y":3.75,"w":1.5,"l":18.648},{"x":80.395,"y":4.5,"w":0.75,"l":18.648},{"x":6.145,"y":4.5,"w":0.75,"l":31.023},{"x":6.145,"y":6,"w":0.75,"l":31.023},{"x":37.125,"y":6,"w":0.75,"l":43.313},{"x":37.125,"y":4.5,"w":0.75,"l":43.313},{"x":6.145,"y":6,"w":0.75,"l":31.023},{"x":6.145,"y":7.5,"w":0.75,"l":31.023},{"x":37.125,"y":7.5,"w":0.75,"l":43.313},{"x":37.125,"y":6,"w":0.75,"l":43.313},{"x":80.395,"y":6,"w":0.75,"l":18.648},{"x":80.395,"y":7.5,"w":0.75,"l":18.648},{"x":80.395,"y":9,"w":0.75,"l":2.561},{"x":82.87,"y":9,"w":0.75,"l":16.173},{"x":6.145,"y":7.5,"w":0.75,"l":65.673},{"x":6.145,"y":9,"w":0.75,"l":65.673},{"x":71.775,"y":9,"w":0.75,"l":8.662},{"x":71.775,"y":7.5,"w":0.75,"l":8.662},{"x":6.145,"y":9,"w":0.75,"l":74.336},{"x":6.145,"y":10.5,"w":0.75,"l":74.336},{"x":6.145,"y":10.5,"w":0.75,"l":38.448},{"x":6.145,"y":12,"w":0.75,"l":38.448},{"x":44.55,"y":12,"w":0.75,"l":24.75},{"x":44.55,"y":10.5,"w":0.75,"l":24.75},{"x":69.3,"y":12,"w":0.75,"l":11.138},{"x":69.3,"y":10.5,"w":0.75,"l":11.138},{"x":80.395,"y":9,"w":0.75,"l":18.648},{"x":80.395,"y":12,"w":0.75,"l":18.648},{"x":76.682,"y":14.25,"w":0.75,"l":22.361},{"oc":"#211f1f","x":6.188,"y":15,"w":1.2000000000000002,"l":92.813},{"x":18.52,"y":16.5,"w":0.75,"l":22.392},{"x":18.52,"y":18,"w":0.75,"l":22.392},{"x":40.825,"y":16.5,"w":0.75,"l":14.553},{"x":40.825,"y":18,"w":0.75,"l":14.553},{"x":55.292,"y":16.5,"w":0.75,"l":11.177},{"x":55.292,"y":18,"w":0.75,"l":11.177},{"x":66.383,"y":16.5,"w":0.75,"l":14.913},{"x":66.383,"y":18,"w":0.75,"l":14.913},{"x":18.52,"y":18,"w":0.75,"l":22.392},{"x":18.52,"y":18.722,"w":0.75,"l":22.392},{"x":40.825,"y":18,"w":0.75,"l":14.553},{"x":40.825,"y":18.722,"w":0.75,"l":14.553},{"x":55.292,"y":18,"w":0.75,"l":11.177},{"x":55.292,"y":18.722,"w":0.75,"l":11.177},{"x":66.383,"y":18,"w":0.75,"l":14.913},{"x":66.383,"y":18.722,"w":0.75,"l":14.913},{"x":18.52,"y":18.722,"w":0.75,"l":22.392},{"x":18.52,"y":19.472,"w":0.75,"l":22.392},{"x":40.825,"y":18.722,"w":0.75,"l":14.553},{"x":40.825,"y":19.472,"w":0.75,"l":14.553},{"x":55.292,"y":18.722,"w":0.75,"l":11.177},{"x":55.292,"y":19.472,"w":0.75,"l":11.177},{"x":66.383,"y":18.722,"w":0.75,"l":14.913},{"x":66.383,"y":19.472,"w":0.75,"l":14.913},{"x":18.52,"y":19.472,"w":0.75,"l":22.392},{"x":18.52,"y":20.222,"w":0.75,"l":22.392},{"x":40.825,"y":19.472,"w":0.75,"l":14.553},{"x":40.825,"y":20.222,"w":0.75,"l":14.553},{"x":55.292,"y":19.472,"w":0.75,"l":11.177},{"x":55.292,"y":20.222,"w":0.75,"l":11.177},{"x":66.383,"y":19.472,"w":0.75,"l":14.913},{"x":66.383,"y":20.222,"w":0.75,"l":14.913},{"x":18.52,"y":20.222,"w":0.75,"l":22.392},{"x":18.52,"y":20.972,"w":0.75,"l":22.392},{"x":40.825,"y":20.222,"w":0.75,"l":14.553},{"x":40.825,"y":20.972,"w":0.75,"l":14.553},{"x":55.292,"y":20.222,"w":0.75,"l":11.177},{"x":55.292,"y":20.972,"w":0.75,"l":11.177},{"x":66.383,"y":20.222,"w":0.75,"l":14.913},{"x":66.383,"y":20.972,"w":0.75,"l":14.913},{"x":95.245,"y":16.125,"w":0.75,"l":3.798},{"x":95.245,"y":17.5,"w":0.75,"l":3.798},{"x":95.245,"y":19.25,"w":0.75,"l":3.798},{"x":95.245,"y":20.25,"w":0.75,"l":3.798},{"x":95.287,"y":21.562,"w":2.25,"l":3.713},{"x":95.287,"y":20.437,"w":2.25,"l":3.713},{"x":6.188,"y":21.75,"w":1.2000000000000002,"l":92.813},{"x":79.157,"y":22.5,"w":0.75,"l":3.798},{"x":82.87,"y":21.75,"w":0.75,"l":12.461},{"x":82.87,"y":22.5,"w":0.75,"l":12.461},{"x":95.245,"y":21.75,"w":0.75,"l":3.798},{"x":95.245,"y":22.5,"w":0.75,"l":3.798},{"x":79.157,"y":23.25,"w":0.75,"l":3.798},{"x":82.87,"y":22.5,"w":0.75,"l":12.461},{"x":82.87,"y":23.25,"w":0.75,"l":12.461},{"x":95.245,"y":22.5,"w":0.75,"l":3.798},{"x":95.245,"y":23.25,"w":0.75,"l":3.798},{"x":59.357,"y":24,"w":0.75,"l":3.798},{"x":63.07,"y":24,"w":0.75,"l":12.461},{"x":75.445,"y":24,"w":0.75,"l":3.798},{"x":79.157,"y":23.25,"w":0.75,"l":3.798},{"x":82.87,"y":23.25,"w":0.75,"l":12.461},{"x":95.245,"y":23.25,"w":0.75,"l":3.798},{"x":79.157,"y":24.75,"w":0.75,"l":3.798},{"x":82.87,"y":24.75,"w":0.75,"l":12.461},{"x":95.245,"y":24.75,"w":0.75,"l":3.798},{"x":59.357,"y":25.5,"w":0.75,"l":3.798},{"x":63.07,"y":25.5,"w":0.75,"l":12.461},{"x":75.445,"y":25.5,"w":0.75,"l":3.798},{"x":79.157,"y":24.75,"w":0.75,"l":3.798},{"x":82.87,"y":24.75,"w":0.75,"l":12.461},{"x":95.245,"y":24.75,"w":0.75,"l":3.798},{"x":79.157,"y":26.25,"w":0.75,"l":3.798},{"x":82.87,"y":26.25,"w":0.75,"l":12.461},{"x":95.245,"y":26.25,"w":0.75,"l":3.798},{"x":79.157,"y":27,"w":0.75,"l":3.798},{"x":82.87,"y":26.25,"w":0.75,"l":12.461},{"x":82.87,"y":27,"w":0.75,"l":12.461},{"x":95.245,"y":26.25,"w":0.75,"l":3.798},{"x":95.245,"y":27,"w":0.75,"l":3.798},{"x":79.157,"y":27.75,"w":0.75,"l":3.798},{"x":82.87,"y":27,"w":0.75,"l":12.461},{"x":82.87,"y":27.75,"w":0.75,"l":12.461},{"x":95.245,"y":27,"w":0.75,"l":3.798},{"x":95.245,"y":27.75,"w":0.75,"l":3.798},{"x":79.157,"y":28.5,"w":0.75,"l":3.798},{"x":82.87,"y":27.75,"w":0.75,"l":12.461},{"x":82.87,"y":28.5,"w":0.75,"l":12.461},{"x":95.245,"y":27.75,"w":0.75,"l":3.798},{"x":95.245,"y":28.5,"w":0.75,"l":3.798},{"x":79.157,"y":29.25,"w":0.75,"l":3.798},{"x":82.87,"y":28.5,"w":0.75,"l":12.461},{"x":82.87,"y":29.25,"w":0.75,"l":12.461},{"x":95.245,"y":28.5,"w":0.75,"l":3.798},{"x":95.245,"y":29.25,"w":0.75,"l":3.798},{"x":38.32,"y":30,"w":0.75,"l":3.798},{"x":42.11,"y":30,"w":0.75,"l":12.461},{"x":54.407,"y":30,"w":0.75,"l":3.798},{"x":79.157,"y":30,"w":0.75,"l":3.798},{"x":82.87,"y":29.25,"w":0.75,"l":12.461},{"x":82.87,"y":30,"w":0.75,"l":12.461},{"x":95.245,"y":29.25,"w":0.75,"l":3.798},{"x":95.245,"y":30,"w":0.75,"l":3.798},{"x":38.32,"y":30.75,"w":0.75,"l":3.798},{"x":42.11,"y":30,"w":0.75,"l":12.461},{"x":42.11,"y":30.75,"w":0.75,"l":12.461},{"x":54.45,"y":30.75,"w":0.75,"l":3.712},{"x":54.45,"y":30,"w":0.75,"l":3.712},{"x":79.157,"y":30.75,"w":0.75,"l":3.798},{"x":82.87,"y":30,"w":0.75,"l":12.461},{"x":82.87,"y":30.75,"w":0.75,"l":12.461},{"x":95.245,"y":30,"w":0.75,"l":3.798},{"x":95.245,"y":30.75,"w":0.75,"l":3.798},{"x":79.157,"y":31.5,"w":0.75,"l":3.798},{"x":82.87,"y":30.75,"w":0.75,"l":12.461},{"x":82.87,"y":31.5,"w":0.75,"l":12.461},{"x":95.245,"y":30.75,"w":0.75,"l":3.798},{"x":95.245,"y":31.5,"w":0.75,"l":3.798},{"x":79.157,"y":32.25,"w":0.75,"l":3.798},{"x":82.87,"y":31.5,"w":0.75,"l":12.461},{"x":82.87,"y":32.25,"w":0.75,"l":12.461},{"x":95.245,"y":31.5,"w":0.75,"l":3.798},{"x":95.245,"y":32.25,"w":0.75,"l":3.798},{"x":79.157,"y":33,"w":0.75,"l":3.798},{"x":82.87,"y":32.25,"w":0.75,"l":12.461},{"x":82.87,"y":33,"w":0.75,"l":12.461},{"x":95.245,"y":32.25,"w":0.75,"l":3.798},{"x":95.245,"y":33,"w":0.75,"l":3.798},{"x":38.32,"y":33.75,"w":0.75,"l":3.798},{"x":42.032,"y":33.75,"w":0.75,"l":12.461},{"x":54.407,"y":33.75,"w":0.75,"l":3.798},{"x":79.157,"y":33.75,"w":0.75,"l":3.798},{"x":82.87,"y":33,"w":0.75,"l":12.461},{"x":95.245,"y":33,"w":0.75,"l":3.798},{"dsh":1,"x":46.982,"y":34.5,"w":0.75,"l":31.023},{"x":79.157,"y":34.5,"w":1.125,"l":3.798},{"x":82.87,"y":33.75,"w":0.75,"l":12.461},{"x":82.87,"y":34.5,"w":0.75,"l":12.461},{"x":95.245,"y":33.75,"w":0.75,"l":3.798},{"x":95.245,"y":34.5,"w":1.125,"l":3.798},{"x":82.87,"y":34.5,"w":0.75,"l":12.461},{"x":95.245,"y":34.5,"w":0.75,"l":3.798},{"oc":"#211f1f","x":6.188,"y":35.25,"w":1.2000000000000002,"l":92.813},{"x":79.157,"y":35.25,"w":0.75,"l":3.798},{"x":59.357,"y":36,"w":0.75,"l":3.798},{"x":63.112,"y":36,"w":0.75,"l":12.375},{"x":63.112,"y":35.25,"w":0.75,"l":12.375},{"x":75.487,"y":36,"w":0.75,"l":3.713},{"x":75.487,"y":35.25,"w":0.75,"l":3.713},{"x":82.87,"y":35.25,"w":0.75,"l":12.461},{"x":95.245,"y":35.25,"w":0.75,"l":3.798},{"x":63.07,"y":36,"w":0.75,"l":12.461},{"x":75.445,"y":36,"w":0.75,"l":3.798},{"x":59.357,"y":37.5,"w":0.75,"l":3.798},{"x":63.07,"y":37.5,"w":0.75,"l":12.461},{"x":75.445,"y":37.5,"w":0.75,"l":3.798},{"x":59.357,"y":38.25,"w":0.75,"l":3.798},{"x":63.112,"y":38.25,"w":0.75,"l":12.375},{"x":63.112,"y":37.5,"w":0.75,"l":12.375},{"x":75.487,"y":38.25,"w":0.75,"l":3.713},{"x":75.487,"y":37.5,"w":0.75,"l":3.713},{"x":59.357,"y":39,"w":0.75,"l":3.798},{"x":63.112,"y":39,"w":0.75,"l":12.375},{"x":63.112,"y":38.25,"w":0.75,"l":12.375},{"x":75.487,"y":39,"w":0.75,"l":3.713},{"x":75.487,"y":38.25,"w":0.75,"l":3.713},{"x":59.357,"y":39.75,"w":0.75,"l":3.798},{"x":63.112,"y":39.75,"w":0.75,"l":12.375},{"x":63.112,"y":39,"w":0.75,"l":12.375},{"x":75.487,"y":39.75,"w":0.75,"l":3.713},{"x":75.487,"y":39,"w":0.75,"l":3.713},{"x":59.357,"y":40.5,"w":0.75,"l":3.798},{"x":63.112,"y":40.5,"w":0.75,"l":12.375},{"x":63.112,"y":39.75,"w":0.75,"l":12.375},{"x":75.487,"y":40.5,"w":0.75,"l":3.713},{"x":75.487,"y":39.75,"w":0.75,"l":3.713},{"x":59.357,"y":41.25,"w":0.75,"l":3.798},{"x":63.112,"y":41.25,"w":0.75,"l":12.375},{"x":63.112,"y":40.5,"w":0.75,"l":12.375},{"x":75.487,"y":41.25,"w":0.75,"l":3.713},{"x":75.487,"y":40.5,"w":0.75,"l":3.713},{"x":59.357,"y":42,"w":0.75,"l":3.798},{"x":63.112,"y":42,"w":0.75,"l":12.375},{"x":63.112,"y":41.25,"w":0.75,"l":12.375},{"x":75.487,"y":42,"w":0.75,"l":3.713},{"x":75.487,"y":41.25,"w":0.75,"l":3.713},{"x":45.745,"y":42.75,"w":0.75,"l":12.461},{"x":59.357,"y":42.75,"w":0.75,"l":3.798},{"x":63.112,"y":42.75,"w":0.75,"l":12.375},{"x":63.112,"y":42,"w":0.75,"l":12.375},{"x":75.487,"y":42.75,"w":0.75,"l":3.713},{"x":75.487,"y":42,"w":0.75,"l":3.713},{"x":59.357,"y":43.5,"w":0.75,"l":3.798},{"x":63.112,"y":43.5,"w":0.75,"l":12.375},{"x":63.112,"y":42.75,"w":0.75,"l":12.375},{"x":75.487,"y":43.5,"w":0.75,"l":3.713},{"x":75.487,"y":42.75,"w":0.75,"l":3.713},{"x":59.357,"y":44.25,"w":0.75,"l":3.798},{"x":63.112,"y":44.25,"w":0.75,"l":12.375},{"x":63.112,"y":43.5,"w":0.75,"l":12.375},{"x":75.487,"y":44.25,"w":0.75,"l":3.713},{"x":75.487,"y":43.5,"w":0.75,"l":3.713},{"x":59.357,"y":45,"w":0.75,"l":3.798},{"x":63.112,"y":45,"w":0.75,"l":12.375},{"x":63.112,"y":44.25,"w":0.75,"l":12.375},{"x":75.487,"y":45,"w":0.75,"l":3.713},{"x":75.487,"y":44.25,"w":0.75,"l":3.713},{"x":59.357,"y":45.75,"w":0.75,"l":3.798},{"x":63.112,"y":45.75,"w":0.75,"l":12.375},{"x":63.112,"y":45,"w":0.75,"l":12.375},{"x":75.487,"y":45.75,"w":0.75,"l":3.713},{"x":75.487,"y":45,"w":0.75,"l":3.713},{"x":79.157,"y":46.5,"w":1.125,"l":3.798},{"x":82.87,"y":46.5,"w":1.125,"l":12.461},{"x":95.245,"y":46.5,"w":1.125,"l":3.798},{"x":82.87,"y":46.5,"w":1.125,"l":12.461},{"x":95.245,"y":46.5,"w":1.125,"l":3.798},{"x":6.145,"y":47.25,"w":1.5,"l":60.659},{"x":66.782,"y":47.25,"w":1.5,"l":19.886},{"x":86.582,"y":47.25,"w":1.5,"l":12.461}],"VLines":[{"x":74.25,"y":2.234,"w":0.75,"l":1.531},{"x":61.813,"y":2.234,"w":0.75,"l":1.547},{"x":51.975,"y":2.234,"w":0.75,"l":1.547},{"x":80.438,"y":3.719,"w":0.75,"l":0.797},{"x":37.125,"y":4.484,"w":0.75,"l":1.531},{"x":80.438,"y":4.5,"w":0.75,"l":1.5},{"x":37.125,"y":4.5,"w":0.75,"l":1.5},{"x":80.438,"y":4.469,"w":0.75,"l":1.563},{"dsh":1,"x":86.245,"y":5.25,"w":0.75,"l":0.625},{"dsh":1,"x":89.957,"y":5.25,"w":0.75,"l":0.625},{"x":37.125,"y":5.984,"w":0.75,"l":1.531},{"x":80.438,"y":6,"w":0.75,"l":1.5},{"x":37.125,"y":6,"w":0.75,"l":1.5},{"x":80.438,"y":5.984,"w":0.75,"l":1.531},{"dsh":1,"x":86.245,"y":6.75,"w":0.75,"l":0.625},{"dsh":1,"x":89.957,"y":6.75,"w":0.75,"l":0.625},{"x":71.775,"y":7.484,"w":0.75,"l":1.531},{"x":80.437,"y":7.5,"w":0.75,"l":1.5},{"x":71.775,"y":7.5,"w":0.75,"l":1.5},{"x":80.438,"y":8.984,"w":0.75,"l":1.531},{"x":44.55,"y":10.484,"w":0.75,"l":1.531},{"x":69.3,"y":10.5,"w":0.75,"l":1.5},{"x":44.55,"y":10.5,"w":0.75,"l":1.5},{"x":80.437,"y":10.5,"w":0.75,"l":1.5},{"x":69.3,"y":10.5,"w":0.75,"l":1.5},{"x":40.868,"y":16.484,"w":0.75,"l":1.531},{"x":55.335,"y":16.484,"w":0.75,"l":1.531},{"x":66.426,"y":16.484,"w":0.75,"l":1.531},{"x":40.868,"y":17.984,"w":0.75,"l":0.754},{"x":55.335,"y":17.984,"w":0.75,"l":0.754},{"x":66.426,"y":17.984,"w":0.75,"l":0.754},{"x":40.868,"y":18.707,"w":0.75,"l":0.781},{"x":55.335,"y":18.707,"w":0.75,"l":0.781},{"x":66.426,"y":18.707,"w":0.75,"l":0.781},{"x":40.868,"y":19.457,"w":0.75,"l":0.781},{"x":55.335,"y":19.457,"w":0.75,"l":0.781},{"x":66.426,"y":19.457,"w":0.75,"l":0.781},{"x":40.868,"y":20.207,"w":0.75,"l":0.781},{"x":55.335,"y":20.207,"w":0.75,"l":0.781},{"x":66.426,"y":20.207,"w":0.75,"l":0.781},{"dsh":1,"x":48.673,"y":18.047,"w":0.75,"l":0.656},{"dsh":1,"x":45.407,"y":18.047,"w":0.75,"l":0.656},{"dsh":1,"x":48.673,"y":18.797,"w":0.75,"l":0.656},{"dsh":1,"x":45.407,"y":18.797,"w":0.75,"l":0.656},{"dsh":1,"x":48.673,"y":19.547,"w":0.75,"l":0.656},{"dsh":1,"x":45.407,"y":19.547,"w":0.75,"l":0.656},{"dsh":1,"x":48.673,"y":20.297,"w":0.75,"l":0.656},{"dsh":1,"x":45.407,"y":20.297,"w":0.75,"l":0.656},{"x":99,"y":20.437,"w":2.25,"l":1.125},{"x":95.287,"y":20.437,"w":2.25,"l":1.125},{"x":79.2,"y":21.734,"w":0.75,"l":0.781},{"x":82.912,"y":21.734,"w":0.75,"l":0.781},{"x":95.287,"y":21.734,"w":0.75,"l":0.781},{"x":79.2,"y":22.484,"w":0.75,"l":0.781},{"x":82.912,"y":22.484,"w":0.75,"l":0.781},{"x":95.287,"y":22.484,"w":0.75,"l":0.781},{"x":59.4,"y":23.234,"w":0.75,"l":0.781},{"x":63.112,"y":23.234,"w":0.75,"l":0.781},{"x":75.487,"y":23.234,"w":0.75,"l":0.781},{"x":82.912,"y":23.234,"w":0.75,"l":0.781},{"x":79.2,"y":23.234,"w":0.75,"l":0.781},{"x":95.287,"y":23.234,"w":0.75,"l":0.781},{"x":82.912,"y":23.234,"w":0.75,"l":0.781},{"x":95.287,"y":23.234,"w":0.75,"l":0.781},{"x":79.2,"y":23.984,"w":0.75,"l":0.781},{"x":82.912,"y":23.984,"w":0.75,"l":0.781},{"x":95.287,"y":23.984,"w":0.75,"l":0.781},{"x":59.4,"y":24.734,"w":0.75,"l":0.781},{"x":63.112,"y":24.734,"w":0.75,"l":0.781},{"x":75.487,"y":24.734,"w":0.75,"l":0.781},{"x":82.912,"y":24.734,"w":0.75,"l":0.781},{"x":79.2,"y":24.734,"w":0.75,"l":0.781},{"x":95.287,"y":24.734,"w":0.75,"l":0.781},{"x":82.912,"y":24.734,"w":0.75,"l":0.781},{"x":95.287,"y":24.734,"w":0.75,"l":0.781},{"x":79.2,"y":25.484,"w":0.75,"l":0.781},{"x":82.912,"y":25.484,"w":0.75,"l":0.781},{"x":95.287,"y":25.484,"w":0.75,"l":0.781},{"x":79.2,"y":26.234,"w":0.75,"l":0.781},{"x":82.912,"y":26.234,"w":0.75,"l":0.781},{"x":95.287,"y":26.234,"w":0.75,"l":0.781},{"x":79.2,"y":26.984,"w":0.75,"l":0.781},{"x":82.912,"y":26.984,"w":0.75,"l":0.781},{"x":95.287,"y":26.984,"w":0.75,"l":0.781},{"x":79.2,"y":27.734,"w":0.75,"l":0.781},{"x":82.912,"y":27.734,"w":0.75,"l":0.781},{"x":95.287,"y":27.734,"w":0.75,"l":0.781},{"x":79.2,"y":28.484,"w":0.75,"l":0.781},{"x":82.912,"y":28.484,"w":0.75,"l":0.781},{"x":95.287,"y":28.484,"w":0.75,"l":0.781},{"x":38.362,"y":29.234,"w":0.75,"l":0.781},{"x":42.153,"y":29.234,"w":0.75,"l":0.781},{"x":58.163,"y":29.234,"w":0.75,"l":0.781},{"x":54.45,"y":29.234,"w":0.75,"l":0.781},{"x":79.2,"y":29.234,"w":0.75,"l":0.781},{"x":82.912,"y":29.234,"w":0.75,"l":0.781},{"x":95.287,"y":29.234,"w":0.75,"l":0.781},{"x":38.362,"y":29.984,"w":0.75,"l":0.781},{"x":42.153,"y":29.984,"w":0.75,"l":0.781},{"x":58.162,"y":30,"w":0.75,"l":0.75},{"x":54.45,"y":30,"w":0.75,"l":0.75},{"x":79.2,"y":29.984,"w":0.75,"l":0.781},{"x":82.912,"y":29.984,"w":0.75,"l":0.781},{"x":95.287,"y":29.984,"w":0.75,"l":0.781},{"x":79.2,"y":30.734,"w":0.75,"l":0.781},{"x":82.912,"y":30.734,"w":0.75,"l":0.781},{"x":95.287,"y":30.734,"w":0.75,"l":0.781},{"x":79.2,"y":31.484,"w":0.75,"l":0.781},{"x":82.912,"y":31.484,"w":0.75,"l":0.781},{"x":95.287,"y":31.484,"w":0.75,"l":0.781},{"x":79.2,"y":32.234,"w":0.75,"l":0.781},{"x":82.912,"y":32.234,"w":0.75,"l":0.781},{"x":95.287,"y":32.234,"w":0.75,"l":0.781},{"x":38.362,"y":32.984,"w":0.75,"l":0.781},{"x":42.075,"y":32.984,"w":0.75,"l":0.781},{"x":58.163,"y":32.984,"w":0.75,"l":0.781},{"x":54.45,"y":32.984,"w":0.75,"l":0.781},{"x":79.2,"y":32.984,"w":0.75,"l":0.781},{"x":82.912,"y":32.984,"w":0.75,"l":0.781},{"x":95.287,"y":32.984,"w":0.75,"l":0.781},{"x":79.2,"y":33.734,"w":0.75,"l":0.789},{"x":82.912,"y":33.734,"w":0.75,"l":0.781},{"x":95.287,"y":33.734,"w":0.75,"l":0.789},{"x":79.2,"y":34.484,"w":0.75,"l":0.781},{"x":82.912,"y":34.484,"w":0.75,"l":0.781},{"x":95.287,"y":34.484,"w":0.75,"l":0.781},{"x":82.912,"y":35.234,"w":0.75,"l":10.531},{"x":79.2,"y":35.234,"w":0.75,"l":10.531},{"x":59.4,"y":35.234,"w":0.75,"l":0.781},{"x":75.487,"y":35.25,"w":0.75,"l":0.75},{"x":63.112,"y":35.25,"w":0.75,"l":0.75},{"x":79.2,"y":35.25,"w":0.75,"l":0.75},{"x":75.487,"y":35.25,"w":0.75,"l":0.75},{"x":82.912,"y":35.234,"w":0.75,"l":10.531},{"x":95.287,"y":35.234,"w":0.75,"l":10.531},{"x":59.4,"y":35.984,"w":0.75,"l":0.781},{"x":75.487,"y":35.984,"w":0.75,"l":0.781},{"x":63.112,"y":35.984,"w":0.75,"l":0.781},{"x":79.2,"y":35.984,"w":0.75,"l":0.781},{"x":75.487,"y":35.984,"w":0.75,"l":0.781},{"x":59.4,"y":36.734,"w":0.75,"l":0.781},{"x":75.487,"y":36.734,"w":0.75,"l":0.781},{"x":63.112,"y":36.734,"w":0.75,"l":0.781},{"x":79.2,"y":36.734,"w":0.75,"l":0.781},{"x":75.487,"y":36.734,"w":0.75,"l":0.781},{"x":59.4,"y":37.484,"w":0.75,"l":0.781},{"x":75.487,"y":37.5,"w":0.75,"l":0.75},{"x":63.112,"y":37.5,"w":0.75,"l":0.75},{"x":79.2,"y":37.5,"w":0.75,"l":0.75},{"x":75.487,"y":37.5,"w":0.75,"l":0.75},{"x":59.4,"y":38.234,"w":0.75,"l":0.781},{"x":75.487,"y":38.25,"w":0.75,"l":0.75},{"x":63.112,"y":38.25,"w":0.75,"l":0.75},{"x":79.2,"y":38.25,"w":0.75,"l":0.75},{"x":75.487,"y":38.25,"w":0.75,"l":0.75},{"x":59.4,"y":38.984,"w":0.75,"l":0.781},{"x":75.487,"y":39,"w":0.75,"l":0.75},{"x":63.112,"y":39,"w":0.75,"l":0.75},{"x":79.2,"y":39,"w":0.75,"l":0.75},{"x":75.487,"y":39,"w":0.75,"l":0.75},{"x":59.4,"y":39.734,"w":0.75,"l":0.781},{"x":75.487,"y":39.75,"w":0.75,"l":0.75},{"x":63.112,"y":39.75,"w":0.75,"l":0.75},{"x":79.2,"y":39.75,"w":0.75,"l":0.75},{"x":75.487,"y":39.75,"w":0.75,"l":0.75},{"x":59.4,"y":40.484,"w":0.75,"l":0.781},{"x":75.487,"y":40.5,"w":0.75,"l":0.75},{"x":63.112,"y":40.5,"w":0.75,"l":0.75},{"x":79.2,"y":40.5,"w":0.75,"l":0.75},{"x":75.487,"y":40.5,"w":0.75,"l":0.75},{"x":59.4,"y":41.234,"w":0.75,"l":0.781},{"x":75.487,"y":41.25,"w":0.75,"l":0.75},{"x":63.112,"y":41.25,"w":0.75,"l":0.75},{"x":79.2,"y":41.25,"w":0.75,"l":0.75},{"x":75.487,"y":41.25,"w":0.75,"l":0.75},{"dsh":1,"x":52.422,"y":42,"w":0.75,"l":0.625},{"dsh":1,"x":49.844,"y":42,"w":0.75,"l":0.625},{"x":59.4,"y":41.984,"w":0.75,"l":0.781},{"x":75.487,"y":42,"w":0.75,"l":0.75},{"x":63.112,"y":42,"w":0.75,"l":0.75},{"x":79.2,"y":42,"w":0.75,"l":0.75},{"x":75.487,"y":42,"w":0.75,"l":0.75},{"x":59.4,"y":42.734,"w":0.75,"l":0.781},{"x":75.487,"y":42.75,"w":0.75,"l":0.75},{"x":63.112,"y":42.75,"w":0.75,"l":0.75},{"x":79.2,"y":42.75,"w":0.75,"l":0.75},{"x":75.487,"y":42.75,"w":0.75,"l":0.75},{"x":59.4,"y":43.484,"w":0.75,"l":0.781},{"x":75.487,"y":43.5,"w":0.75,"l":0.75},{"x":63.112,"y":43.5,"w":0.75,"l":0.75},{"x":79.2,"y":43.5,"w":0.75,"l":0.75},{"x":75.487,"y":43.5,"w":0.75,"l":0.75},{"x":59.4,"y":44.234,"w":0.75,"l":0.781},{"x":75.487,"y":44.25,"w":0.75,"l":0.75},{"x":63.112,"y":44.25,"w":0.75,"l":0.75},{"x":79.2,"y":44.25,"w":0.75,"l":0.75},{"x":75.487,"y":44.25,"w":0.75,"l":0.75},{"x":59.4,"y":44.984,"w":0.75,"l":0.781},{"x":75.487,"y":45,"w":0.75,"l":0.75},{"x":63.112,"y":45,"w":0.75,"l":0.75},{"x":79.2,"y":45,"w":0.75,"l":0.75},{"x":75.487,"y":45,"w":0.75,"l":0.75},{"x":79.2,"y":45.734,"w":0.75,"l":0.789},{"x":82.912,"y":45.734,"w":0.75,"l":0.789},{"x":95.287,"y":45.734,"w":0.75,"l":0.789},{"x":79.2,"y":46.484,"w":0.75,"l":0.781},{"x":82.912,"y":46.476,"w":0.75,"l":0.789},{"x":95.287,"y":46.476,"w":0.75,"l":0.789}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#dcfffa","x":17.325,"y":1.5,"w":81.675,"h":45.75,"clr":-1},{"oc":"#dcfffa","x":4.95,"y":47.25,"w":95.287,"h":1.5,"clr":-1},{"x":6.188,"y":3.75,"w":48.263,"h":0.75,"clr":1},{"x":54.45,"y":3.75,"w":14.85,"h":0.75,"clr":1},{"x":69.3,"y":3.75,"w":11.138,"h":0.75,"clr":1},{"x":80.438,"y":3.75,"w":18.563,"h":0.75,"clr":1},{"x":6.188,"y":4.5,"w":30.938,"h":1.5,"clr":1},{"x":37.125,"y":4.5,"w":43.313,"h":1.5,"clr":1},{"x":80.438,"y":4.5,"w":18.563,"h":1.5,"clr":1},{"x":6.188,"y":6,"w":30.938,"h":1.5,"clr":1},{"x":37.125,"y":6,"w":43.313,"h":1.5,"clr":1},{"x":80.438,"y":6,"w":18.563,"h":1.5,"clr":1},{"x":6.187,"y":7.5,"w":65.588,"h":1.5,"clr":1},{"x":71.775,"y":7.5,"w":8.662,"h":1.5,"clr":1},{"x":6.187,"y":9,"w":74.25,"h":1.5,"clr":1},{"x":6.187,"y":10.5,"w":38.362,"h":1.5,"clr":1},{"x":44.55,"y":10.5,"w":24.75,"h":1.5,"clr":1},{"x":69.3,"y":10.5,"w":11.138,"h":1.5,"clr":1},{"x":38.362,"y":14.25,"w":18.563,"h":0.75,"clr":1},{"x":76.725,"y":13.5,"w":22.275,"h":0.75,"clr":1},{"x":18.562,"y":18,"w":22.306,"h":0.722,"clr":1},{"x":40.868,"y":18,"w":14.467,"h":0.722,"clr":1},{"x":55.335,"y":18,"w":11.091,"h":0.722,"clr":1},{"x":66.426,"y":18,"w":14.827,"h":0.722,"clr":1},{"x":18.562,"y":18.722,"w":22.306,"h":0.75,"clr":1},{"x":40.868,"y":18.722,"w":14.467,"h":0.75,"clr":1},{"x":55.335,"y":18.722,"w":11.091,"h":0.75,"clr":1},{"x":66.426,"y":18.722,"w":14.827,"h":0.75,"clr":1},{"x":18.562,"y":19.472,"w":22.306,"h":0.75,"clr":1},{"x":40.868,"y":19.472,"w":14.467,"h":0.75,"clr":1},{"x":55.335,"y":19.472,"w":11.091,"h":0.75,"clr":1},{"x":66.426,"y":19.472,"w":14.827,"h":0.75,"clr":1},{"x":18.562,"y":20.222,"w":22.306,"h":0.75,"clr":1},{"x":40.868,"y":20.222,"w":14.467,"h":0.75,"clr":1},{"x":55.335,"y":20.222,"w":11.091,"h":0.75,"clr":1},{"x":66.426,"y":20.222,"w":14.827,"h":0.75,"clr":1},{"x":95.287,"y":15.375,"w":3.713,"h":0.75,"clr":1},{"x":95.287,"y":16.75,"w":3.713,"h":0.75,"clr":1},{"x":95.287,"y":18.5,"w":3.713,"h":0.75,"clr":1},{"x":95.287,"y":19.5,"w":3.713,"h":0.75,"clr":1},{"x":95.287,"y":20.437,"w":3.713,"h":1.125,"clr":1},{"x":82.912,"y":21.75,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":21.75,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":22.5,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":22.5,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":23.25,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":23.25,"w":3.713,"h":0.75,"clr":1},{"x":79.2,"y":23.25,"w":3.712,"h":0.75,"clr":5},{"x":82.912,"y":23.25,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":23.25,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":24,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":24,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":24.75,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":24.75,"w":3.713,"h":0.75,"clr":1},{"x":79.2,"y":24.75,"w":3.712,"h":0.75,"clr":5},{"x":82.912,"y":24.75,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":24.75,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":25.5,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":25.5,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":26.25,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":26.25,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":27,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":27,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":27.75,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":27.75,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":28.5,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":28.5,"w":3.713,"h":0.75,"clr":1},{"x":42.153,"y":29.25,"w":12.375,"h":0.75,"clr":1},{"x":54.45,"y":29.25,"w":3.712,"h":0.75,"clr":1},{"x":82.912,"y":29.25,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":29.25,"w":3.713,"h":0.75,"clr":1},{"x":42.153,"y":30,"w":12.375,"h":0.75,"clr":1},{"x":54.45,"y":30,"w":3.712,"h":0.75,"clr":1},{"x":82.912,"y":30,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":30,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":30.75,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":30.75,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":31.5,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":31.5,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":32.25,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":32.25,"w":3.713,"h":0.75,"clr":1},{"x":42.075,"y":33,"w":12.375,"h":0.75,"clr":1},{"x":54.45,"y":33,"w":3.712,"h":0.75,"clr":1},{"x":82.912,"y":33,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":33,"w":3.713,"h":0.75,"clr":1},{"x":47.025,"y":33.813,"w":30.938,"h":0.687,"clr":1},{"x":82.912,"y":33.75,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":33.75,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":34.5,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":34.5,"w":3.713,"h":0.75,"clr":1},{"x":79.2,"y":35.25,"w":3.712,"h":10.5,"clr":5},{"x":63.112,"y":35.25,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":35.25,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":35.25,"w":12.375,"h":10.5,"clr":1},{"x":95.287,"y":35.25,"w":3.713,"h":10.5,"clr":1},{"x":63.112,"y":36,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":36,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":36.75,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":36.75,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":37.5,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":37.5,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":38.25,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":38.25,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":39,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":39,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":39.75,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":39.75,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":40.5,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":40.5,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":41.25,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":41.25,"w":3.713,"h":0.75,"clr":1},{"x":45.787,"y":42,"w":12.375,"h":0.75,"clr":1},{"x":63.112,"y":42,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":42,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":42.75,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":42.75,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":43.5,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":43.5,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":44.25,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":44.25,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":45,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":45,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":45.75,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":45.75,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":46.5,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":46.5,"w":3.713,"h":0.75,"clr":1}],"Texts":[{"oc":"#bfbfbf","x":19.529,"y":22.133,"w":380.04,"clr":-1,"A":"left","R":[{"T":"DO%20NOT%20FILE","S":-1,"TS":[0,64,1,0]}]},{"oc":"#bfbfbf","x":20.617,"y":17.982,"w":370.2600000000001,"clr":-1,"A":"left","R":[{"T":"July%2026%2C%202013","S":-1,"TS":[0,64,1,0]}]},{"oc":"#bfbfbf","x":17.415,"y":14.008,"w":403.32000000000005,"clr":-1,"A":"left","R":[{"T":"DRAFT%20AS%20OF","S":-1,"TS":[0,64,1,0]}]},{"x":7.432,"y":2.76,"w":2.334,"clr":0,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0],"RA":90}]},{"x":8.413,"y":2.571,"w":2.34,"clr":0,"A":"left","R":[{"T":"1040%20","S":-1,"TS":[0,27,0,0]}]},{"x":18.45,"y":1.9929999999999999,"w":24.632999999999992,"clr":0,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%E2%80%94Internal%20Revenue%20Service%20","S":51,"TS":[0,9,0,0]}]},{"x":62.228,"y":2.75,"w":9.283000000000001,"clr":0,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"x":47.651,"y":2,"w":1.63,"clr":0,"A":"left","R":[{"T":"(99)","S":2,"TS":[0,10,0,0]}]},{"x":74.648,"y":2.708,"w":23.021,"clr":0,"A":"left","R":[{"T":"IRS%20Use%20Only%E2%80%94Do%20not%20write%20or%20staple%20in%20this%20space.%20","S":51,"TS":[0,9,0,0]}]},{"x":18.45,"y":2.764,"w":15.519999999999996,"clr":0,"A":"left","R":[{"T":"U.S.%20Individual%20Income%20Tax%20Return%20","S":-1,"TS":[0,15,0,0]}]},{"x":52.175,"y":2.642,"w":1.264,"clr":0,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":56.52,"y":2.642,"w":1.336,"clr":0,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"x":6.625,"y":3.5119999999999996,"w":27.915000000000013,"clr":0,"A":"left","R":[{"T":"For%20the%20year%20Jan.%201%E2%80%93Dec.%2031%2C%202013%2C%20or%20other%20tax%20year%20beginning%20","S":-1,"TS":[0,9.16,0,0]}]},{"x":54.2,"y":3.5119999999999996,"w":6.652000000000001,"clr":0,"A":"left","R":[{"T":"%2C%202013%2C%20ending%20","S":-1,"TS":[0,9.16,0,0]}]},{"x":69.05,"y":3.5119999999999996,"w":0.278,"clr":0,"A":"left","R":[{"T":"%2C","S":-1,"TS":[0,9.3,0,0]}]},{"x":80.875,"y":3.4859999999999998,"w":11.631000000000002,"clr":0,"A":"left","R":[{"T":"See%20separate%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"x":6.625,"y":4.17,"w":11.631999999999998,"clr":0,"A":"left","R":[{"T":"Your%20first%20name%20and%20initial%20","S":2,"TS":[0,10,0,0]}]},{"x":37.563,"y":4.167,"w":4.946999999999999,"clr":0,"A":"left","R":[{"T":"Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"x":80.875,"y":4.171,"w":13.646000000000003,"clr":0,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"x":6.625,"y":5.658,"w":20.560000000000006,"clr":0,"A":"left","R":[{"T":"If%20a%20joint%20return%2C%20spouse%E2%80%99s%20first%20name%20and%20initial%20","S":2,"TS":[0,10,0,0]}]},{"x":37.563,"y":5.656,"w":4.946999999999999,"clr":0,"A":"left","R":[{"T":"Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"x":80.875,"y":5.659,"w":15.776000000000002,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20social%20security%20number%20","S":-1,"TS":[0,9.3,0,0]}]},{"x":80.566,"y":7.536,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,13,0,0]}]},{"x":83.074,"y":7.335000000000001,"w":12.965000000000002,"clr":0,"A":"left","R":[{"T":"Make%20sure%20the%20SSN(s)%20above%20","S":2,"TS":[0,10,0,0]}]},{"x":83.676,"y":7.859999999999999,"w":11.687000000000003,"clr":0,"A":"left","R":[{"T":"and%20on%20line%206c%20are%20correct.","S":2,"TS":[0,10,0,0]}]},{"x":6.625,"y":7.16,"w":34.15699999999999,"clr":0,"A":"left","R":[{"T":"Home%20address%20(number%20and%20street).%20If%20you%20have%20a%20P.O.%20box%2C%20see%20instructions.%20","S":2,"TS":[0,10,0,0]}]},{"x":74.083,"y":7.156,"w":3.798,"clr":0,"A":"left","R":[{"T":"Apt.%20no.%20","S":2,"TS":[0,10,0,0]}]},{"x":6.625,"y":8.647,"w":55.17199999999997,"clr":0,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office%2C%20state%2C%20and%20ZIP%20code.%20If%20you%20have%20a%20foreign%20address%2C%20also%20complete%20spaces%20below%20(see%20instructions).%20","S":-1,"TS":[0,9.3,0,0]}]},{"x":6.625,"y":10.186,"w":20.899999999999988,"clr":0,"A":"left","R":[{"T":"Foreign%20country%20name%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"x":44.988,"y":10.189,"w":20.079999999999988,"clr":0,"A":"left","R":[{"T":"Foreign%20province%2Fstate%2Fcounty%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"x":69.737,"y":10.186,"w":9.742,"clr":0,"A":"left","R":[{"T":"Foreign%20postal%20code%20%20%20","S":-1,"TS":[0,9.3,0,0]}]},{"x":81.726,"y":8.722,"w":14.937000000000001,"clr":0,"A":"left","R":[{"T":"Presidential%20Election%20Campaign","S":-1,"TS":[0,9.3,0,0]}]},{"x":80.531,"y":9.408,"w":18.502000000000006,"clr":0,"A":"left","R":[{"T":"Check%20here%20if%20you%2C%20or%20your%20spouse%20if%20filing%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":80.531,"y":9.908,"w":19.69,"clr":0,"A":"left","R":[{"T":"jointly%2C%20want%20%243%20to%20go%20to%20this%20fund.%20Checking%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":80.531,"y":10.408,"w":17.814000000000004,"clr":0,"A":"left","R":[{"T":"a%20box%20below%20will%20not%20change%20your%20tax%20or%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":80.531,"y":10.908,"w":3.4270000000000005,"clr":0,"A":"left","R":[{"T":"refund.%20","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":89.92,"y":11.012,"w":2.149,"clr":0,"A":"left","R":[{"T":"You%20","S":-1,"TS":[0,9.3,0,0]}]},{"x":94.727,"y":11.012,"w":3.575,"clr":0,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.09,0,0]}]},{"x":5.937,"y":12.139,"w":6.183999999999999,"clr":0,"A":"left","R":[{"T":"Filing%20Status%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.937,"y":13.311,"w":7.224,"clr":0,"A":"left","R":[{"T":"Check%20only%20one%20","S":-1,"TS":[0,11,0,0]}]},{"x":5.937,"y":13.911,"w":2.241,"clr":0,"A":"left","R":[{"T":"box.%20","S":-1,"TS":[0,11,0,0]}]},{"x":20.023,"y":11.857,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":11.857,"w":3.037,"clr":0,"A":"left","R":[{"T":"Single%20","S":-1,"TS":[0,11,0,0]}]},{"x":20.023,"y":12.607,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":12.607,"w":22.281000000000002,"clr":0,"A":"left","R":[{"T":"Married%20filing%20jointly%20(even%20if%20only%20one%20had%20income)%20","S":-1,"TS":[0,11,0,0]}]},{"x":20.023,"y":13.357,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":13.357,"w":23.501999999999995,"clr":0,"A":"left","R":[{"T":"Married%20filing%20separately.%20Enter%20spouse%E2%80%99s%20SSN%20above%20","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":13.982,"w":8.818000000000001,"clr":0,"A":"left","R":[{"T":"and%20full%20name%20here.%20","S":-1,"TS":[0,11,0,0]}]},{"x":36.625,"y":13.919,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":59.623,"y":11.857,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11,0,0]}]},{"x":64.1,"y":11.878,"w":28.706,"clr":0,"A":"left","R":[{"T":"Head%20of%20household%20(with%20qualifying%20person).%20(See%20instructions.)%20If%20","S":-1,"TS":[0,9.8,0,0]}]},{"x":64.1,"y":12.566,"w":29.342000000000002,"clr":0,"A":"left","R":[{"T":"the%20qualifying%20person%20is%20a%20child%20but%20not%20your%20dependent%2C%20enter%20this%20","S":-1,"TS":[0,9.8,0,0]}]},{"x":64.1,"y":13.254,"w":8.744,"clr":0,"A":"left","R":[{"T":"child%E2%80%99s%20name%20here.%20%20","S":-1,"TS":[0,9.8,0,0]}]},{"x":74.319,"y":13.191,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":59.623,"y":13.982,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11,0,0]}]},{"x":64.1,"y":13.991,"w":18.926000000000005,"clr":0,"A":"left","R":[{"T":"Qualifying%20widow(er)%20with%20dependent%20child%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.937,"y":15.134,"w":5.904999999999999,"clr":0,"A":"left","R":[{"T":"Exemptions%20","S":-1,"TS":[0,13,0,0]}]},{"x":20.023,"y":14.857,"w":0.556,"clr":0,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11,0,0]}]},{"x":20.788,"y":14.857,"w":0.5740000000000001,"clr":0,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":25.738,"y":14.857,"w":4.518000000000001,"clr":0,"A":"left","R":[{"T":"Yourself.%20","S":-1,"TS":[0,11,0,0]}]},{"x":31.950000000000003,"y":14.857,"w":18.932000000000002,"clr":0,"A":"left","R":[{"T":"If%20someone%20can%20claim%20you%20as%20a%20dependent%2C","S":-1,"TS":[0,11,0,0]}]},{"x":57.981,"y":14.857,"w":3.612,"clr":0,"A":"left","R":[{"T":"%20do%20not%20","S":-1,"TS":[0,11,0,0]}]},{"x":62.948,"y":14.857,"w":6.298,"clr":0,"A":"left","R":[{"T":"check%20box%206a%20","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":14.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":14.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":14.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":78.125,"y":14.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.188,"y":14.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.787,"y":15.607,"w":0.889,"clr":0,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"x":25.738,"y":15.607,"w":4.131,"clr":0,"A":"left","R":[{"T":"Spouse%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":32.75,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":34.813,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":36.875,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":38.938,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":41,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":43.063,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":45.125,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":78.125,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.188,"y":15.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":81.425,"y":15.314,"w":0.48,"clr":0,"A":"left","R":[{"T":"%7D","S":-1,"TS":[0,15,0,0]}]},{"x":20.788,"y":16.357,"w":0.5740000000000001,"clr":0,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":16.344,"w":6.594000000000001,"clr":0,"A":"left","R":[{"T":"Dependents%3A%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":18.313,"y":17.062,"w":1.312,"clr":0,"A":"left","R":[{"T":"(1)%20","S":2,"TS":[0,10,0,0]}]},{"x":19.891,"y":17.062,"w":4.4030000000000005,"clr":0,"A":"left","R":[{"T":"%20First%20name%20","S":2,"TS":[0,10,0,0]}]},{"x":32.118,"y":17.062,"w":4.106999999999999,"clr":0,"A":"left","R":[{"T":"Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"x":44.268,"y":16.331,"w":1.312,"clr":0,"A":"left","R":[{"T":"(2)%20","S":2,"TS":[0,10,0,0]}]},{"x":45.846,"y":16.331,"w":4.646,"clr":0,"A":"left","R":[{"T":"Dependent%E2%80%99s","S":2,"TS":[0,10,0,0]}]},{"x":42.82,"y":16.856,"w":8.605,"clr":0,"A":"left","R":[{"T":"social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"x":57.047,"y":16.331,"w":1.072,"clr":0,"A":"left","R":[{"T":"(3)","S":2,"TS":[0,10,0,0]}]},{"x":58.336,"y":16.331,"w":5.126000000000001,"clr":0,"A":"left","R":[{"T":"%20Dependent%E2%80%99s%20","S":2,"TS":[0,10,0,0]}]},{"x":56.402,"y":16.856,"w":5.478000000000001,"clr":0,"A":"left","R":[{"T":"relationship%20to%20","S":2,"TS":[0,10,0,0]}]},{"x":63.281,"y":16.856,"w":1.5530000000000002,"clr":0,"A":"left","R":[{"T":"you%20","S":2,"TS":[0,10,0,0]}]},{"x":67.558,"y":16.2,"w":1.552,"clr":0,"A":"left","R":[{"T":"(4)%20%20","S":2,"TS":[0,10,0,0]}]},{"x":69.425,"y":16.2,"w":0.755,"clr":0,"A":"left","R":[{"T":"%E2%9C%93","S":43,"TS":[2,10,0,0]}]},{"x":70.622,"y":16.2,"w":7.863000000000001,"clr":0,"A":"left","R":[{"T":"if%20child%20under%20age%2017%20","S":2,"TS":[0,10,0,0]}]},{"x":67.364,"y":16.637,"w":10.733000000000002,"clr":0,"A":"left","R":[{"T":"qualifying%20for%20child%20tax%20credit%20","S":2,"TS":[0,10,0,0]}]},{"x":69.879,"y":17.075,"w":6.552,"clr":0,"A":"left","R":[{"T":"(see%20instructions)%20","S":2,"TS":[0,10,0,0]}]},{"x":5.937,"y":18.324,"w":7.965000000000002,"clr":0,"A":"left","R":[{"T":"If%20more%20than%20four%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":5.937,"y":18.924,"w":8.003000000000002,"clr":0,"A":"left","R":[{"T":"dependents%2C%20see%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":5.937,"y":19.524,"w":7.428000000000001,"clr":0,"A":"left","R":[{"T":"instructions%20and%20","S":-1,"TS":[0,11,0,0]}]},{"x":5.937,"y":20.144,"w":5.4830000000000005,"clr":0,"A":"left","R":[{"T":"check%20here%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":13.476,"y":20.05,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":20.788,"y":20.794,"w":0.889,"clr":0,"A":"left","R":[{"T":"d%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":20.794,"w":16.616,"clr":0,"A":"left","R":[{"T":"Total%20number%20of%20exemptions%20claimed%20","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":78.125,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.188,"y":20.794,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":83.9,"y":14.731,"w":7.593,"clr":0,"A":"left","R":[{"T":"Boxes%20checked%20","S":2,"TS":[0,10,0,0]}]},{"x":83.9,"y":15.169,"w":6.1129999999999995,"clr":0,"A":"left","R":[{"T":"on%206a%20and%206b","S":2,"TS":[0,10,0,0]}]},{"x":83.9,"y":15.762,"w":7.536000000000001,"clr":0,"A":"left","R":[{"T":"No.%20of%20children%20%20","S":2,"TS":[0,10,0,0]}]},{"x":83.9,"y":16.2,"w":5.464,"clr":0,"A":"left","R":[{"T":"on%206c%20who%3A%20","S":2,"TS":[0,10,0,0]}]},{"x":83.9,"y":16.637,"w":0.778,"clr":0,"A":"left","R":[{"T":"%E2%80%A2%20","S":2,"TS":[0,10,0,0]}]},{"x":84.836,"y":16.637,"w":6.795,"clr":0,"A":"left","R":[{"T":"lived%20with%20you%20","S":2,"TS":[0,10,0,0]}]},{"x":83.9,"y":17.143,"w":0.778,"clr":0,"A":"left","R":[{"T":"%E2%80%A2%20","S":-1,"TS":[0,9.5,0,0]}]},{"x":84.769,"y":17.143,"w":7.775,"clr":0,"A":"left","R":[{"T":"did%20not%20live%20with%20","S":-1,"TS":[0,9.5,0,0]}]},{"x":83.9,"y":17.549,"w":9.113,"clr":0,"A":"left","R":[{"T":"you%20due%20to%20divorce%20","S":-1,"TS":[0,9.5,0,0]}]},{"x":83.9,"y":17.956,"w":6.351,"clr":0,"A":"left","R":[{"T":"or%20separation","S":-1,"TS":[0,9.5,0,0]}]},{"x":83.9,"y":18.362,"w":8.202,"clr":0,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,9.5,0,0]}]},{"x":83.9,"y":19.059,"w":8.928,"clr":0,"A":"left","R":[{"T":"Dependents%20on%206c%20","S":-1,"TS":[0,9.5,0,0]}]},{"x":83.9,"y":19.465,"w":8.947,"clr":0,"A":"left","R":[{"T":"not%20entered%20above%20","S":-1,"TS":[0,9.5,0,0]}]},{"x":83.9,"y":20.337,"w":8.426,"clr":0,"A":"left","R":[{"T":"Add%20numbers%20on%20%20","S":2,"TS":[0,10,0,0]}]},{"x":83.9,"y":20.809,"w":5.944000000000001,"clr":0,"A":"left","R":[{"T":"lines%20above%20%20","S":2,"TS":[0,10,0,0]}]},{"x":91.051,"y":20.746,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":5.938,"y":21.91,"w":3.831,"clr":0,"A":"left","R":[{"T":"Income%20","S":-1,"TS":[0,15,0,0]}]},{"x":5.937,"y":23.606,"w":7.5920000000000005,"clr":0,"A":"left","R":[{"T":"Attach%20Form(s)%20%20","S":-1,"TS":[0,10.8,0,0]}]},{"x":5.937,"y":24.191,"w":7.518000000000001,"clr":0,"A":"left","R":[{"T":"W-2%20here.%20Also%20%20","S":-1,"TS":[0,10.8,0,0]}]},{"x":5.937,"y":24.776,"w":6.889000000000001,"clr":0,"A":"left","R":[{"T":"attach%20Forms%20%20","S":-1,"TS":[0,10.8,0,0]}]},{"x":5.937,"y":25.361,"w":5.556000000000001,"clr":0,"A":"left","R":[{"T":"W-2G%20and%20%20%20","S":-1,"TS":[0,10.8,0,0]}]},{"x":5.937,"y":25.946,"w":6.519,"clr":0,"A":"left","R":[{"T":"1099-R%20if%20tax%20%20","S":-1,"TS":[0,10.8,0,0]}]},{"x":5.937,"y":26.531,"w":6.812000000000001,"clr":0,"A":"left","R":[{"T":"was%20withheld.%20","S":-1,"TS":[0,10.8,0,0]}]},{"x":5.937,"y":28.112,"w":6.428000000000001,"clr":0,"A":"left","R":[{"T":"If%20you%20did%20not%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":5.937,"y":28.712,"w":5.5020000000000024,"clr":0,"A":"left","R":[{"T":"get%20a%20W-2%2C%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":5.937,"y":29.312,"w":7.594000000000001,"clr":0,"A":"left","R":[{"T":"see%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"x":20.023,"y":21.607,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.262,"y":21.607,"w":20.670000000000005,"clr":0,"A":"left","R":[{"T":"Wages%2C%20salaries%2C%20tips%2C%20etc.%20Attach%20Form(s)%20W-2%20","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":21.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.437,"y":21.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":21.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.562,"y":21.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":21.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.687,"y":21.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":21.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.812,"y":21.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":21.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.937,"y":21.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":21.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.062,"y":21.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.424,"y":21.607,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11,0,0]}]},{"x":20.023,"y":22.357,"w":0.556,"clr":0,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11,0,0]}]},{"x":20.788,"y":22.357,"w":0.5740000000000001,"clr":0,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":22.357,"w":4.0169999999999995,"clr":0,"A":"left","R":[{"T":"Taxable%20","S":-1,"TS":[0,11,0,0]}]},{"x":28.786,"y":22.357,"w":17.262,"clr":0,"A":"left","R":[{"T":"interest.%20Attach%20Schedule%20B%20if%20required%20","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.029,"y":22.357,"w":1.4080000000000001,"clr":0,"A":"left","R":[{"T":"8a%20","S":-1,"TS":[0,11,0,0]}]},{"x":20.788,"y":23.107,"w":0.889,"clr":0,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":23.107,"w":5.961,"clr":0,"A":"left","R":[{"T":"Tax-exempt%20","S":-1,"TS":[0,11,0,0]}]},{"x":31.459,"y":23.107,"w":3.871,"clr":0,"A":"left","R":[{"T":"interest.%20","S":-1,"TS":[0,11,0,0]}]},{"x":36.782,"y":23.107,"w":3.4639999999999995,"clr":0,"A":"left","R":[{"T":"Do%20not%20","S":-1,"TS":[0,11,0,0]}]},{"x":41.544,"y":23.107,"w":8.095000000000002,"clr":0,"A":"left","R":[{"T":"include%20on%20line%208a%20","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":23.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":23.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":23.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.204,"y":23.107,"w":1.445,"clr":0,"A":"left","R":[{"T":"8b%20","S":-1,"TS":[0,11,0,0]}]},{"x":20.023,"y":23.857,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11,0,0]}]},{"x":20.788,"y":23.857,"w":0.5740000000000001,"clr":0,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":23.857,"w":22.374999999999996,"clr":0,"A":"left","R":[{"T":"Ordinary%20dividends.%20Attach%20Schedule%20B%20if%20required%20","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":23.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":23.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":23.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":23.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":23.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":23.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":23.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":23.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":23.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":23.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":23.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.029,"y":23.857,"w":1.4080000000000001,"clr":0,"A":"left","R":[{"T":"9a%20","S":-1,"TS":[0,11,0,0]}]},{"x":20.788,"y":24.607,"w":0.889,"clr":0,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":24.607,"w":8.817000000000002,"clr":0,"A":"left","R":[{"T":"Qualified%20dividends%20","S":-1,"TS":[0,11,0,0]}]},{"x":36.875,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":38.938,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":41,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":43.063,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":45.125,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.204,"y":24.607,"w":1.445,"clr":0,"A":"left","R":[{"T":"9b%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":25.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":25.357,"w":30.003,"clr":0,"A":"left","R":[{"T":"Taxable%20refunds%2C%20credits%2C%20or%20offsets%20of%20state%20and%20local%20income%20taxes%20","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":25.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":25.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":25.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":25.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":25.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":25.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":25.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":26.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":26.107,"w":7.927,"clr":0,"A":"left","R":[{"T":"Alimony%20received%20","S":-1,"TS":[0,11,0,0]}]},{"x":34.813,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":36.875,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":38.938,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":41,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":43.063,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":45.125,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":26.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":26.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":26.857,"w":24.392000000000003,"clr":0,"A":"left","R":[{"T":"Business%20income%20or%20(loss).%20Attach%20Schedule%20C%20or%20C-EZ%20","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":26.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":26.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":26.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":26.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":26.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":26.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":26.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":26.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":26.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":26.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":26.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":27.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":27.607,"w":35.634999999999984,"clr":0,"A":"left","R":[{"T":"Capital%20gain%20or%20(loss).%20Attach%20Schedule%20D%20if%20required.%20If%20not%20required%2C%20check%20here%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":72.26,"y":27.513,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":80.042,"y":27.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":28.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":28.357,"w":18.838000000000008,"clr":0,"A":"left","R":[{"T":"Other%20gains%20or%20(losses).%20Attach%20Form%204797%20","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":28.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":29.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"15%20","S":-1,"TS":[0,11,0,0]}]},{"x":20.788,"y":29.107,"w":0.5740000000000001,"clr":0,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":29.107,"w":7.649000000000001,"clr":0,"A":"left","R":[{"T":"IRA%20distributions%20","S":-1,"TS":[0,11,0,0]}]},{"x":34.813,"y":29.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":38.81,"y":29.107,"w":1.9640000000000002,"clr":0,"A":"left","R":[{"T":"15a%20","S":-1,"TS":[0,11,0,0]}]},{"x":59.15,"y":29.107,"w":1.167,"clr":0,"A":"left","R":[{"T":"b%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":60.755,"y":29.107,"w":7.465,"clr":0,"A":"left","R":[{"T":"Taxable%20amount%20","S":-1,"TS":[0,10.36,0,0]}]},{"x":71.937,"y":29.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":73.999,"y":29.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":76.061,"y":29.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":79.622,"y":29.107,"w":2.0010000000000003,"clr":0,"A":"left","R":[{"T":"15b%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":29.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"16%20","S":-1,"TS":[0,11,0,0]}]},{"x":20.788,"y":29.857,"w":0.5740000000000001,"clr":0,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":23.262,"y":29.857,"w":10.614,"clr":0,"A":"left","R":[{"T":"Pensions%20and%20annuities%20","S":-1,"TS":[0,10.6,0,0]}]},{"x":38.81,"y":29.857,"w":1.9640000000000002,"clr":0,"A":"left","R":[{"T":"16a%20","S":-1,"TS":[0,11,0,0]}]},{"x":59.15,"y":29.857,"w":1.167,"clr":0,"A":"left","R":[{"T":"b%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":60.755,"y":29.857,"w":7.465,"clr":0,"A":"left","R":[{"T":"Taxable%20amount%20","S":-1,"TS":[0,10.36,0,0]}]},{"x":71.937,"y":29.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":73.999,"y":29.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":76.061,"y":29.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":79.622,"y":29.857,"w":2.0010000000000003,"clr":0,"A":"left","R":[{"T":"16b%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":30.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"17%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":30.607,"w":39.44999999999998,"clr":0,"A":"left","R":[{"T":"Rental%20real%20estate%2C%20royalties%2C%20partnerships%2C%20S%20corporations%2C%20trusts%2C%20etc.%20Attach%20Schedule%20E%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#211f1f","x":80.042,"y":30.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":31.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"18%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":31.357,"w":18.689000000000007,"clr":0,"A":"left","R":[{"T":"Farm%20income%20or%20(loss).%20Attach%20Schedule%20F%20","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":31.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":31.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":31.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":31.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":31.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":31.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":31.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":31.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":31.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":31.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":31.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":31.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":31.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":31.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":31.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"18%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":32.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"19%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":32.107,"w":13.450000000000003,"clr":0,"A":"left","R":[{"T":"Unemployment%20compensation","S":-1,"TS":[0,11,0,0]}]},{"x":43.063,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":45.125,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":32.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":32.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"19%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":32.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"20%20","S":-1,"TS":[0,11,0,0]}]},{"x":20.788,"y":32.857,"w":0.5740000000000001,"clr":0,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":23.262,"y":32.857,"w":10.63,"clr":0,"A":"left","R":[{"T":"Social%20security%20benefits%20","S":-1,"TS":[0,10.6,0,0]}]},{"x":38.81,"y":32.857,"w":1.9640000000000002,"clr":0,"A":"left","R":[{"T":"20a%20","S":-1,"TS":[0,11,0,0]}]},{"x":59.15,"y":32.857,"w":1.167,"clr":0,"A":"left","R":[{"T":"b%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":60.755,"y":32.857,"w":7.465,"clr":0,"A":"left","R":[{"T":"Taxable%20amount%20","S":-1,"TS":[0,10.36,0,0]}]},{"x":71.937,"y":32.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":73.999,"y":32.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":76.061,"y":32.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":79.622,"y":32.857,"w":2.0010000000000003,"clr":0,"A":"left","R":[{"T":"20b%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":33.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":33.607,"w":16.341000000000005,"clr":0,"A":"left","R":[{"T":"Other%20income.%20List%20type%20and%20amount%20","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":33.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":34.294,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":34.294,"w":35.641000000000005,"clr":0,"A":"left","R":[{"T":"Combine%20the%20amounts%20in%20the%20far%20right%20column%20for%20lines%207%20through%2021.%20This%20is%20your%20","S":-1,"TS":[0,10.2,0,0]}]},{"x":67.366,"y":34.294,"w":6.218999999999999,"clr":0,"A":"left","R":[{"T":"total%20income%20","S":-1,"TS":[0,10.2,0,0]}]},{"x":75.406,"y":34.201,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":80.042,"y":34.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,11,0,0]}]},{"x":5.937,"y":35.675,"w":4.797000000000001,"clr":0,"A":"left","R":[{"T":"Adjusted%20%20","S":-1,"TS":[0,15,0,0]}]},{"x":5.937,"y":36.425,"w":3.3890000000000002,"clr":0,"A":"left","R":[{"T":"Gross%20%20","S":-1,"TS":[0,15,0,0]}]},{"x":5.937,"y":37.175,"w":3.831,"clr":0,"A":"left","R":[{"T":"Income%20","S":-1,"TS":[0,15,0,0]}]},{"x":19.259,"y":35.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":35.107,"w":8.612,"clr":0,"A":"left","R":[{"T":"Educator%20expenses","S":-1,"TS":[0,11,0,0]}]},{"x":37.715,"y":35.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":39.778,"y":35.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":41.84,"y":35.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":43.903,"y":35.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":45.965,"y":35.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":48.028,"y":35.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":50.09,"y":35.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":52.153,"y":35.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":54.215,"y":35.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":56.278,"y":35.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":35.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":35.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"24%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.262,"y":35.888,"w":3.5,"clr":0,"A":"left","R":[{"T":"Certain%20","S":-1,"TS":[0,10.04,0,0]}]},{"x":27.548,"y":35.888,"w":4.242,"clr":0,"A":"left","R":[{"T":"business%20","S":-1,"TS":[0,10.04,0,0]}]},{"x":32.732,"y":35.888,"w":4.556000000000001,"clr":0,"A":"left","R":[{"T":"expenses%20","S":-1,"TS":[0,10.04,0,0]}]},{"x":38.296,"y":35.888,"w":1.1480000000000001,"clr":0,"A":"left","R":[{"T":"of%20","S":-1,"TS":[0,10.04,0,0]}]},{"x":39.735,"y":35.888,"w":4.833,"clr":0,"A":"left","R":[{"T":"reservists%2C%20","S":-1,"TS":[0,10.04,0,0]}]},{"x":45.634,"y":35.888,"w":5.149000000000001,"clr":0,"A":"left","R":[{"T":"performing%20","S":-1,"TS":[0,10.04,0,0]}]},{"x":51.915,"y":35.888,"w":3.278,"clr":0,"A":"left","R":[{"T":"artists%2C%20","S":-1,"TS":[0,10.04,0,0]}]},{"x":55.932,"y":35.888,"w":1.964,"clr":0,"A":"left","R":[{"T":"and%20","S":-1,"TS":[0,10.04,0,0]}]},{"x":23.261,"y":36.576,"w":27.56200000000001,"clr":0,"A":"left","R":[{"T":"fee-basis%20government%20officials.%20Attach%20Form%202106%20or%202106-EZ%20","S":-1,"TS":[0,10.04,0,0]}]},{"x":60.242,"y":36.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"24%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":37.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"25%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":37.357,"w":24.063000000000006,"clr":0,"A":"left","R":[{"T":"Health%20savings%20account%20deduction.%20Attach%20Form%208889%20","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":37.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":37.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"25%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":38.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"26%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":38.107,"w":16.709000000000003,"clr":0,"A":"left","R":[{"T":"Moving%20expenses.%20Attach%20Form%203903%20","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":38.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":38.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":38.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":38.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":38.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":38.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":38.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"26%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":38.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"27%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":38.857,"w":27.173,"clr":0,"A":"left","R":[{"T":"Deductible%20part%20of%20self-employment%20tax.%20Attach%20Schedule%20SE%20","S":-1,"TS":[0,10.2,0,0]}]},{"x":57.5,"y":38.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.2,0,0]}]},{"x":60.242,"y":38.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"27%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":39.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"28%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":39.607,"w":22.097,"clr":0,"A":"left","R":[{"T":"Self-employed%20SEP%2C%20SIMPLE%2C%20and%20qualified%20plans%20","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":39.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":39.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":39.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"28%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":40.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"29%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":40.357,"w":19.15300000000001,"clr":0,"A":"left","R":[{"T":"Self-employed%20health%20insurance%20deduction%20","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":40.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":40.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":40.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":40.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":40.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"29%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":41.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"30%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":41.107,"w":17.332,"clr":0,"A":"left","R":[{"T":"Penalty%20on%20early%20withdrawal%20of%20savings%20","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":41.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":41.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":41.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":41.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":41.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":41.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":41.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"30%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":41.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"31%20","S":-1,"TS":[0,11,0,0]}]},{"x":20.788,"y":41.857,"w":0.5740000000000001,"clr":0,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":41.857,"w":6.0760000000000005,"clr":0,"A":"left","R":[{"T":"Alimony%20paid%20","S":-1,"TS":[0,10.2,0,0]}]},{"x":31.924999999999997,"y":41.857,"w":1.167,"clr":0,"A":"left","R":[{"T":"b%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":33.53,"y":41.857,"w":7.555999999999999,"clr":0,"A":"left","R":[{"T":"Recipient%E2%80%99s%20SSN%20","S":-1,"TS":[0,11,0,0]}]},{"x":44.253,"y":41.763,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":59.847,"y":41.857,"w":1.9640000000000002,"clr":0,"A":"left","R":[{"T":"31a%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":42.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"32%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":42.607,"w":6.631,"clr":0,"A":"left","R":[{"T":"IRA%20deduction%20","S":-1,"TS":[0,11,0,0]}]},{"x":32.75,"y":42.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":34.813,"y":42.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":36.875,"y":42.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":38.938,"y":42.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":41,"y":42.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":43.063,"y":42.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":45.125,"y":42.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":42.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":42.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":42.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":42.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":42.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":42.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":42.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"32%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":43.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"33%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":43.357,"w":14.319000000000004,"clr":0,"A":"left","R":[{"T":"Student%20loan%20interest%20deduction%20","S":-1,"TS":[0,11,0,0]}]},{"x":43.063,"y":43.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":45.125,"y":43.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":43.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":43.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":43.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":43.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":43.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":43.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":43.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"33%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":44.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"34%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":44.107,"w":15.709000000000007,"clr":0,"A":"left","R":[{"T":"Tuition%20and%20fees.%20Attach%20Form%208917","S":-1,"TS":[0,11,0,0]}]},{"x":45.125,"y":44.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":44.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":44.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":44.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":44.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":44.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":44.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":44.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"34%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":44.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"35%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.262,"y":44.857,"w":27.175000000000004,"clr":0,"A":"left","R":[{"T":"Domestic%20production%20activities%20deduction.%20Attach%20Form%208903%20","S":-1,"TS":[0,10.36,0,0]}]},{"x":60.242,"y":44.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"35%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":45.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"36%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":45.607,"w":10.949,"clr":0,"A":"left","R":[{"T":"Add%20lines%2023%20through%2035%20","S":-1,"TS":[0,11,0,0]}]},{"x":38.938,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":41,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":43.063,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":45.125,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":45.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":45.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"36%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.259,"y":46.294,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"37%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.263,"y":46.294,"w":18.505000000000006,"clr":0,"A":"left","R":[{"T":"Subtract%20line%2036%20from%20line%2022.%20This%20is%20your%20","S":-1,"TS":[0,11,0,0]}]},{"x":48.707,"y":46.294,"w":11.165,"clr":0,"A":"left","R":[{"T":"adjusted%20gross%20income%20","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":46.294,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":46.294,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":46.294,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":46.294,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":46.294,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.138,"y":46.201,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":80.042,"y":46.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"37%20","S":-1,"TS":[0,11,0,0]}]},{"x":5.937,"y":47.107,"w":44.053999999999974,"clr":0,"A":"left","R":[{"T":"For%20Disclosure%2C%20Privacy%20Act%2C%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"x":71.995,"y":47.125,"w":7.725000000000001,"clr":0,"A":"left","R":[{"T":"Cat.%20No.%2011320B%20","S":2,"TS":[0,10,0,0]}]},{"x":87.339,"y":47.071,"w":2.89,"clr":0,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"x":90.816,"y":47.071,"w":2.5020000000000002,"clr":0,"A":"left","R":[{"T":"1040%20","S":-1,"TS":[0,13,0,0]}]},{"x":95.117,"y":47.071,"w":3.298,"clr":0,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":67.761,"y":8.644,"w":2.352,"clr":0,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"x":73.949,"y":8.644,"w":1.518,"clr":0,"A":"left","R":[{"T":"ZIP","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INJUR","EN":0},"TI":476,"AM":0,"x":6.143,"y":0.53,"w":16.348,"h":0.833,"TU":"Injured spouse text"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DECE","EN":0},"TI":477,"AM":0,"x":24.485,"y":0.558,"w":25.033,"h":0.833,"TU":"Deceased date"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FY","EN":0},"TI":478,"AM":0,"x":38.79,"y":3.75,"w":15.66,"h":0.833,"TU":"Page 1. For the year January 1 through December 31, 2013, or other tax year beginning (enter date), 2013, ending (date), 20(two digit year).","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYE","EN":0},"TI":479,"AM":0,"x":62.096,"y":3.73,"w":6.601,"h":0.833,"TU":"Page 1. For the year January 1 through December 31, 2013, or other tax year beginning (enter ","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYEYR","EN":0},"TI":480,"AM":0,"x":71.362,"y":3.75,"w":9.075,"h":0.833,"MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":481,"AM":0,"x":6.188,"y":5.148,"w":24.724,"h":0.852,"TU":"Your first name and initial."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MI","EN":0},"TI":482,"AM":0,"x":31.944,"y":5.234,"w":5.119,"h":0.833,"TU":"Taxpayer middle initial"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAM","EN":0},"TI":483,"AM":0,"x":37.125,"y":5.148,"w":43.313,"h":0.852,"TU":"Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":484,"AM":0,"x":80.438,"y":5.153,"w":18.563,"h":0.847,"TU":"Your social security number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SNAM","EN":0},"TI":485,"AM":0,"x":6.188,"y":6.624,"w":24.948,"h":0.876,"TU":"If a joint return, spouse's first name and initial."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SMI","EN":0},"TI":486,"AM":0,"x":32.029,"y":6.677,"w":4.894,"h":0.833,"TU":"Spouse middle initial"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SLNM","EN":0},"TI":487,"AM":0,"x":37.125,"y":6.624,"w":43.313,"h":0.876,"TU":"Spouse's Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":488,"AM":0,"x":80.438,"y":6.601,"w":18.563,"h":0.875,"TU":"Spouse's social Security Number. 9 digits."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":489,"AM":0,"x":6.188,"y":8.125,"w":65.588,"h":0.875,"TU":"Home address (number and street). If you have a Post Office Box, see instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":490,"AM":0,"x":71.775,"y":8.125,"w":8.662,"h":0.875,"TU":"Apartment number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":491,"AM":0,"x":6.188,"y":9.599,"w":60.1,"h":0.901,"TU":"City, town or post office, state, and ZIP code. If you have a foreign address, also complete spaces below (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":492,"AM":0,"x":66.988,"y":9.567,"w":4.516,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":493,"AM":0,"x":72.407,"y":9.57,"w":7.881,"h":0.857},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":494,"AM":0,"x":6.433,"y":11.016,"w":36.556,"h":0.857,"PL":{"V":[null,"Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPC","EN":0},"TI":495,"AM":0,"x":44.55,"y":11.184,"w":24.75,"h":0.833,"TU":"Foreign province or state or county. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":496,"AM":0,"x":69.3,"y":11.184,"w":11.138,"h":0.833,"TU":"Foreign postal code. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAM","EN":0},"TI":503,"AM":0,"x":76.531,"y":13.585,"w":7.957,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXT3","EN":0},"TI":504,"AM":1024,"x":85.355,"y":13.654,"w":5.412,"h":0.833,"TU":"Firm's Name","V":"and SSN"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN","EN":0},"TI":505,"AM":0,"x":91.175,"y":13.639,"w":7.858,"h":0.833,"TU":"Child SSN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXT1","EN":0},"TI":506,"AM":1024,"x":38.172,"y":14.369,"w":2.342,"h":0.833,"V":"First"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNM","EN":0},"TI":507,"AM":0,"x":40.865,"y":14.383,"w":7.882,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXT2","EN":0},"TI":508,"AM":1024,"x":48.987,"y":14.409,"w":2.642,"h":0.833,"V":"Last"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLMN","EN":0},"TI":509,"AM":0,"x":51.874,"y":14.427,"w":7.957,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXT4","EN":0},"TI":513,"AM":1024,"x":31.321,"y":15.894,"w":2.866,"h":0.833,"V":"First"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNR","EN":0},"TI":514,"AM":0,"x":34.501,"y":15.858,"w":7.882,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXT5","EN":0},"TI":515,"AM":1024,"x":43.525,"y":15.867,"w":2.642,"h":0.833,"V":"Last"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNR","EN":0},"TI":516,"AM":0,"x":46.783,"y":15.821,"w":7.957,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6AB","EN":0},"TI":517,"AM":0,"x":95.287,"y":15.375,"w":3.713,"h":0.833,"TU":"Line 6d. Total number of exemptions claimed. Boxes checked on 6a and 6b."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C1","EN":0},"TI":518,"AM":0,"x":95.287,"y":16.75,"w":3.713,"h":0.833,"TU":"Line 6d. Number of children on 6 c who: Lived with you."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C1_1_","EN":0},"TI":519,"AM":0,"x":18.563,"y":18,"w":10.781,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C2_1_","EN":0},"TI":520,"AM":0,"x":29.69,"y":18.021,"w":10.781,"h":0.833,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C3_1_","EN":0},"TI":521,"AM":0,"x":40.868,"y":18,"w":14.467,"h":0.833,"TU":"Line 6. c. Dependent 1. (2) Dependent's Social Security Number. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C4_1_","EN":0},"TI":522,"AM":0,"x":55.441,"y":18.05,"w":10.334,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C1_2_","EN":0},"TI":524,"AM":0,"x":18.563,"y":18.722,"w":10.789,"h":0.833,"TU":"Line 6. c. Dependent 2. (1)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C2_2_","EN":0},"TI":525,"AM":0,"x":29.69,"y":18.744,"w":10.789,"h":0.833,"TU":"Line 6. c. Dependent 2. (1)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C3_2_","EN":0},"TI":526,"AM":0,"x":40.868,"y":18.722,"w":14.467,"h":0.833,"TU":"Line 6. c. Dependent 2. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C4_2_","EN":0},"TI":527,"AM":0,"x":55.454,"y":18.838,"w":10.334,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C2","EN":0},"TI":529,"AM":0,"x":95.287,"y":18.5,"w":3.713,"h":0.833,"TU":"Line 6d. Number of children on 6 c who: Did not live with you due to divorce or separation (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C1_3_","EN":0},"TI":530,"AM":0,"x":18.457,"y":19.472,"w":10.897,"h":0.833,"TU":"Line 6. c. Dependent 3. (1)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C2_3_","EN":0},"TI":531,"AM":0,"x":29.585,"y":19.494,"w":10.897,"h":0.833,"TU":"Line 6. c. Dependent 3. (1)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C3_3_","EN":0},"TI":532,"AM":0,"x":40.868,"y":19.472,"w":14.467,"h":0.833,"TU":"Line 6. c. Dependent 3."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C4_3_","EN":0},"TI":533,"AM":0,"x":55.664,"y":19.583,"w":10.334,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C3","EN":0},"TI":535,"AM":0,"x":95.287,"y":19.5,"w":3.713,"h":0.833,"TU":"Line 6d. Dependents on 6 c not entered above."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C1_4_","EN":0},"TI":537,"AM":0,"x":18.563,"y":20.222,"w":10.751,"h":0.833,"TU":"Line 6. c. Dependent 4. (1)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C2_4_","EN":0},"TI":538,"AM":0,"x":29.69,"y":20.243,"w":10.751,"h":0.833,"TU":"Line 6. c. Dependent 4. (1)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C3_4_","EN":0},"TI":539,"AM":0,"x":40.868,"y":20.222,"w":14.467,"h":0.833,"TU":"Line 6. c. Dependent 4."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C4_4_","EN":0},"TI":540,"AM":0,"x":55.436,"y":20.296,"w":10.334,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6E","EN":0},"TI":542,"AM":0,"x":95.287,"y":20.521,"w":3.713,"h":1.042,"TU":"Line 6d. Add numbers on lines above."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7W","EN":0},"TI":543,"AM":0,"x":58.149,"y":21.856,"w":10.704,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7WAMT","EN":0},"TI":544,"AM":0,"x":69.505,"y":21.818,"w":9.203,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":545,"AM":0,"x":82.912,"y":21.75,"w":12.375,"h":0.833,"TU":"Income. Attach Form(s) W-2 here. Also attach Forms W-2G and 1099-R if tax was withheld. If you did not \rget a W-2, see instructions. Enclose, but do not attach, any payment. Also, please use Form 1040-V. Line 7. Wages, salaries, tips, etcetera. Attach Form(s) W-2. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":546,"AM":0,"x":82.912,"y":22.5,"w":12.375,"h":0.833,"TU":"Line 8. a. Taxable interest. Attach Schedule B if required. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":547,"AM":0,"x":63.112,"y":23.25,"w":12.375,"h":0.833,"TU":"Line 8. b. Tax-exempt interest. Do not include on line 8 a. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"F8814T1","EN":0},"TI":548,"AM":0,"x":58.224,"y":24.081,"w":10.779,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8814A","EN":0},"TI":549,"AM":0,"x":69.58,"y":24.077,"w":9.053,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":550,"AM":0,"x":82.912,"y":24,"w":12.375,"h":0.833,"TU":"Line 9. a. Ordinary dividends. Attach Schedule B if required. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"F8814T2","EN":0},"TI":551,"AM":0,"x":36.887,"y":24.793,"w":10.779,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8814A2","EN":0},"TI":552,"AM":0,"x":48.243,"y":24.789,"w":9.053,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALDIVS","EN":0},"TI":553,"AM":0,"x":63.112,"y":24.75,"w":12.375,"h":0.833,"TU":"Line 9. b. Qualified dividends. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":554,"AM":0,"x":82.912,"y":25.5,"w":12.375,"h":0.833,"TU":"Line 10. Taxable refunds, credits, or offsets of state and local income taxes. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":555,"AM":0,"x":82.912,"y":26.25,"w":12.375,"h":0.833,"TU":"Line 11. Alimony received. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":556,"AM":0,"x":82.912,"y":27,"w":12.375,"h":0.833,"TU":"Line 12. Business income or (loss). Attach Schedule C or C-E Z. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"F8814LIT","EN":0},"TI":557,"AM":0,"x":58.409,"y":27.882,"w":10.779,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8814AMT","EN":0},"TI":558,"AM":0,"x":69.764,"y":27.878,"w":9.053,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":559,"AM":0,"x":82.912,"y":27.75,"w":12.375,"h":0.833,"TU":"Line 13. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14W","EN":0},"TI":560,"AM":0,"x":50.244,"y":28.477,"w":28.542,"h":0.833,"TU":"Line 21. Other income. List type and amount. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":562,"AM":0,"x":82.912,"y":28.5,"w":12.375,"h":0.833,"TU":"Line 14. Other gains or (losses). Attach Form 4797. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15A","EN":0},"TI":563,"AM":0,"x":42.153,"y":29.25,"w":12.375,"h":0.833,"TU":"Line 15. a. I R A distributions. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCD","EN":0},"TI":564,"AM":0,"x":70.676,"y":29.337,"w":8.084,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":565,"AM":0,"x":82.912,"y":29.25,"w":12.375,"h":0.833,"TU":"Line 15. b. Taxable amount. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16A","EN":0},"TI":566,"AM":0,"x":42.228,"y":30,"w":12.375,"h":0.833,"TU":"Line 16. a. Pensions and annuities. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PSO","EN":0},"TI":567,"AM":0,"x":70.825,"y":30.072,"w":8.084,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16B","EN":0},"TI":568,"AM":0,"x":82.912,"y":30,"w":12.375,"h":0.833,"TU":"Line 16. b. Taxable amount. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":569,"AM":0,"x":82.912,"y":30.75,"w":12.375,"h":0.833,"TU":"Line 17. Rental real estate, royalties, partnerships, S corporations, trusts, etcetera. Attach Schedule E. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":570,"AM":0,"x":82.912,"y":31.5,"w":12.375,"h":0.833,"TU":"Line 18. Farm income or (loss). Attach Schedule F. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L19T1","EN":0},"TI":571,"AM":0,"x":58.504,"y":32.272,"w":10.779,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19T2","EN":0},"TI":572,"AM":0,"x":69.859,"y":32.268,"w":9.053,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":573,"AM":0,"x":82.912,"y":32.25,"w":12.375,"h":0.833,"TU":"Line 19. Unemployment compensation. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20AMOD","EN":0},"TI":574,"AM":0,"x":42.075,"y":33,"w":12.375,"h":0.833,"TU":"Line 20. a. Social Security benefits. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20LSE","EN":0},"TI":575,"AM":0,"x":70.626,"y":33.125,"w":8.108,"h":0.833,"TU":"Line 20. a. Social Security benefits. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20B","EN":0},"TI":576,"AM":0,"x":82.912,"y":33,"w":12.375,"h":0.833,"TU":"Line 20. b. Taxable amount. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHINC_L21DESC_1_","EN":0},"TI":577,"AM":0,"x":46.706,"y":33.764,"w":18.14,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHINC_L21DAMT_1_","EN":0},"TI":578,"AM":0,"x":65.498,"y":33.737,"w":12.375,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":579,"AM":0,"x":82.838,"y":33.75,"w":12.375,"h":0.833,"TU":"Line 21. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":580,"AM":0,"x":82.912,"y":34.5,"w":12.375,"h":0.833,"TU":"Line 22. Combine the amounts in the far right column for lines 7 through 21. This is your total income. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":581,"AM":0,"x":63.112,"y":35.25,"w":12.375,"h":0.833,"TU":"Line 23. Educator expenses. dollars"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BUSEXP","EN":0},"TI":582,"AM":0,"x":63.112,"y":36.75,"w":12.375,"h":0.833,"TU":"Line 24. Certain business expenses of reservists, performing artists, and fee-basis government officials. Attach Form 2106 or 2106-E Z. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HSA","EN":0},"TI":583,"AM":0,"x":63.112,"y":37.5,"w":12.375,"h":0.833,"TU":"Line 25. Health savings account deduction. Attach Form 8889. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L26T","EN":0},"TI":584,"AM":0,"x":47.242,"y":38.199,"w":10.779,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":585,"AM":0,"x":63.112,"y":38.25,"w":12.375,"h":0.833,"TU":"Line 26. Moving expenses. Attach Form 3903. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":586,"AM":0,"x":63.112,"y":39,"w":12.375,"h":0.833,"TU":"Line 27. Deductible part of self-employment tax. Attach Schedule S E. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":587,"AM":0,"x":63.112,"y":39.75,"w":12.375,"h":0.833,"TU":"Line 28. Self-employed S E P, SIMPLE, and qualified plans. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L29W","EN":0},"TI":588,"AM":0,"x":50.012,"y":40.54,"w":8.458,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":589,"AM":0,"x":63.038,"y":40.5,"w":12.375,"h":0.833,"TU":"Line 29. Self-employed health insurance deduction. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":590,"AM":0,"x":63.112,"y":41.25,"w":12.375,"h":0.833,"TU":"Line 30. Penalty on early withdrawal of savings. Dollars."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A586","EN":0},"TI":591,"AM":0,"x":45.788,"y":42,"w":12.375,"h":0.833,"TU":"Line 31. b. Recipient’s S S N."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":592,"AM":0,"x":63.112,"y":42,"w":12.375,"h":0.833,"TU":"Line 31. a. Alimony paid. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":593,"AM":0,"x":63.112,"y":42.75,"w":12.375,"h":0.833,"TU":"Line 32. I R A deduction. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":594,"AM":0,"x":63.112,"y":43.5,"w":12.375,"h":0.833,"TU":"Line 33. Student loan interest deduction. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32C","EN":0},"TI":595,"AM":0,"x":63.112,"y":44.25,"w":12.375,"h":0.833,"TU":"Line 34. Tuition and fees. Attach Form 8917. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DPAD","EN":0},"TI":596,"AM":0,"x":63.112,"y":45,"w":12.375,"h":0.833,"TU":"Line 35. Domestic production activities deduction. Attach Form 8903. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T","EN":0},"TI":597,"AM":0,"x":58.449,"y":45.878,"w":10.779,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32W","EN":0},"TI":598,"AM":0,"x":69.805,"y":45.874,"w":9.053,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":599,"AM":0,"x":82.912,"y":45.75,"w":12.375,"h":0.833,"TU":"Line 36. Add lines 23 through 35. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":600,"AM":0,"x":82.912,"y":46.5,"w":12.375,"h":0.833,"TU":"Line 37. Subtract line 36 from line 22. This is your adjusted gross income. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PECY","EN":0},"TI":497,"AM":0,"x":88.206,"y":11.25,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SECY","EN":0},"TI":498,"AM":0,"x":93.156,"y":11.25,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":499,"AM":0,"x":22.59,"y":12.007,"w":1.723,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS4","EN":0},"TI":500,"AM":0,"x":62.063,"y":12.047,"w":1.723,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":501,"AM":0,"x":22.461,"y":12.747,"w":1.723,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS3","EN":0},"TI":502,"AM":0,"x":22.469,"y":13.569,"w":1.839,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS5","EN":0},"TI":510,"AM":0,"x":62.053,"y":14.115,"w":1.723,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6A","EN":0},"TI":511,"AM":0,"x":23.856,"y":15,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6B","EN":0},"TI":512,"AM":0,"x":23.856,"y":15.75,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6C5_1_","EN":0},"TI":523,"AM":0,"x":73.003,"y":17.986,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6C5_2_","EN":0},"TI":528,"AM":0,"x":73.003,"y":18.722,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6C5_3_","EN":0},"TI":534,"AM":0,"x":73.003,"y":19.472,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPSX","EN":0},"TI":536,"AM":0,"x":15.194,"y":20.312,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6C5_4_","EN":0},"TI":541,"AM":0,"x":73.003,"y":20.222,"w":1.287,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L13X","EN":0},"TI":561,"AM":0,"x":73.735,"y":27.832,"w":1.375,"h":0.833}]}]},{"Height":49.5,"HLines":[{"x":6.145,"y":3,"w":1.5,"l":86.711},{"x":92.77,"y":3,"w":1.5,"l":6.081},{"x":79.157,"y":3.75,"w":0.75,"l":3.798},{"x":82.87,"y":3,"w":1.5,"l":12.461},{"x":82.87,"y":3.75,"w":0.75,"l":12.461},{"x":95.245,"y":3,"w":1.5,"l":3.798},{"x":95.245,"y":3.75,"w":0.75,"l":3.798},{"x":75.487,"y":5.177,"w":1.5,"l":3.625},{"x":75.487,"y":3.75,"w":1.5,"l":3.625},{"x":79.157,"y":3.75,"w":0.75,"l":3.798},{"x":82.87,"y":3.75,"w":0.75,"l":12.461},{"x":95.245,"y":3.75,"w":0.75,"l":3.798},{"x":5.809,"y":17.875,"w":0.75,"l":8.181},{"x":5.809,"y":5.25,"w":0.75,"l":8.181},{"x":14.807,"y":6,"w":0.75,"l":2.561},{"x":14.807,"y":6.75,"w":0.75,"l":2.561},{"x":79.157,"y":6.75,"w":0.75,"l":3.798},{"x":82.87,"y":6.75,"w":0.75,"l":12.461},{"x":95.245,"y":6.75,"w":0.75,"l":3.798},{"x":79.157,"y":7.5,"w":0.75,"l":3.798},{"x":82.912,"y":7.5,"w":0.75,"l":12.375},{"x":82.912,"y":6.75,"w":0.75,"l":12.375},{"x":95.245,"y":6.75,"w":0.75,"l":3.798},{"x":95.245,"y":7.5,"w":0.75,"l":3.798},{"x":79.157,"y":8.25,"w":1.125,"l":3.798},{"x":82.87,"y":7.5,"w":0.75,"l":12.461},{"x":82.87,"y":8.25,"w":1.125,"l":12.461},{"x":95.245,"y":7.5,"w":0.75,"l":3.798},{"x":95.245,"y":8.25,"w":1.125,"l":3.798},{"x":79.157,"y":9,"w":0.75,"l":3.798},{"x":82.87,"y":8.25,"w":1.125,"l":12.461},{"x":82.87,"y":9,"w":0.75,"l":12.461},{"x":95.245,"y":8.25,"w":1.125,"l":3.798},{"x":95.245,"y":9,"w":0.75,"l":3.798},{"x":79.157,"y":9.75,"w":0.75,"l":3.798},{"x":82.912,"y":9.75,"w":0.75,"l":12.375},{"x":82.912,"y":9,"w":0.75,"l":12.375},{"x":95.245,"y":9,"w":0.75,"l":3.798},{"x":95.245,"y":9.75,"w":0.75,"l":3.798},{"x":79.157,"y":10.5,"w":0.75,"l":3.798},{"x":82.912,"y":10.5,"w":0.75,"l":12.375},{"x":82.912,"y":9.75,"w":0.75,"l":12.375},{"x":95.245,"y":9.75,"w":0.75,"l":3.798},{"x":95.245,"y":10.5,"w":0.75,"l":3.798},{"x":79.157,"y":11.25,"w":0.75,"l":3.798},{"x":82.912,"y":11.25,"w":0.75,"l":12.375},{"x":82.912,"y":10.5,"w":0.75,"l":12.375},{"x":95.245,"y":10.5,"w":0.75,"l":3.798},{"x":95.245,"y":11.25,"w":0.75,"l":3.798},{"x":59.357,"y":12,"w":0.75,"l":3.798},{"x":63.07,"y":12,"w":0.75,"l":12.461},{"x":75.445,"y":12,"w":0.75,"l":3.798},{"x":79.157,"y":11.25,"w":0.75,"l":3.798},{"x":82.87,"y":11.25,"w":0.75,"l":12.461},{"x":95.245,"y":11.25,"w":0.75,"l":3.798},{"x":59.357,"y":12.75,"w":0.75,"l":3.798},{"x":63.07,"y":12,"w":0.75,"l":12.461},{"x":63.07,"y":12.75,"w":0.75,"l":12.461},{"x":75.487,"y":12.75,"w":0.75,"l":3.713},{"x":75.487,"y":12,"w":0.75,"l":3.713},{"x":59.357,"y":13.5,"w":0.75,"l":3.798},{"x":63.07,"y":12.75,"w":0.75,"l":12.461},{"x":63.07,"y":13.5,"w":0.75,"l":12.461},{"x":75.487,"y":13.5,"w":0.75,"l":3.713},{"x":75.487,"y":12.75,"w":0.75,"l":3.713},{"x":59.357,"y":14.25,"w":0.75,"l":3.798},{"x":63.07,"y":13.5,"w":0.75,"l":12.461},{"x":63.07,"y":14.25,"w":0.75,"l":12.461},{"x":75.487,"y":14.25,"w":0.75,"l":3.713},{"x":75.487,"y":13.5,"w":0.75,"l":3.713},{"x":59.357,"y":15,"w":0.75,"l":3.798},{"x":63.07,"y":14.25,"w":0.75,"l":12.461},{"x":63.07,"y":15,"w":0.75,"l":12.461},{"x":75.487,"y":15,"w":0.75,"l":3.713},{"x":75.487,"y":14.25,"w":0.75,"l":3.713},{"x":59.357,"y":15.75,"w":0.75,"l":3.798},{"x":63.07,"y":15,"w":0.75,"l":12.461},{"x":63.07,"y":15.75,"w":0.75,"l":12.461},{"x":75.487,"y":15.75,"w":0.75,"l":3.713},{"x":75.487,"y":15,"w":0.75,"l":3.713},{"x":51.932,"y":16.5,"w":0.75,"l":5.036},{"x":59.357,"y":16.5,"w":1.125,"l":3.798},{"x":63.07,"y":15.75,"w":0.75,"l":12.461},{"x":63.07,"y":16.5,"w":1.125,"l":12.461},{"x":75.445,"y":15.75,"w":0.75,"l":3.798},{"x":75.445,"y":16.5,"w":1.125,"l":3.798},{"x":79.157,"y":17.25,"w":1.125,"l":3.798},{"x":82.87,"y":17.251,"w":1.125,"l":12.461},{"x":95.245,"y":17.25,"w":1.125,"l":3.798},{"x":79.157,"y":18,"w":0.75,"l":3.798},{"x":82.87,"y":17.25,"w":1.125,"l":12.461},{"x":82.87,"y":18,"w":0.75,"l":12.461},{"x":95.245,"y":17.25,"w":1.125,"l":3.798},{"x":95.245,"y":18,"w":0.75,"l":3.798},{"oc":"#211f1f","x":6.188,"y":18,"w":0.75,"l":92.813},{"x":79.157,"y":18.75,"w":0.75,"l":3.798},{"x":82.87,"y":18,"w":0.75,"l":12.461},{"x":82.87,"y":18.75,"w":0.75,"l":12.461},{"x":95.245,"y":18,"w":0.75,"l":3.798},{"x":95.245,"y":18.75,"w":0.75,"l":3.798},{"x":79.157,"y":19.5,"w":0.75,"l":3.798},{"x":82.87,"y":18.75,"w":0.75,"l":12.461},{"x":82.87,"y":19.5,"w":0.75,"l":12.461},{"x":95.245,"y":18.75,"w":0.75,"l":3.798},{"x":95.245,"y":19.5,"w":0.75,"l":3.798},{"x":79.157,"y":20.25,"w":0.75,"l":3.798},{"x":82.87,"y":19.5,"w":0.75,"l":12.461},{"x":82.87,"y":20.25,"w":0.75,"l":12.461},{"x":95.245,"y":19.5,"w":0.75,"l":3.798},{"x":95.245,"y":20.25,"w":0.75,"l":3.798},{"x":79.157,"y":21,"w":0.75,"l":3.798},{"x":82.87,"y":20.25,"w":0.75,"l":12.461},{"x":82.87,"y":21,"w":0.75,"l":12.461},{"x":95.245,"y":20.25,"w":0.75,"l":3.798},{"x":95.245,"y":21,"w":0.75,"l":3.798},{"x":79.157,"y":21.75,"w":0.75,"l":3.798},{"x":82.87,"y":21,"w":0.75,"l":12.461},{"x":82.87,"y":21.75,"w":0.75,"l":12.461},{"x":95.245,"y":21,"w":0.75,"l":3.798},{"x":95.245,"y":21.75,"w":0.75,"l":3.798},{"dsh":1,"x":68.02,"y":22.5,"w":0.75,"l":9.986},{"x":79.157,"y":22.5,"w":1.125,"l":3.798},{"x":82.87,"y":21.75,"w":0.75,"l":12.461},{"x":82.87,"y":22.5,"w":1.125,"l":12.461},{"x":95.245,"y":21.75,"w":0.75,"l":3.798},{"x":95.245,"y":22.5,"w":1.125,"l":3.798},{"x":82.87,"y":22.5,"w":1.125,"l":12.461},{"x":95.245,"y":22.5,"w":1.125,"l":3.798},{"oc":"#211f1f","x":6.188,"y":23.25,"w":0.75,"l":92.813},{"x":59.357,"y":24,"w":0.75,"l":3.798},{"x":63.07,"y":23.25,"w":0.75,"l":12.461},{"x":63.07,"y":24,"w":0.75,"l":12.461},{"x":75.487,"y":24,"w":0.75,"l":3.713},{"x":75.487,"y":23.25,"w":0.75,"l":3.713},{"x":59.357,"y":24.75,"w":0.75,"l":3.798},{"x":63.07,"y":24,"w":0.75,"l":12.461},{"x":63.07,"y":24.75,"w":0.75,"l":12.461},{"x":75.487,"y":24.75,"w":0.75,"l":3.713},{"x":75.487,"y":24,"w":0.75,"l":3.713},{"x":79.157,"y":23.25,"w":0.75,"l":3.798},{"x":82.87,"y":23.25,"w":0.75,"l":12.461},{"x":95.245,"y":23.25,"w":0.75,"l":3.798},{"x":5.809,"y":27.369,"w":0.75,"l":8.181},{"x":5.809,"y":24.369,"w":0.75,"l":8.181},{"x":14.807,"y":24.75,"w":0.75,"l":2.561},{"x":14.807,"y":25.5,"w":0.75,"l":2.561},{"x":59.357,"y":25.5,"w":0.75,"l":3.798},{"x":63.07,"y":24.75,"w":0.75,"l":12.461},{"x":63.07,"y":25.5,"w":0.75,"l":12.461},{"x":75.488,"y":25.5,"w":0.75,"l":3.713},{"x":75.488,"y":24.75,"w":0.75,"l":3.713},{"x":39.557,"y":26.25,"w":0.75,"l":3.798},{"x":43.27,"y":26.25,"w":0.75,"l":12.461},{"x":55.645,"y":26.25,"w":0.75,"l":3.798},{"x":59.357,"y":25.5,"w":0.75,"l":3.798},{"x":63.07,"y":25.5,"w":0.75,"l":12.461},{"x":75.445,"y":25.5,"w":0.75,"l":3.798},{"x":59.357,"y":27,"w":0.75,"l":3.798},{"x":63.07,"y":27,"w":0.75,"l":12.461},{"x":75.445,"y":27,"w":0.75,"l":3.798},{"x":59.357,"y":27.75,"w":0.75,"l":3.798},{"x":63.113,"y":27.75,"w":0.75,"l":12.375},{"x":63.113,"y":27,"w":0.75,"l":12.375},{"x":75.488,"y":27.75,"w":0.75,"l":3.713},{"x":75.488,"y":27,"w":0.75,"l":3.713},{"x":59.357,"y":28.504,"w":0.75,"l":3.798},{"x":63.113,"y":28.504,"w":0.75,"l":12.375},{"x":63.113,"y":27.754,"w":0.75,"l":12.375},{"x":75.488,"y":28.504,"w":0.75,"l":3.713},{"x":75.488,"y":27.754,"w":0.75,"l":3.713},{"x":59.357,"y":29.25,"w":0.75,"l":3.798},{"x":63.113,"y":29.254,"w":0.75,"l":12.375},{"x":63.113,"y":28.504,"w":0.75,"l":12.375},{"x":75.488,"y":29.254,"w":0.75,"l":3.713},{"x":75.488,"y":28.504,"w":0.75,"l":3.713},{"x":59.357,"y":30.004,"w":0.75,"l":3.798},{"x":63.113,"y":30.004,"w":0.75,"l":12.375},{"x":63.113,"y":29.254,"w":0.75,"l":12.375},{"x":75.488,"y":30.004,"w":0.75,"l":3.713},{"x":75.488,"y":29.254,"w":0.75,"l":3.713},{"x":59.357,"y":30.75,"w":0.75,"l":3.798},{"x":63.113,"y":30.75,"w":0.75,"l":12.375},{"x":63.113,"y":30,"w":0.75,"l":12.375},{"x":75.488,"y":30.75,"w":0.75,"l":3.713},{"x":75.488,"y":30,"w":0.75,"l":3.713},{"x":59.357,"y":31.5,"w":1.125,"l":3.798},{"x":63.07,"y":30.75,"w":0.75,"l":12.461},{"x":63.07,"y":31.5,"w":1.125,"l":12.461},{"x":75.445,"y":30.75,"w":0.75,"l":3.798},{"x":75.445,"y":31.5,"w":1.125,"l":3.798},{"x":79.157,"y":32.25,"w":0.75,"l":3.798},{"x":82.87,"y":32.25,"w":0.75,"l":12.461},{"x":95.245,"y":32.25,"w":0.75,"l":3.798},{"oc":"#211f1f","x":6.188,"y":32.25,"w":0.75,"l":92.813},{"x":79.157,"y":33,"w":0.75,"l":3.798},{"x":82.912,"y":33,"w":0.75,"l":12.375},{"x":82.912,"y":32.25,"w":0.75,"l":12.375},{"x":95.245,"y":32.25,"w":0.75,"l":3.798},{"x":95.245,"y":33,"w":0.75,"l":3.798},{"x":79.157,"y":33.75,"w":0.75,"l":3.798},{"x":82.912,"y":33.75,"w":0.75,"l":12.375},{"x":82.912,"y":33,"w":0.75,"l":12.375},{"x":95.245,"y":33,"w":0.75,"l":3.798},{"x":95.245,"y":33.75,"w":0.75,"l":3.798},{"x":32.132,"y":34.5,"w":0.75,"l":22.336},{"x":79.157,"y":33.75,"w":0.75,"l":3.798},{"x":82.87,"y":33.75,"w":0.75,"l":12.461},{"x":95.245,"y":33.75,"w":0.75,"l":3.798},{"x":32.16,"y":35.243,"w":0.75,"l":42.037},{"oc":"#211f1f","x":6.188,"y":36,"w":0.75,"l":73.013},{"x":79.157,"y":36.75,"w":0.75,"l":3.798},{"x":82.87,"y":36.75,"w":0.75,"l":12.461},{"x":95.245,"y":36.75,"w":0.75,"l":3.798},{"x":79.157,"y":36.75,"w":0.75,"l":19.886},{"x":79.157,"y":37.5,"w":0.75,"l":19.886},{"oc":"#211f1f","x":6.188,"y":37.5,"w":1.2000000000000002,"l":92.813},{"oc":"#211f1f","x":6.188,"y":39.75,"w":1.2000000000000002,"l":92.813},{"x":6.145,"y":44.25,"w":1.125,"l":8.748},{"x":16.044,"y":42.75,"w":0.75,"l":31.034},{"x":46.982,"y":42.75,"w":0.75,"l":8.748},{"x":55.645,"y":42.75,"w":0.75,"l":23.579},{"x":79.157,"y":42.75,"w":0.75,"l":19.895},{"x":16.044,"y":42.75,"w":0.75,"l":31.034},{"x":16.044,"y":44.246,"w":1.125,"l":31.034},{"x":14.807,"y":44.25,"w":1.125,"l":2.561},{"x":46.982,"y":42.75,"w":0.75,"l":8.748},{"x":46.982,"y":44.246,"w":1.125,"l":8.748},{"x":55.645,"y":42.75,"w":0.75,"l":23.579},{"x":55.645,"y":44.246,"w":1.125,"l":23.579},{"x":79.157,"y":42.75,"w":0.75,"l":19.886},{"x":79.157,"y":44.25,"w":0.75,"l":19.886},{"x":16.045,"y":44.25,"w":1.125,"l":19.886},{"x":16.045,"y":45.75,"w":0.75,"l":19.886},{"x":35.845,"y":44.25,"w":1.125,"l":31.023},{"x":35.845,"y":45.75,"w":0.75,"l":31.023},{"x":66.782,"y":44.25,"w":1.125,"l":12.461},{"x":66.782,"y":45.75,"w":0.75,"l":12.461},{"x":79.157,"y":44.25,"w":1.125,"l":8.748},{"x":79.157,"y":45.75,"w":0.75,"l":8.748},{"x":87.82,"y":44.25,"w":1.125,"l":11.223},{"x":87.82,"y":45.75,"w":0.75,"l":11.223},{"x":16.045,"y":45.75,"w":0.75,"l":52.061},{"x":16.045,"y":46.5,"w":0.75,"l":52.061},{"x":68.02,"y":45.75,"w":0.75,"l":31.023},{"x":68.02,"y":46.5,"w":0.75,"l":31.023},{"x":68.02,"y":46.5,"w":0.75,"l":31.023},{"x":6.145,"y":47.25,"w":1.5,"l":92.898},{"x":55.645,"y":31.5,"w":0.75,"l":3.798},{"x":65.797,"y":9.75,"w":0.75,"l":5.036}],"VLines":[{"x":82.912,"y":2.984,"w":0.75,"l":0.781},{"x":79.2,"y":2.984,"w":0.75,"l":0.781},{"x":95.287,"y":2.969,"w":0.75,"l":0.797},{"x":82.912,"y":2.969,"w":0.75,"l":0.797},{"x":95.287,"y":2.969,"w":0.75,"l":0.797},{"x":79.113,"y":3.75,"w":1.5,"l":1.427},{"x":75.487,"y":3.75,"w":1.5,"l":1.427},{"x":82.912,"y":3.734,"w":0.75,"l":2.281},{"x":79.2,"y":3.734,"w":0.75,"l":2.281},{"x":95.287,"y":3.734,"w":0.75,"l":2.281},{"x":82.912,"y":3.734,"w":0.75,"l":2.281},{"x":95.287,"y":3.734,"w":0.75,"l":2.281},{"x":4.95,"y":5.562,"w":0.75,"l":12},{"x":14.85,"y":5.562,"w":0.75,"l":12},{"x":82.912,"y":5.984,"w":0.75,"l":0.781},{"x":79.2,"y":5.984,"w":0.75,"l":0.781},{"x":95.287,"y":5.984,"w":0.75,"l":0.781},{"x":82.912,"y":5.984,"w":0.75,"l":0.781},{"x":95.287,"y":5.984,"w":0.75,"l":0.781},{"x":82.912,"y":6.734,"w":0.75,"l":0.781},{"x":79.2,"y":6.734,"w":0.75,"l":0.781},{"x":95.287,"y":6.75,"w":0.75,"l":0.75},{"x":82.912,"y":6.75,"w":0.75,"l":0.75},{"x":95.287,"y":6.735,"w":0.75,"l":0.781},{"x":82.912,"y":7.484,"w":0.75,"l":0.789},{"x":79.2,"y":7.484,"w":0.75,"l":0.789},{"x":95.287,"y":7.484,"w":0.75,"l":0.789},{"x":82.912,"y":7.484,"w":0.75,"l":0.789},{"x":95.287,"y":7.484,"w":0.75,"l":0.789},{"x":82.912,"y":8.227,"w":0.75,"l":0.789},{"x":79.2,"y":8.227,"w":0.75,"l":0.789},{"x":95.287,"y":8.227,"w":0.75,"l":0.789},{"x":82.912,"y":8.227,"w":0.75,"l":0.789},{"x":95.287,"y":8.227,"w":0.75,"l":0.789},{"x":82.912,"y":8.985,"w":0.75,"l":0.781},{"x":79.2,"y":8.985,"w":0.75,"l":0.781},{"x":95.287,"y":9,"w":0.75,"l":0.75},{"x":82.912,"y":9,"w":0.75,"l":0.75},{"x":95.287,"y":8.985,"w":0.75,"l":0.781},{"x":82.912,"y":9.734,"w":0.75,"l":0.781},{"x":79.2,"y":9.734,"w":0.75,"l":0.781},{"x":95.287,"y":9.75,"w":0.75,"l":0.75},{"x":82.912,"y":9.75,"w":0.75,"l":0.75},{"x":95.287,"y":9.734,"w":0.75,"l":0.781},{"x":82.912,"y":10.477,"w":0.75,"l":0.789},{"x":79.2,"y":10.477,"w":0.75,"l":0.789},{"x":95.287,"y":10.5,"w":0.75,"l":0.75},{"x":82.912,"y":10.5,"w":0.75,"l":0.75},{"x":95.287,"y":10.484,"w":0.75,"l":0.781},{"x":59.4,"y":11.235,"w":0.75,"l":0.781},{"x":63.112,"y":11.235,"w":0.75,"l":0.781},{"x":79.2,"y":11.235,"w":0.75,"l":0.781},{"x":75.487,"y":11.235,"w":0.75,"l":0.781},{"x":82.912,"y":11.235,"w":0.75,"l":5.281},{"x":79.2,"y":11.235,"w":0.75,"l":5.281},{"x":95.287,"y":11.235,"w":0.75,"l":5.289},{"x":82.912,"y":11.235,"w":0.75,"l":5.289},{"x":95.287,"y":11.235,"w":0.75,"l":5.289},{"x":59.4,"y":11.984,"w":0.75,"l":0.781},{"x":63.112,"y":11.984,"w":0.75,"l":0.781},{"x":79.2,"y":12,"w":0.75,"l":0.75},{"x":75.487,"y":12,"w":0.75,"l":0.75},{"x":59.4,"y":12.735,"w":0.75,"l":0.781},{"x":63.112,"y":12.734,"w":0.75,"l":0.781},{"x":79.2,"y":12.75,"w":0.75,"l":0.75},{"x":75.487,"y":12.75,"w":0.75,"l":0.75},{"x":59.4,"y":13.485,"w":0.75,"l":0.781},{"x":63.112,"y":13.485,"w":0.75,"l":0.781},{"x":79.2,"y":13.5,"w":0.75,"l":0.75},{"x":75.487,"y":13.5,"w":0.75,"l":0.75},{"x":59.4,"y":14.234,"w":0.75,"l":0.781},{"x":63.112,"y":14.234,"w":0.75,"l":0.781},{"x":79.2,"y":14.25,"w":0.75,"l":0.75},{"x":75.487,"y":14.25,"w":0.75,"l":0.75},{"x":59.4,"y":14.985,"w":0.75,"l":0.781},{"x":63.112,"y":14.985,"w":0.75,"l":0.781},{"x":79.2,"y":15,"w":0.75,"l":0.75},{"x":75.487,"y":15,"w":0.75,"l":0.75},{"x":59.4,"y":15.735,"w":0.75,"l":0.789},{"x":63.112,"y":15.735,"w":0.75,"l":0.789},{"x":79.2,"y":15.735,"w":0.75,"l":0.789},{"x":75.487,"y":15.735,"w":0.75,"l":0.789},{"x":79.2,"y":16.484,"w":0.75,"l":0.789},{"x":82.912,"y":16.486,"w":0.75,"l":0.789},{"x":95.287,"y":16.484,"w":0.75,"l":0.789},{"x":79.2,"y":17.227,"w":0.75,"l":0.789},{"x":82.912,"y":17.227,"w":0.75,"l":0.789},{"x":95.287,"y":17.227,"w":0.75,"l":0.789},{"x":79.2,"y":17.985,"w":0.75,"l":0.781},{"x":82.912,"y":17.985,"w":0.75,"l":0.781},{"x":95.287,"y":17.985,"w":0.75,"l":0.781},{"x":79.2,"y":18.734,"w":0.75,"l":0.781},{"x":82.912,"y":18.734,"w":0.75,"l":0.781},{"x":95.287,"y":18.734,"w":0.75,"l":0.781},{"x":79.2,"y":19.484,"w":0.75,"l":0.781},{"x":82.912,"y":19.484,"w":0.75,"l":0.781},{"x":95.287,"y":19.484,"w":0.75,"l":0.781},{"x":79.2,"y":20.234,"w":0.75,"l":0.781},{"x":82.912,"y":20.234,"w":0.75,"l":0.781},{"x":95.287,"y":20.234,"w":0.75,"l":0.781},{"x":79.2,"y":20.984,"w":0.75,"l":0.781},{"x":82.912,"y":20.984,"w":0.75,"l":0.781},{"x":95.287,"y":20.984,"w":0.75,"l":0.781},{"x":79.2,"y":21.734,"w":0.75,"l":0.789},{"x":82.912,"y":21.734,"w":0.75,"l":0.789},{"x":95.287,"y":21.734,"w":0.75,"l":0.789},{"x":79.2,"y":22.484,"w":0.75,"l":0.781},{"x":82.912,"y":22.477,"w":0.75,"l":0.789},{"x":95.287,"y":22.477,"w":0.75,"l":0.789},{"x":59.4,"y":23.234,"w":0.75,"l":0.781},{"x":63.112,"y":23.234,"w":0.75,"l":0.781},{"x":79.2,"y":23.25,"w":0.75,"l":0.75},{"x":75.487,"y":23.25,"w":0.75,"l":0.75},{"x":59.4,"y":23.984,"w":0.75,"l":0.781},{"x":63.112,"y":23.984,"w":0.75,"l":0.781},{"x":79.2,"y":24,"w":0.75,"l":0.75},{"x":75.487,"y":24,"w":0.75,"l":0.75},{"x":82.912,"y":23.234,"w":0.75,"l":8.281},{"x":79.2,"y":23.234,"w":0.75,"l":8.281},{"x":95.287,"y":23.234,"w":0.75,"l":8.281},{"x":82.912,"y":23.234,"w":0.75,"l":8.281},{"x":95.287,"y":23.234,"w":0.75,"l":8.281},{"x":4.95,"y":24.681,"w":0.75,"l":2.375},{"x":14.85,"y":24.681,"w":0.75,"l":2.375},{"x":59.4,"y":24.734,"w":0.75,"l":0.781},{"x":63.112,"y":24.734,"w":0.75,"l":0.781},{"x":79.2,"y":24.75,"w":0.75,"l":0.75},{"x":75.488,"y":24.75,"w":0.75,"l":0.75},{"x":43.313,"y":25.484,"w":0.75,"l":0.781},{"x":39.6,"y":25.484,"w":0.75,"l":0.781},{"x":43.313,"y":25.484,"w":0.75,"l":0.781},{"x":59.4,"y":25.484,"w":0.75,"l":0.781},{"x":55.688,"y":25.484,"w":0.75,"l":0.781},{"x":63.112,"y":25.484,"w":0.75,"l":0.781},{"x":59.4,"y":25.484,"w":0.75,"l":0.781},{"x":75.487,"y":25.484,"w":0.75,"l":0.781},{"x":63.112,"y":25.484,"w":0.75,"l":0.781},{"x":79.2,"y":25.484,"w":0.75,"l":0.781},{"x":75.487,"y":25.484,"w":0.75,"l":0.781},{"x":59.4,"y":26.234,"w":0.75,"l":0.781},{"x":75.487,"y":26.234,"w":0.75,"l":0.781},{"x":63.112,"y":26.234,"w":0.75,"l":0.781},{"x":79.2,"y":26.234,"w":0.75,"l":0.781},{"x":75.487,"y":26.234,"w":0.75,"l":0.781},{"x":59.4,"y":26.984,"w":0.75,"l":0.781},{"x":75.488,"y":27,"w":0.75,"l":0.75},{"x":63.113,"y":27,"w":0.75,"l":0.75},{"x":79.2,"y":27,"w":0.75,"l":0.75},{"x":75.488,"y":27,"w":0.75,"l":0.75},{"x":59.4,"y":27.738,"w":0.75,"l":0.781},{"x":75.488,"y":27.754,"w":0.75,"l":0.75},{"x":63.113,"y":27.754,"w":0.75,"l":0.75},{"x":79.2,"y":27.754,"w":0.75,"l":0.75},{"x":75.488,"y":27.754,"w":0.75,"l":0.75},{"x":59.4,"y":28.484,"w":0.75,"l":0.781},{"x":75.488,"y":28.504,"w":0.75,"l":0.75},{"x":63.113,"y":28.504,"w":0.75,"l":0.75},{"x":79.2,"y":28.504,"w":0.75,"l":0.75},{"x":75.488,"y":28.504,"w":0.75,"l":0.75},{"x":59.4,"y":29.238,"w":0.75,"l":0.781},{"x":75.488,"y":29.254,"w":0.75,"l":0.75},{"x":63.113,"y":29.254,"w":0.75,"l":0.75},{"x":79.2,"y":29.254,"w":0.75,"l":0.75},{"x":75.488,"y":29.254,"w":0.75,"l":0.75},{"x":59.4,"y":29.984,"w":0.75,"l":0.781},{"x":75.488,"y":30,"w":0.75,"l":0.75},{"x":63.113,"y":30,"w":0.75,"l":0.75},{"x":79.2,"y":30,"w":0.75,"l":0.75},{"x":75.488,"y":30,"w":0.75,"l":0.75},{"x":59.4,"y":30.734,"w":0.75,"l":0.789},{"x":75.487,"y":30.734,"w":0.75,"l":0.789},{"x":63.112,"y":30.734,"w":0.75,"l":0.789},{"x":79.2,"y":30.734,"w":0.75,"l":0.789},{"x":75.487,"y":30.734,"w":0.75,"l":0.789},{"x":79.2,"y":31.484,"w":0.75,"l":0.781},{"x":95.287,"y":31.484,"w":0.75,"l":0.781},{"x":82.912,"y":31.484,"w":0.75,"l":0.781},{"x":95.287,"y":31.484,"w":0.75,"l":0.781},{"x":79.2,"y":32.234,"w":0.75,"l":0.781},{"x":95.287,"y":32.25,"w":0.75,"l":0.75},{"x":82.912,"y":32.25,"w":0.75,"l":0.75},{"x":95.287,"y":32.234,"w":0.75,"l":0.781},{"x":79.2,"y":32.985,"w":0.75,"l":0.781},{"x":95.287,"y":33,"w":0.75,"l":0.75},{"x":82.912,"y":33,"w":0.75,"l":0.75},{"x":95.287,"y":32.985,"w":0.75,"l":0.781},{"dsh":1,"x":32.175,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"x":34.65,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"x":37.125,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"x":39.6,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"x":42.075,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"x":44.55,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"x":47.025,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"x":49.5,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"x":51.975,"y":33.812,"w":0.75,"l":0.688},{"dsh":1,"x":54.45,"y":33.812,"w":0.75,"l":0.688},{"x":82.912,"y":33.735,"w":0.75,"l":2.281},{"x":79.2,"y":33.735,"w":0.75,"l":2.281},{"x":95.287,"y":33.735,"w":0.75,"l":2.281},{"x":82.912,"y":33.735,"w":0.75,"l":2.281},{"x":95.287,"y":33.735,"w":0.75,"l":2.281},{"dsh":1,"x":32.175,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":34.65,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":37.125,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":39.6,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":42.075,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":44.55,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":47.025,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":49.5,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":51.975,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":54.45,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":57.045,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":59.4,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":62.031,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":64.35,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":66.825,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":69.3,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":71.775,"y":34.525,"w":0.75,"l":0.688},{"dsh":1,"x":74.25,"y":34.525,"w":0.75,"l":0.688},{"x":63.112,"y":35.326,"w":0.75,"l":0.656},{"x":59.4,"y":35.326,"w":0.75,"l":0.656},{"x":75.487,"y":35.326,"w":0.75,"l":0.656},{"x":63.112,"y":35.326,"w":0.75,"l":0.656},{"x":79.2,"y":35.326,"w":0.75,"l":0.656},{"x":75.487,"y":35.326,"w":0.75,"l":0.656},{"x":79.2,"y":35.985,"w":0.75,"l":0.781},{"x":95.287,"y":35.985,"w":0.75,"l":0.781},{"x":82.912,"y":35.985,"w":0.75,"l":0.781},{"x":95.287,"y":35.985,"w":0.75,"l":0.781},{"x":59.4,"y":36.734,"w":0.75,"l":0.781},{"x":63.112,"y":36.734,"w":0.75,"l":0.781},{"x":75.487,"y":36.734,"w":0.75,"l":0.781},{"x":79.2,"y":36.734,"w":0.75,"l":0.781},{"x":47.035,"y":41.234,"w":0.75,"l":1.531},{"x":55.688,"y":41.234,"w":0.75,"l":1.531},{"x":47.025,"y":41.234,"w":0.75,"l":1.531},{"x":79.181,"y":41.234,"w":0.75,"l":1.531},{"x":55.688,"y":41.234,"w":0.75,"l":1.531},{"x":79.2,"y":41.234,"w":0.75,"l":1.531},{"x":47.035,"y":42.734,"w":0.75,"l":1.535},{"x":55.688,"y":42.734,"w":0.75,"l":1.535},{"x":47.025,"y":42.734,"w":0.75,"l":1.535},{"x":79.181,"y":42.734,"w":0.75,"l":1.535},{"x":55.688,"y":42.734,"w":0.75,"l":1.535},{"x":79.2,"y":42.734,"w":0.75,"l":1.531},{"x":35.888,"y":44.227,"w":0.75,"l":1.539},{"x":79.2,"y":44.227,"w":0.75,"l":1.539},{"x":66.825,"y":44.227,"w":0.75,"l":1.539},{"x":79.2,"y":44.227,"w":0.75,"l":1.539},{"x":87.862,"y":44.227,"w":0.75,"l":1.539},{"x":68.063,"y":45.734,"w":0.75,"l":0.781},{"x":68.063,"y":46.484,"w":0.75,"l":0.781},{"x":68.063,"y":45.734,"w":0.75,"l":0.781},{"x":68.063,"y":46.484,"w":0.75,"l":0.781},{"x":59.4,"y":30.734,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#dcfffa","x":14.85,"y":2.25,"w":84.15,"h":45,"clr":-1},{"oc":"#dcfffa","x":4.95,"y":1.5,"w":95.287,"h":1.5,"clr":-1},{"oc":"#dcfffa","x":4.95,"y":47.25,"w":95.287,"h":0.75,"clr":-1},{"x":32.175,"y":33.75,"w":22.275,"h":0.75,"clr":1},{"x":32.175,"y":34.5,"w":42.075,"h":0.687,"clr":1},{"x":82.912,"y":3,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":3,"w":3.713,"h":0.75,"clr":1},{"x":75.487,"y":3.75,"w":3.625,"h":1.427,"clr":1},{"x":79.2,"y":3.75,"w":3.712,"h":2.25,"clr":5},{"x":82.912,"y":3.75,"w":12.375,"h":2.25,"clr":1},{"x":95.288,"y":3.75,"w":3.713,"h":2.25,"clr":1},{"oc":"#e8ffff","x":4.95,"y":5.25,"w":9.9,"h":12.625,"clr":-1},{"x":5.672,"y":5.375,"w":9.109,"h":12.249,"clr":1},{"x":13.613,"y":6,"w":1.375,"h":0.75,"clr":1},{"x":14.85,"y":6,"w":2.475,"h":0.75,"clr":1},{"x":82.912,"y":6,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":6,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":6.75,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":6.75,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":7.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":7.5,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":8.25,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":8.25,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":9,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":9,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":9.75,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":9.75,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":10.5,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":10.5,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":11.25,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":11.25,"w":3.713,"h":0.75,"clr":1},{"x":79.2,"y":11.25,"w":3.712,"h":5.25,"clr":5},{"x":82.912,"y":11.25,"w":12.375,"h":5.25,"clr":1},{"x":95.288,"y":11.25,"w":3.713,"h":5.25,"clr":1},{"x":63.112,"y":12,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":12,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":12.75,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":12.75,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":13.5,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":13.5,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":14.25,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":14.25,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":15,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":15,"w":3.713,"h":0.75,"clr":1},{"x":51.975,"y":15.75,"w":4.95,"h":0.75,"clr":1},{"x":63.112,"y":15.75,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":15.75,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":16.502,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":16.5,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":17.25,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":17.25,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":18,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":18,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":18.75,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":18.75,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":19.5,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":19.5,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":20.25,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":20.25,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":21,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":21,"w":3.713,"h":0.75,"clr":1},{"x":68.063,"y":21.813,"w":9.9,"h":0.687,"clr":1},{"x":82.912,"y":21.75,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":21.75,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":22.5,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":22.5,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":23.25,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":23.25,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":24,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":24,"w":3.713,"h":0.75,"clr":1},{"x":79.2,"y":23.25,"w":3.712,"h":8.25,"clr":5},{"x":82.912,"y":23.25,"w":12.375,"h":8.25,"clr":1},{"x":95.288,"y":23.25,"w":3.713,"h":8.25,"clr":1},{"oc":"#e8ffff","x":4.95,"y":24.369,"w":9.9,"h":3,"clr":-1},{"x":14.437,"y":24.766,"w":0.515,"h":0.688,"clr":1},{"x":5.672,"y":24.507,"w":9.109,"h":2.75,"clr":1},{"x":14.85,"y":24.75,"w":2.475,"h":0.75,"clr":1},{"x":63.113,"y":24.75,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":24.75,"w":3.713,"h":0.75,"clr":1},{"x":43.313,"y":25.5,"w":12.375,"h":0.75,"clr":1},{"x":55.688,"y":25.5,"w":3.713,"h":0.75,"clr":1},{"x":59.4,"y":25.5,"w":3.712,"h":0.75,"clr":5},{"x":63.113,"y":25.5,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":25.5,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":26.25,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":26.25,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":27,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":27,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":27.754,"w":12.375,"h":0.75,"clr":5},{"x":75.488,"y":27.754,"w":3.713,"h":0.75,"clr":5},{"x":63.113,"y":28.504,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":28.504,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":29.254,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":29.254,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":30,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":30,"w":3.713,"h":0.75,"clr":1},{"x":63.113,"y":30.75,"w":12.375,"h":0.75,"clr":1},{"x":75.488,"y":30.75,"w":3.713,"h":0.75,"clr":1},{"x":82.913,"y":31.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":31.5,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":32.25,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":32.25,"w":3.713,"h":0.75,"clr":1},{"x":82.912,"y":33,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":33,"w":3.713,"h":0.75,"clr":1},{"x":79.2,"y":33.75,"w":3.712,"h":2.25,"clr":5},{"x":82.912,"y":33.75,"w":12.375,"h":2.25,"clr":1},{"x":95.287,"y":33.75,"w":3.713,"h":2.25,"clr":1},{"x":63.112,"y":35.342,"w":12.375,"h":0.625,"clr":1},{"x":75.487,"y":35.342,"w":3.713,"h":0.625,"clr":1},{"x":82.912,"y":36,"w":12.375,"h":0.75,"clr":1},{"x":95.287,"y":36,"w":3.713,"h":0.75,"clr":1},{"x":63.112,"y":36.75,"w":12.375,"h":0.75,"clr":1},{"x":75.487,"y":36.75,"w":3.713,"h":0.75,"clr":1},{"x":79.2,"y":36.75,"w":19.8,"h":0.75,"clr":5},{"x":24.75,"y":38.25,"w":22.275,"h":1.5,"clr":1},{"x":53.213,"y":38.246,"w":16.088,"h":1.5,"clr":1},{"x":85.388,"y":39,"w":12.375,"h":0.75,"clr":1},{"x":16.086,"y":41.25,"w":30.948,"h":1.5,"clr":1},{"x":47.025,"y":41.25,"w":8.662,"h":1.5,"clr":1},{"x":55.688,"y":41.25,"w":23.493,"h":1.5,"clr":1},{"x":79.2,"y":41.25,"w":19.809,"h":1.5,"clr":1},{"x":16.086,"y":42.75,"w":30.948,"h":1.496,"clr":1},{"x":47.025,"y":42.75,"w":8.662,"h":1.496,"clr":1},{"x":55.688,"y":42.75,"w":23.493,"h":1.496,"clr":1},{"x":79.2,"y":42.75,"w":19.8,"h":1.5,"clr":1},{"x":86.625,"y":43.5,"w":12.375,"h":0.75,"clr":1},{"x":16.087,"y":44.25,"w":19.8,"h":1.5,"clr":1},{"x":35.888,"y":44.25,"w":30.938,"h":1.5,"clr":1},{"x":66.825,"y":44.25,"w":12.375,"h":1.5,"clr":1},{"x":79.2,"y":44.25,"w":8.662,"h":1.5,"clr":1},{"x":87.862,"y":44.25,"w":11.138,"h":1.5,"clr":1},{"x":16.087,"y":45.75,"w":51.975,"h":0.75,"clr":1},{"x":16.087,"y":46.5,"w":51.975,"h":0.75,"clr":1},{"x":68.063,"y":45.75,"w":30.938,"h":0.75,"clr":1},{"x":68.063,"y":46.5,"w":30.938,"h":0.75,"clr":1},{"x":55.688,"y":30.75,"w":3.713,"h":0.75,"clr":1},{"x":65.84,"y":9,"w":4.95,"h":0.75,"clr":1}],"Texts":[{"oc":"#bfbfbf","x":18.989,"y":18.893,"w":380.04,"clr":-1,"A":"left","R":[{"T":"DO%20NOT%20FILE","S":-1,"TS":[0,64,1,0]}]},{"oc":"#bfbfbf","x":20.077,"y":14.742,"w":370.2600000000001,"clr":-1,"A":"left","R":[{"T":"July%2026%2C%202013","S":-1,"TS":[0,64,1,0]}]},{"oc":"#bfbfbf","x":16.875,"y":10.768,"w":403.32000000000005,"clr":-1,"A":"left","R":[{"T":"DRAFT%20AS%20OF","S":-1,"TS":[0,64,1,0]}]},{"x":5.937,"y":1.968,"w":8.134000000000002,"clr":0,"A":"left","R":[{"T":"Form%201040%20(2013)%20","S":-1,"TS":[0,9.7,0,0]}]},{"x":94.505,"y":2.009,"w":2.5740000000000003,"clr":0,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"x":97.602,"y":2.009,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.938,"y":3.146,"w":4.334,"clr":0,"A":"left","R":[{"T":"Tax%20and%20%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.938,"y":3.9859999999999998,"w":3.4619999999999997,"clr":0,"A":"left","R":[{"T":"Credits","S":-1,"TS":[0,13,0,0]}]},{"x":15.546,"y":2.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"38%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":2.857,"w":20.284000000000006,"clr":0,"A":"left","R":[{"T":"Amount%20from%20line%2037%20(adjusted%20gross%20income)%20","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":2.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":2.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":2.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":2.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":2.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":2.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":2.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":2.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":2.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":2.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":2.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":2.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":2.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":2.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":2.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"38%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":3.607,"w":1.112,"clr":0,"A":"left","R":[{"T":"39","S":-1,"TS":[0,11,0,0]}]},{"x":17.075,"y":3.607,"w":0.8520000000000001,"clr":0,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":3.6689999999999996,"w":3.149,"clr":0,"A":"left","R":[{"T":"Check%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":4.357,"w":1.074,"clr":0,"A":"left","R":[{"T":"if%3A%20","S":-1,"TS":[0,11,0,0]}]},{"x":23.95,"y":4.037,"w":0.48,"clr":0,"A":"left","R":[{"T":"%7B","S":-1,"TS":[0,15,0,0]}]},{"x":28.281,"y":3.607,"w":1.871,"clr":0,"A":"left","R":[{"T":"You","S":-1,"TS":[0,11,0,0]}]},{"x":30.854,"y":3.607,"w":15.911000000000008,"clr":0,"A":"left","R":[{"T":"%20were%20born%20before%20January%202%2C%201949%2C%20","S":-1,"TS":[0,11,0,0]}]},{"x":59.081,"y":3.607,"w":2.556,"clr":0,"A":"left","R":[{"T":"Blind.","S":-1,"TS":[0,11,0,0]}]},{"x":28.281,"y":4.357,"w":3.575,"clr":0,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11,0,0]}]},{"x":33.197,"y":4.357,"w":15.541000000000007,"clr":0,"A":"left","R":[{"T":"%20was%20born%20before%20January%202%2C%201949%2C%20","S":-1,"TS":[0,11,0,0]}]},{"x":59.081,"y":4.357,"w":2.556,"clr":0,"A":"left","R":[{"T":"Blind.","S":-1,"TS":[0,11,0,0]}]},{"x":62.863,"y":4.024,"w":0.48,"clr":0,"A":"left","R":[{"T":"%7D","S":-1,"TS":[0,15,0,0]}]},{"x":64.1,"y":3.6689999999999996,"w":6.109999999999999,"clr":0,"A":"left","R":[{"T":"Total%20boxes%20%20","S":-1,"TS":[0,10.2,0,0]}]},{"x":64.1,"y":4.357,"w":4.074,"clr":0,"A":"left","R":[{"T":"checked","S":-1,"TS":[0,10.2,0,0]}]},{"x":69.748,"y":4.263,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":71.525,"y":4.357,"w":1.9640000000000002,"clr":0,"A":"left","R":[{"T":"39a%20","S":-1,"TS":[0,11,0,0]}]},{"x":17.075,"y":5.107,"w":0.889,"clr":0,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":5.089,"w":39.33799999999998,"clr":0,"A":"left","R":[{"T":"If%20your%20spouse%20itemizes%20on%20a%20separate%20return%20or%20you%20were%20a%20dual-status%20alien%2C%20%20check%20here","S":-1,"TS":[0,10.65,0,0]}]},{"x":71.516,"y":4.995,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":74.344,"y":5.107,"w":2.0010000000000003,"clr":0,"A":"left","R":[{"T":"39b%20","S":-1,"TS":[0,11,0,0]}]},{"x":5.938,"y":5.147,"w":4.909000000000001,"clr":0,"A":"left","R":[{"T":"Standard%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":5.585,"w":5.463000000000001,"clr":0,"A":"left","R":[{"T":"Deduction%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":6.022,"w":2.611,"clr":0,"A":"left","R":[{"T":"for%E2%80%94%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":6.647,"w":6.611000000000001,"clr":0,"A":"left","R":[{"T":"%E2%80%A2%20People%20who%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":7.084,"w":5.113000000000001,"clr":0,"A":"left","R":[{"T":"check%20any%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":7.521000000000001,"w":5.464,"clr":0,"A":"left","R":[{"T":"box%20on%20line%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":7.959,"w":5.095000000000001,"clr":0,"A":"left","R":[{"T":"39a%20or%2039b%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":12.505,"y":7.959,"w":1.278,"clr":0,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":8.396,"w":5.481999999999999,"clr":0,"A":"left","R":[{"T":"who%20can%20be%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":8.833,"w":6.186999999999999,"clr":0,"A":"left","R":[{"T":"claimed%20as%20a%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":9.271,"w":5.651000000000002,"clr":0,"A":"left","R":[{"T":"dependent%2C%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":9.708,"w":1.8519999999999999,"clr":0,"A":"left","R":[{"T":"see%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":10.145,"w":5.742000000000001,"clr":0,"A":"left","R":[{"T":"instructions.%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":10.77,"w":5.519000000000002,"clr":0,"A":"left","R":[{"T":"%E2%80%A2%20All%20others%3A%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":11.395,"w":4.5,"clr":0,"A":"left","R":[{"T":"Single%20or%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":11.832,"w":6.352,"clr":0,"A":"left","R":[{"T":"Married%20filing%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":12.27,"w":5.445,"clr":0,"A":"left","R":[{"T":"separately%2C%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":12.707,"w":3.3360000000000003,"clr":0,"A":"left","R":[{"T":"%246%2C100%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":13.332,"w":6.352,"clr":0,"A":"left","R":[{"T":"Married%20filing%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":13.769,"w":4.352,"clr":0,"A":"left","R":[{"T":"jointly%20or%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":14.207,"w":5.001000000000001,"clr":0,"A":"left","R":[{"T":"Qualifying%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":14.644,"w":5.127000000000001,"clr":0,"A":"left","R":[{"T":"widow(er)%2C%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":15.081,"w":4.17,"clr":0,"A":"left","R":[{"T":"%2412%2C200%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":15.706,"w":4.093,"clr":0,"A":"left","R":[{"T":"Head%20of%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":16.144,"w":5.502000000000001,"clr":0,"A":"left","R":[{"T":"household%2C%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":16.581,"w":3.3360000000000003,"clr":0,"A":"left","R":[{"T":"%248%2C950%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":15.546,"y":5.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"40%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":5.857,"w":9.959000000000001,"clr":0,"A":"left","R":[{"T":"Itemized%20deductions%20","S":-1,"TS":[0,11,0,0]}]},{"x":33.244,"y":5.857,"w":8.242,"clr":0,"A":"left","R":[{"T":"(from%20Schedule%20A)%20","S":-1,"TS":[0,11,0,0]}]},{"x":44.576,"y":5.857,"w":1.278,"clr":0,"A":"left","R":[{"T":"or%20","S":-1,"TS":[0,11,0,0]}]},{"x":46.334,"y":5.857,"w":2.241,"clr":0,"A":"left","R":[{"T":"your%20","S":-1,"TS":[0,11,0,0]}]},{"x":49.415,"y":5.857,"w":9.574,"clr":0,"A":"left","R":[{"T":"standard%20deduction%20","S":-1,"TS":[0,11,0,0]}]},{"x":62.579,"y":5.857,"w":7.371,"clr":0,"A":"left","R":[{"T":"(see%20left%20margin)%20","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":5.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.062,"y":5.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":5.857,"w":1.112,"clr":0,"A":"left","R":[{"T":"40","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":6.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"41%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":6.607,"w":12.856000000000007,"clr":0,"A":"left","R":[{"T":"Subtract%20line%2040%20from%20line%2038%20","S":-1,"TS":[0,11,0,0]}]},{"x":38.938,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":41,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":43.063,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":45.125,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":6.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":6.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"41%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":7.356999999999999,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"42%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":7.356999999999999,"w":5.904999999999999,"clr":0,"A":"left","R":[{"T":"Exemptions.","S":-1,"TS":[0,11,0,0]}]},{"x":28.051,"y":7.356999999999999,"w":43.885999999999974,"clr":0,"A":"left","R":[{"T":"If%20line%2038%20is%20%24150%2C000%20or%20less%2C%20multiply%20%243%2C900%20by%20the%20number%20on%20line%206d.%20Otherwise%2C%20see%20instructions","S":-1,"TS":[0,9.45,0,0]}]},{"x":80.042,"y":7.356999999999999,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"42%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":8.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"43%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":8.107,"w":8.366999999999999,"clr":0,"A":"left","R":[{"T":"Taxable%20income.%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":31.055,"y":8.107,"w":30.640000000000004,"clr":0,"A":"left","R":[{"T":"Subtract%20line%2042%20from%20line%2041.%20If%20line%2042%20is%20more%20than%20line%2041%2C%20enter%20-0-%20","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":8.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":8.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":8.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"43%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":8.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"44%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":8.857,"w":2.278,"clr":0,"A":"left","R":[{"T":"Tax%20%20","S":-1,"TS":[0,10.2,0,0]}]},{"x":22.369,"y":8.857,"w":16.54,"clr":0,"A":"left","R":[{"T":"(see%20instructions).%20Check%20if%20any%20from%3A%20","S":-1,"TS":[0,10.2,0,0]}]},{"x":42.547,"y":8.857,"w":0.8520000000000001,"clr":0,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"x":44.753,"y":8.857,"w":6.132,"clr":0,"A":"left","R":[{"T":"Form(s)%208814%20","S":-1,"TS":[0,11,0,0]}]},{"x":54.55,"y":8.857,"w":0.889,"clr":0,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"x":56.613,"y":8.857,"w":4.836,"clr":0,"A":"left","R":[{"T":"Form%204972","S":-1,"TS":[0,11,0,0]}]},{"x":63.738,"y":8.857,"w":0.5740000000000001,"clr":0,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":8.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"44%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":9.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"45%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":9.607,"w":12.124000000000002,"clr":0,"A":"left","R":[{"T":"Alternative%20minimum%20tax%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":36.221,"y":9.607,"w":16.412000000000006,"clr":0,"A":"left","R":[{"T":"(see%20instructions).%20Attach%20Form%206251%20","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":9.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":9.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":9.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":9.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":9.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":9.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":9.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":9.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":9.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":9.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"45%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":10.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"46%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":10.357,"w":9.171000000000001,"clr":0,"A":"left","R":[{"T":"Add%20lines%2044%20and%2045%20","S":-1,"TS":[0,11,0,0]}]},{"x":32.75,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":34.813,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":36.875,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":38.938,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":41,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":43.063,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":45.125,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":10.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.622,"y":10.263,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":80.042,"y":10.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"46%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":11.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"47%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.549,"y":11.107,"w":21.467,"clr":0,"A":"left","R":[{"T":"Foreign%20tax%20credit.%20Attach%20Form%201116%20if%20required%20","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":11.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":11.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":11.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":11.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":11.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"47%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":11.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"48%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.549,"y":11.866,"w":29.304000000000006,"clr":0,"A":"left","R":[{"T":"Credit%20for%20child%20and%20dependent%20care%20expenses.%20Attach%20Form%202441%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":60.242,"y":11.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"48%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":12.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"49%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.549,"y":12.607,"w":19.025000000000006,"clr":0,"A":"left","R":[{"T":"Education%20credits%20from%20Form%208863%2C%20line%2019%20","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":12.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":12.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":12.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":12.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":12.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":12.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"49%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":13.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"50%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.549,"y":13.357,"w":26.081000000000007,"clr":0,"A":"left","R":[{"T":"Retirement%20savings%20contributions%20credit.%20Attach%20Form%208880","S":-1,"TS":[0,11.4,0,0]}]},{"x":60.242,"y":13.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"50%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":14.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"51%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.549,"y":14.107,"w":22.264,"clr":0,"A":"left","R":[{"T":"Child%20tax%20credit.%20Attach%20Schedule%208812%2C%20if%20required","S":-1,"TS":[0,11.24,0,0]}]},{"x":51.313,"y":14.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.4,0,0]}]},{"x":53.376,"y":14.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.4,0,0]}]},{"x":55.439,"y":14.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.4,0,0]}]},{"x":60.242,"y":14.107,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"51%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":14.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"52%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.549,"y":14.857,"w":20.134000000000007,"clr":0,"A":"left","R":[{"T":"Residential%20energy%20credits.%20Attach%20Form%205695","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":14.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":14.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":14.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":14.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":14.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"52%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":15.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"53%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.597,"y":15.607,"w":11.318000000000003,"clr":0,"A":"left","R":[{"T":"Other%20credits%20from%20Form%3A%20","S":-1,"TS":[0,9.8,0,0]}]},{"x":33.163,"y":15.607,"w":0.8520000000000001,"clr":0,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"x":36.53,"y":15.582,"w":2.5020000000000002,"clr":0,"A":"left","R":[{"T":"3800%20","S":-1,"TS":[0,11,0,0]}]},{"x":40.587,"y":15.607,"w":0.889,"clr":0,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"x":44.03,"y":15.582,"w":2.5020000000000002,"clr":0,"A":"left","R":[{"T":"8801%20","S":-1,"TS":[0,11,0,0]}]},{"x":48.012,"y":15.607,"w":0.8520000000000001,"clr":0,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":15.607,"w":1.112,"clr":0,"A":"left","R":[{"T":"53","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":16.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"54%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":16.357,"w":18.135000000000005,"clr":0,"A":"left","R":[{"T":"Add%20lines%2047%20through%2053.%20These%20are%20your%20","S":-1,"TS":[0,11,0,0]}]},{"x":44.486,"y":16.357,"w":5.998000000000001,"clr":0,"A":"left","R":[{"T":"total%20credits%20","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":16.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":16.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":16.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":16.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":16.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":16.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":16.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":16.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":16.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":16.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":16.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":16.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":16.357,"w":1.112,"clr":0,"A":"left","R":[{"T":"54","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":17.045,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"55%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":17.045,"w":30.640000000000004,"clr":0,"A":"left","R":[{"T":"Subtract%20line%2054%20from%20line%2046.%20If%20line%2054%20is%20more%20than%20line%2046%2C%20enter%20-0-%20","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":17.045,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":17.045,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":17.045,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":17.045,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":17.045,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":17.045,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.622,"y":16.951,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":80.042,"y":17.107,"w":1.112,"clr":0,"A":"left","R":[{"T":"55","S":-1,"TS":[0,11,0,0]}]},{"x":5.938,"y":18.138,"w":3.242,"clr":0,"A":"left","R":[{"T":"Other%20%20","S":-1,"TS":[0,15,0,0]}]},{"x":5.938,"y":19.038,"w":3.111,"clr":0,"A":"left","R":[{"T":"Taxes%20","S":-1,"TS":[0,15,0,0]}]},{"x":15.546,"y":17.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"56%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":17.857,"w":19.023000000000003,"clr":0,"A":"left","R":[{"T":"Self-employment%20tax.%20Attach%20Schedule%20SE%20","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.063,"y":17.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":17.857,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"56%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":18.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"57%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":18.607,"w":25.299999999999997,"clr":0,"A":"left","R":[{"T":"Unreported%20social%20security%20and%20Medicare%20tax%20from%20Form%3A%20","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":18.607,"w":0.8520000000000001,"clr":0,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"x":59.081,"y":18.607,"w":2.5020000000000002,"clr":0,"A":"left","R":[{"T":"4137%20","S":-1,"TS":[0,11,0,0]}]},{"x":65.337,"y":18.607,"w":0.889,"clr":0,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"x":68.981,"y":18.607,"w":2.5020000000000002,"clr":0,"A":"left","R":[{"T":"8919%20","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":18.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.062,"y":18.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":80.042,"y":18.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"57%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":19.357,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"58%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":19.362,"w":39.915999999999976,"clr":0,"A":"left","R":[{"T":"Additional%20tax%20on%20IRAs%2C%20other%20qualified%20retirement%20plans%2C%20etc.%20Attach%20Form%205329%20if%20required%20","S":-1,"TS":[0,10.7,0,0]}]},{"x":74,"y":19.362,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":76.062,"y":19.362,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":80.042,"y":19.357,"w":1.112,"clr":0,"A":"left","R":[{"T":"58","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":20.107,"w":1.112,"clr":0,"A":"left","R":[{"T":"59","S":-1,"TS":[0,11,0,0]}]},{"x":17.075,"y":20.107,"w":0.8520000000000001,"clr":0,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"x":79.647,"y":20.107,"w":1.6860000000000002,"clr":0,"A":"left","R":[{"T":"59a","S":-1,"TS":[0,11,0,0]}]},{"x":17.075,"y":20.857,"w":0.889,"clr":0,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"x":79.622,"y":20.857,"w":1.723,"clr":0,"A":"left","R":[{"T":"59b","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":20.112,"w":21.413,"clr":0,"A":"left","R":[{"T":"Household%20employment%20taxes%20from%20Schedule%20H%20","S":-1,"TS":[0,10.7,0,0]}]},{"x":49.251,"y":20.112,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":51.312,"y":20.112,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":53.374,"y":20.112,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":55.436,"y":20.112,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":57.498,"y":20.112,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":59.56,"y":20.112,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":61.622,"y":20.112,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":63.684,"y":20.112,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":65.746,"y":20.112,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":67.808,"y":20.112,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":69.87,"y":20.112,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":71.932,"y":20.112,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":73.994,"y":20.112,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":76.055,"y":20.112,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":19.543,"y":20.862,"w":30.787000000000006,"clr":0,"A":"left","R":[{"T":"First-time%20homebuyer%20credit%20repayment.%20Attach%20Form%205405%20if%20required","S":-1,"TS":[0,10.7,0,0]}]},{"x":61.618,"y":20.862,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":63.68,"y":20.862,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":65.742,"y":20.862,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":67.804,"y":20.862,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":69.866,"y":20.862,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":71.928,"y":20.862,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":73.99,"y":20.862,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":76.051,"y":20.862,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":15.546,"y":21.607,"w":1.3900000000000001,"clr":0,"A":"left","R":[{"T":"60%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":21.607,"w":5.2780000000000005,"clr":0,"A":"left","R":[{"T":"Taxes%20from%3A","S":-1,"TS":[0,11,0,0]}]},{"x":28.212,"y":21.607,"w":0.8520000000000001,"clr":0,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"x":31.688,"y":21.582,"w":4.836,"clr":0,"A":"left","R":[{"T":"Form%208959","S":-1,"TS":[0,10.04,0,0]}]},{"x":38.112,"y":21.607,"w":0.889,"clr":0,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"x":41.564,"y":21.582,"w":4.836,"clr":0,"A":"left","R":[{"T":"Form%208960","S":-1,"TS":[0,10.04,0,0]}]},{"x":48.117,"y":21.607,"w":0.8520000000000001,"clr":0,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,11,0,0]}]},{"x":51.523,"y":21.582,"w":11.594000000000003,"clr":0,"A":"left","R":[{"T":"Instructions%3B%20enter%20code(s)","S":-1,"TS":[0,10.68,0,0]}]},{"x":80.042,"y":21.607,"w":1.112,"clr":0,"A":"left","R":[{"T":"60","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":22.357,"w":1.112,"clr":0,"A":"left","R":[{"T":"61","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":22.357,"w":16.597999999999995,"clr":0,"A":"left","R":[{"T":"Add%20lines%2055%20through%2060.%20This%20is%20your%20","S":-1,"TS":[0,11,0,0]}]},{"x":42.372,"y":22.357,"w":4.166,"clr":0,"A":"left","R":[{"T":"total%20tax%20","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.563,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":61.625,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":63.688,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":22.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.52,"y":22.263,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":80.042,"y":22.357,"w":1.112,"clr":0,"A":"left","R":[{"T":"61","S":-1,"TS":[0,11,0,0]}]},{"x":5.938,"y":23.196,"w":5,"clr":0,"A":"left","R":[{"T":"Payments%20","S":-1,"TS":[0,13,0,0]}]},{"x":15.546,"y":23.107,"w":1.112,"clr":0,"A":"left","R":[{"T":"62","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":23.107,"w":24.914,"clr":0,"A":"left","R":[{"T":"Federal%20income%20tax%20withheld%20from%20Forms%20W-2%20and%201099%20","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":23.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":23.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":23.107,"w":1.112,"clr":0,"A":"left","R":[{"T":"62","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":23.857,"w":1.112,"clr":0,"A":"left","R":[{"T":"63","S":-1,"TS":[0,11,0,0]}]},{"x":19.542,"y":23.848,"w":30.45800000000001,"clr":0,"A":"left","R":[{"T":"2013%20estimated%20tax%20payments%20and%20amount%20applied%20from%202012%20return%20","S":-1,"TS":[0,9.18091,0,0]}]},{"x":60.242,"y":23.857,"w":1.112,"clr":0,"A":"left","R":[{"T":"63","S":-1,"TS":[0,11,0,0]}]},{"x":5.938,"y":24.39,"w":6.241999999999999,"clr":0,"A":"left","R":[{"T":"If%20you%20have%20a%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":24.953,"w":4.834,"clr":0,"A":"left","R":[{"T":"qualifying%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":25.515,"w":6.039,"clr":0,"A":"left","R":[{"T":"child%2C%20attach%20%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.938,"y":26.078,"w":6.612000000000002,"clr":0,"A":"left","R":[{"T":"Schedule%20EIC.%20","S":-1,"TS":[0,10.5,0,0]}]},{"x":15.546,"y":24.607,"w":1.112,"clr":0,"A":"left","R":[{"T":"64","S":-1,"TS":[0,11,0,0]}]},{"x":17.075,"y":24.607,"w":0.5740000000000001,"clr":0,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":24.607,"w":13.050999999999997,"clr":0,"A":"left","R":[{"T":"Earned%20income%20credit%20(EIC)%20","S":-1,"TS":[0,11,0,0]}]},{"x":38.938,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":41,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":43.063,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":45.125,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":24.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":59.847,"y":24.607,"w":1.9640000000000002,"clr":0,"A":"left","R":[{"T":"64a%20","S":-1,"TS":[0,11,0,0]}]},{"x":17.075,"y":25.357,"w":0.889,"clr":0,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":25.357,"w":14.762000000000002,"clr":0,"A":"left","R":[{"T":"Nontaxable%20combat%20pay%20election%20","S":-1,"TS":[0,10.2,0,0]}]},{"x":40.022,"y":25.357,"w":2.0010000000000003,"clr":0,"A":"left","R":[{"T":"64b%20","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":26.107,"w":1.112,"clr":0,"A":"left","R":[{"T":"65","S":-1,"TS":[0,11,0,0]}]},{"x":19.549,"y":26.107,"w":22.061000000000007,"clr":0,"A":"left","R":[{"T":"Additional%20child%20tax%20credit.%20Attach%20Schedule%208812%20","S":-1,"TS":[0,10.6,0,0]}]},{"x":49.25,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":51.313,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":53.376,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":55.438,"y":26.107,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":56.675,"y":26.107,"w":0.8340000000000001,"clr":0,"A":"left","R":[{"T":"%20%20.","S":-1,"TS":[0,10.6,0,0]}]},{"x":60.242,"y":26.107,"w":1.112,"clr":0,"A":"left","R":[{"T":"65","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":26.857,"w":1.112,"clr":0,"A":"left","R":[{"T":"66","S":-1,"TS":[0,11,0,0]}]},{"x":19.549,"y":26.857,"w":23.1,"clr":0,"A":"left","R":[{"T":"American%20opportunity%20credit%20from%20Form%208863%2C%20line%208%20","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":26.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":26.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":26.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":26.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":26.857,"w":1.112,"clr":0,"A":"left","R":[{"T":"66","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":27.611,"w":1.112,"clr":0,"A":"left","R":[{"T":"67","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":27.607,"w":4.5,"clr":0,"A":"left","R":[{"T":"Reserved%20","S":-1,"TS":[0,11.32,0,0]}]},{"x":26.563,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":28.625,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":30.687,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":32.749,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":34.811,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":36.873,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":38.935,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":40.997,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":43.059,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":45.121,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":47.183,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":49.245,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":51.308,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":53.37,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":55.432,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":57.494,"y":27.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":60.242,"y":27.611,"w":1.112,"clr":0,"A":"left","R":[{"T":"67","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":28.361,"w":1.112,"clr":0,"A":"left","R":[{"T":"68","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":28.357,"w":20.29900000000001,"clr":0,"A":"left","R":[{"T":"Amount%20paid%20with%20request%20for%20extension%20to%20file","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":28.357,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":28.357,"w":1.112,"clr":0,"A":"left","R":[{"T":"68","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":29.111,"w":1.112,"clr":0,"A":"left","R":[{"T":"69","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":29.111,"w":22.889000000000006,"clr":0,"A":"left","R":[{"T":"Excess%20social%20security%20and%20tier%201%20RRTA%20tax%20withheld","S":-1,"TS":[0,10.65,0,0]}]},{"x":51.312,"y":29.111,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":53.376,"y":29.111,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":55.439,"y":29.111,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":57.502,"y":29.111,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":60.242,"y":29.111,"w":1.112,"clr":0,"A":"left","R":[{"T":"69","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":29.857,"w":1.112,"clr":0,"A":"left","R":[{"T":"70","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":29.857,"w":21.559000000000008,"clr":0,"A":"left","R":[{"T":"Credit%20for%20federal%20tax%20on%20fuels.%20Attach%20Form%204136","S":-1,"TS":[0,11.16,0,0]}]},{"x":51.312,"y":29.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":53.376,"y":29.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":55.439,"y":29.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":57.502,"y":29.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":60.242,"y":29.857,"w":1.112,"clr":0,"A":"left","R":[{"T":"70","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":30.607,"w":1.112,"clr":0,"A":"left","R":[{"T":"71","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":30.607,"w":8.724,"clr":0,"A":"left","R":[{"T":"Credits%20from%20Form%3A%20","S":-1,"TS":[0,9.4,0,0]}]},{"x":28.763,"y":30.607,"w":0.8520000000000001,"clr":0,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,0,0]}]},{"x":31.38,"y":30.607,"w":2.5020000000000002,"clr":0,"A":"left","R":[{"T":"2439%20","S":-1,"TS":[0,11,0,0]}]},{"x":36.875,"y":30.607,"w":0.889,"clr":0,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"x":40.416,"y":30.607,"w":4.2219999999999995,"clr":0,"A":"left","R":[{"T":"Reserved","S":-1,"TS":[0,7.8,0,0]}]},{"x":44.524,"y":30.607,"w":0.8520000000000001,"clr":0,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,11,0,0]}]},{"x":47.757,"y":30.607,"w":2.5020000000000002,"clr":0,"A":"left","R":[{"T":"8885%20","S":-1,"TS":[0,11,0,0]}]},{"x":51.726,"y":30.607,"w":0.889,"clr":0,"A":"left","R":[{"T":"d%20","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":30.607,"w":1.112,"clr":0,"A":"left","R":[{"T":"71","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":31.295,"w":1.112,"clr":0,"A":"left","R":[{"T":"72","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":31.295,"w":25.640000000000004,"clr":0,"A":"left","R":[{"T":"Add%20lines%2062%2C%2063%2C%2064a%2C%20and%2065%20through%2071.%20These%20are%20your%20","S":-1,"TS":[0,11,0,0]}]},{"x":54.805,"y":31.295,"w":7.369,"clr":0,"A":"left","R":[{"T":"total%20payments%20","S":-1,"TS":[0,11,0,0]}]},{"x":65.75,"y":31.295,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":67.813,"y":31.295,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":69.875,"y":31.295,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":31.295,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74,"y":31.295,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":76.52,"y":31.201,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":80.042,"y":31.357,"w":1.112,"clr":0,"A":"left","R":[{"T":"72","S":-1,"TS":[0,11,0,0]}]},{"x":5.938,"y":32.134,"w":3.704,"clr":0,"A":"left","R":[{"T":"Refund%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.938,"y":33.697,"w":7.372000000000002,"clr":0,"A":"left","R":[{"T":"Direct%20deposit%3F%20%20","S":2,"TS":[0,10,0,0]}]},{"x":5.938,"y":34.222,"w":2,"clr":0,"A":"left","R":[{"T":"See%20","S":2,"TS":[0,10,0,0]}]},{"x":5.938,"y":34.747,"w":5.742000000000001,"clr":0,"A":"left","R":[{"T":"instructions.%20","S":2,"TS":[0,10,0,0]}]},{"x":15.546,"y":32.107,"w":1.112,"clr":0,"A":"left","R":[{"T":"73","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":32.107,"w":36.71699999999999,"clr":0,"A":"left","R":[{"T":"If%20line%2072%20is%20more%20than%20line%2061%2C%20subtract%20line%2061%20from%20line%2072.%20This%20is%20the%20amount%20you%20","S":-1,"TS":[0,11.16,0,0]}]},{"x":71.046,"y":32.107,"w":4.426,"clr":0,"A":"left","R":[{"T":"overpaid%20","S":-1,"TS":[0,11.16,0,0]}]},{"x":80.042,"y":32.107,"w":1.112,"clr":0,"A":"left","R":[{"T":"73","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":32.857,"w":1.112,"clr":0,"A":"left","R":[{"T":"74","S":-1,"TS":[0,11,0,0]}]},{"x":17.075,"y":32.857,"w":0.5740000000000001,"clr":0,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":32.857,"w":12.485000000000003,"clr":0,"A":"left","R":[{"T":"Amount%20of%20line%2073%20you%20want%20","S":-1,"TS":[0,11,0,0]}]},{"x":36.717,"y":32.857,"w":7.797999999999998,"clr":0,"A":"left","R":[{"T":"refunded%20to%20you.","S":-1,"TS":[0,11,0,0]}]},{"x":47.439,"y":32.857,"w":16.913000000000007,"clr":0,"A":"left","R":[{"T":"%20If%20Form%208888%20is%20attached%2C%20check%20here%20","S":-1,"TS":[0,11,0,0]}]},{"x":71.938,"y":32.857,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":74.036,"y":32.763,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":79.647,"y":32.857,"w":1.9640000000000002,"clr":0,"A":"left","R":[{"T":"74a%20","S":-1,"TS":[0,11,0,0]}]},{"x":14.703,"y":33.44,"w":1.28,"clr":0,"A":"left","R":[{"T":"%E2%96%B6%20","S":-1,"TS":[2,9,0,0]}]},{"x":14.703,"y":34.253,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":17.075,"y":33.607,"w":0.889,"clr":0,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":33.607,"w":7.466000000000001,"clr":0,"A":"left","R":[{"T":"Routing%20number%20","S":-1,"TS":[0,11,0,0]}]},{"x":55.809,"y":33.513,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":57.127,"y":33.607,"w":0.8520000000000001,"clr":0,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,10.2,0,0]}]},{"x":58.182,"y":33.607,"w":2.7600000000000002,"clr":0,"A":"left","R":[{"T":"Type%3A%20","S":-1,"TS":[0,10.2,0,0]}]},{"x":64.031,"y":33.607,"w":4.223,"clr":0,"A":"left","R":[{"T":"Checking","S":-1,"TS":[0,10.2,0,0]}]},{"x":72.694,"y":33.607,"w":3.537,"clr":0,"A":"left","R":[{"T":"Savings","S":-1,"TS":[0,10.2,0,0]}]},{"x":17.075,"y":34.353,"w":0.889,"clr":0,"A":"left","R":[{"T":"d%20","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":34.357,"w":7.429,"clr":0,"A":"left","R":[{"T":"Account%20number","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":35.104,"w":1.112,"clr":0,"A":"left","R":[{"T":"75","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":35.103,"w":12.485000000000003,"clr":0,"A":"left","R":[{"T":"Amount%20of%20line%2073%20you%20want%20","S":-1,"TS":[0,10.52,0,0]}]},{"x":35.687,"y":35.103,"w":16.387000000000008,"clr":0,"A":"left","R":[{"T":"applied%20to%20your%202014%20estimated%20tax","S":-1,"TS":[0,10.52,0,0]}]},{"x":57.248,"y":35.01,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":60.242,"y":35.074,"w":1.112,"clr":0,"A":"left","R":[{"T":"75","S":-1,"TS":[0,11,0,0]}]},{"x":5.937,"y":35.771,"w":4.295999999999999,"clr":0,"A":"left","R":[{"T":"Amount%20%20","S":-1,"TS":[0,12.5,0,0]}]},{"x":5.937,"y":36.483,"w":4.593,"clr":0,"A":"left","R":[{"T":"You%20Owe%20","S":-1,"TS":[0,12.5,0,0]}]},{"x":15.546,"y":35.795,"w":1.112,"clr":0,"A":"left","R":[{"T":"76","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":35.795,"w":8.296000000000001,"clr":0,"A":"left","R":[{"T":"Amount%20you%20owe.","S":-1,"TS":[0,11,0,0]}]},{"x":30.957,"y":35.795,"w":33.17400000000001,"clr":0,"A":"left","R":[{"T":"%20Subtract%20line%2072%20from%20line%2061.%20For%20details%20on%20how%20to%20pay%2C%20see%20instructions%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"x":76.953,"y":35.701,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":80.042,"y":35.857,"w":1.112,"clr":0,"A":"left","R":[{"T":"76","S":-1,"TS":[0,11,0,0]}]},{"x":15.546,"y":36.607,"w":1.112,"clr":0,"A":"left","R":[{"T":"77","S":-1,"TS":[0,11,0,0]}]},{"x":19.55,"y":36.607,"w":17.781000000000002,"clr":0,"A":"left","R":[{"T":"Estimated%20tax%20penalty%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"x":45.125,"y":36.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":47.188,"y":36.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":49.25,"y":36.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":51.313,"y":36.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":53.375,"y":36.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":55.438,"y":36.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":57.5,"y":36.607,"w":0.278,"clr":0,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":60.242,"y":36.607,"w":1.112,"clr":0,"A":"left","R":[{"T":"77","S":-1,"TS":[0,11,0,0]}]},{"x":5.938,"y":37.634,"w":5.797000000000001,"clr":0,"A":"left","R":[{"T":"Third%20Party%20%20","S":-1,"TS":[0,12.4,0,0]}]},{"x":5.938,"y":38.384,"w":4.74,"clr":0,"A":"left","R":[{"T":"Designee%20","S":-1,"TS":[0,12.4,0,0]}]},{"x":17.075,"y":37.357,"w":40.15199999999999,"clr":0,"A":"left","R":[{"T":"Do%20you%20want%20to%20allow%20another%20person%20to%20discuss%20this%20return%20with%20the%20IRS%20(see%20instructions)%3F","S":-1,"TS":[0,11,0,0]}]},{"x":76.406,"y":37.357,"w":2.334,"clr":0,"A":"left","R":[{"T":"Yes.%20","S":-1,"TS":[0,11,0,0]}]},{"x":79.615,"y":37.357,"w":7.871,"clr":0,"A":"left","R":[{"T":"Complete%20below.%20","S":-1,"TS":[0,11,0,0]}]},{"x":94.969,"y":37.357,"w":1.3519999999999999,"clr":0,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":17.075,"y":38.285,"w":5.501000000000001,"clr":0,"A":"left","R":[{"T":"Designee%E2%80%99s%20%20","S":2,"TS":[0,10,0,0]}]},{"x":17.075,"y":38.875,"w":3.039,"clr":0,"A":"left","R":[{"T":"name%20%20","S":2,"TS":[0,10,0,0]}]},{"x":20.731,"y":38.781,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":47.622,"y":38.285,"w":3.4270000000000005,"clr":0,"A":"left","R":[{"T":"Phone%20%20","S":2,"TS":[0,10,0,0]}]},{"x":47.622,"y":38.875,"w":1.9640000000000002,"clr":0,"A":"left","R":[{"T":"no.%20%20","S":2,"TS":[0,10,0,0]}]},{"x":49.985,"y":38.781,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":70.288,"y":38.285,"w":10.167,"clr":0,"A":"left","R":[{"T":"Personal%20identification%20","S":2,"TS":[0,10,0,0]}]},{"x":70.288,"y":38.875,"w":10.023000000000007,"clr":0,"A":"left","R":[{"T":"number%20(PIN)%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"x":82.346,"y":38.781,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,9,0,0]}]},{"x":5.938,"y":39.611,"w":2.667,"clr":0,"A":"left","R":[{"T":"Sign%20%20","S":-1,"TS":[0,15,0,0]}]},{"x":5.938,"y":40.361,"w":2.556,"clr":0,"A":"left","R":[{"T":"Here%20","S":-1,"TS":[0,15,0,0]}]},{"x":5.938,"y":41.31,"w":2.797,"clr":0,"A":"left","R":[{"T":"Joint%20r","S":-1,"TS":[0,9.3,0,0]}]},{"x":8.947,"y":41.31,"w":1.741,"clr":0,"A":"left","R":[{"T":"etur","S":-1,"TS":[0,9.3,0,0]}]},{"x":10.851,"y":41.31,"w":3.39,"clr":0,"A":"left","R":[{"T":"n%3F%20See%20","S":-1,"TS":[0,9.3,0,0]}]},{"x":5.938,"y":41.835,"w":6.020000000000001,"clr":0,"A":"left","R":[{"T":"instructions.%20%20","S":-1,"TS":[0,9.3,0,0]}]},{"x":5.938,"y":42.36,"w":7.390000000000001,"clr":0,"A":"left","R":[{"T":"Keep%20a%20copy%20for%20","S":-1,"TS":[0,9.3,0,0]}]},{"x":5.938,"y":42.885,"w":2.5740000000000003,"clr":0,"A":"left","R":[{"T":"your%20r","S":-1,"TS":[0,9.3,0,0]}]},{"x":8.705,"y":42.885,"w":1.981,"clr":0,"A":"left","R":[{"T":"ecor","S":-1,"TS":[0,9.3,0,0]}]},{"x":10.831,"y":42.885,"w":1.649,"clr":0,"A":"left","R":[{"T":"ds.%20","S":-1,"TS":[0,9.3,0,0]}]},{"x":17.075,"y":39.595,"w":71.57399999999998,"clr":0,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20return%20and%20accompanying%20schedules%20and%20statements%2C%20and%20to%20the%20best%20of%20my%20knowledge%20and%20belief%2C%20","S":-1,"TS":[0,9.5,0,0]}]},{"x":17.075,"y":40.082,"w":65.69299999999994,"clr":0,"A":"left","R":[{"T":"they%20are%20true%2C%20correct%2C%20and%20complete.%20Declaration%20of%20preparer%20(other%20than%20taxpayer)%20is%20based%20on%20all%20information%20of%20which%20preparer%20has%20any%20knowledge.","S":-1,"TS":[0,9.5,0,0]}]},{"x":17.074,"y":41,"w":6.797000000000001,"clr":0,"A":"left","R":[{"T":"Your%20signature%20","S":2,"TS":[0,10,0,0]}]},{"x":47.462,"y":41,"w":2.371,"clr":0,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"x":56.125,"y":41,"w":7.668000000000001,"clr":0,"A":"left","R":[{"T":"Your%20occupation%20","S":2,"TS":[0,10,0,0]}]},{"x":79.638,"y":41,"w":10.468,"clr":0,"A":"left","R":[{"T":"Daytime%20phone%20number","S":2,"TS":[0,10,0,0]}]},{"x":17.074,"y":42.5,"w":16.151000000000003,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20signature.%20If%20a%20joint%20return%2C%20","S":2,"TS":[0,10,0,0]}]},{"x":36.506,"y":42.5,"w":2.445,"clr":0,"A":"left","R":[{"T":"both%20","S":2,"TS":[0,10,0,0]}]},{"x":39.447,"y":42.5,"w":4.91,"clr":0,"A":"left","R":[{"T":"must%20sign.%20","S":2,"TS":[0,10,0,0]}]},{"x":15.373,"y":40.996,"w":0.892,"clr":0,"A":"left","R":[{"T":"%E2%96%B2","S":-1,"TS":[2,38.9995,0,0],"RA":90}]},{"x":47.462,"y":42.5,"w":2.371,"clr":0,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"x":56.125,"y":42.5,"w":9.465,"clr":0,"A":"left","R":[{"T":"Spouse%E2%80%99s%20occupation","S":2,"TS":[0,10,0,0]}]},{"x":79.638,"y":42.5,"w":18.318000000000005,"clr":0,"A":"left","R":[{"T":"If%20the%20IRS%20sent%20you%20an%20Identity%20Protection%20","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":79.638,"y":42.937,"w":5.834000000000001,"clr":0,"A":"left","R":[{"T":"PIN%2C%20enter%20it%20%20","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":79.638,"y":43.375,"w":6.482000000000001,"clr":0,"A":"left","R":[{"T":"here%20(see%20inst.)","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":5.938,"y":44.382,"w":2.6660000000000004,"clr":0,"A":"left","R":[{"T":"Paid%20%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.938,"y":45.132,"w":4.723000000000001,"clr":0,"A":"left","R":[{"T":"Preparer%20%20","S":-1,"TS":[0,13,0,0]}]},{"x":5.938,"y":45.882,"w":4.555999999999999,"clr":0,"A":"left","R":[{"T":"Use%20Only%20","S":-1,"TS":[0,13,0,0]}]},{"x":17.041,"y":43.969,"w":12.502000000000006,"clr":0,"A":"left","R":[{"T":"Print%2FType%20preparer%E2%80%99s%20name%20","S":2,"TS":[0,10,0,0]}]},{"x":36.875,"y":44,"w":9.315000000000003,"clr":0,"A":"left","R":[{"T":"Preparer%E2%80%99s%20signature%20","S":2,"TS":[0,10,0,0]}]},{"x":67.263,"y":44,"w":2.371,"clr":0,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"x":79.638,"y":44.337,"w":6.447000000000003,"clr":0,"A":"left","R":[{"T":"Check%20%20%20%20%20%20%20%20%20if%20%20","S":2,"TS":[0,10,0,0]}]},{"x":79.638,"y":44.775,"w":6.353,"clr":0,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"x":88.3,"y":43.969,"w":2.481,"clr":0,"A":"left","R":[{"T":"%20PTIN","S":2,"TS":[0,10,0,0]}]},{"x":17.041,"y":45.625,"w":6.911000000000001,"clr":0,"A":"left","R":[{"T":"Firm%E2%80%99s%20name%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"x":25.355,"y":45.562,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":42,"TS":[2,8,0,0]}]},{"x":17.041,"y":46.375,"w":6.908999999999999,"clr":0,"A":"left","R":[{"T":"Firm%E2%80%99s%20address%20","S":2,"TS":[0,10,0,0]}]},{"x":25.353,"y":46.312,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":42,"TS":[2,8,0,0]}]},{"x":68.5,"y":45.625,"w":5.186,"clr":0,"A":"left","R":[{"T":"Firm's%20EIN%20%20","S":2,"TS":[0,10,0,0]}]},{"x":74.739,"y":45.562,"w":1,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":42,"TS":[2,8,0,0]}]},{"x":68.5,"y":46.375,"w":4.835000000000001,"clr":0,"A":"left","R":[{"T":"Phone%20no.%20","S":2,"TS":[0,10,0,0]}]},{"x":88.008,"y":47.075,"w":2.612,"clr":0,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"x":91.151,"y":47.075,"w":2.5020000000000002,"clr":0,"A":"left","R":[{"T":"1040%20","S":-1,"TS":[0,13,0,0]}]},{"x":95.451,"y":47.075,"w":3.02,"clr":0,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":601,"AM":0,"x":82.912,"y":3,"w":12.375,"h":0.833,"TU":"Page 2. Tax and credits. Line 38. Amount from line 37 (adjusted gross income). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N35A","EN":0},"TI":604,"AM":0,"x":75.487,"y":3.833,"w":3.625,"h":1.344,"TU":"Line 39. a. Total Boxes Checked."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":608,"AM":0,"x":82.912,"y":6,"w":12.375,"h":0.833,"TU":"Line 40. Itemized deductions (from Schedule A) or your standard deduction (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":609,"AM":0,"x":82.912,"y":6.75,"w":12.375,"h":0.833,"TU":"Line 41. Subtract line 40 from line 38. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":610,"AM":0,"x":82.912,"y":7.5,"w":12.375,"h":0.833,"TU":"Line 42. Exemptions. If line 38 is $150,000 or less, multiply $3,900 by the number on line 6d. Otherwise, see instructions. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXT10","EN":0},"TI":611,"AM":1024,"x":73.283,"y":8.187,"w":5.789,"h":0.833,"V":"Click \"Do the math\" before calculating tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":612,"AM":0,"x":82.912,"y":8.25,"w":12.375,"h":0.833,"TU":"Line 43. Taxable income. Subtract line 42 from line 41. If line 42 is more than line 41, enter zero. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT8814","EN":0},"TI":614,"AM":0,"x":51.708,"y":9.025,"w":3.078,"h":0.833,"TU":"Line 44. C. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40FM","EN":0},"TI":617,"AM":0,"x":67.959,"y":9,"w":4.95,"h":0.833,"TU":"Line 44. C. Form (Enter number)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L40T","EN":0},"TI":618,"AM":0,"x":72.857,"y":9.004,"w":3.078,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40W","EN":0},"TI":619,"AM":0,"x":75.948,"y":8.977,"w":3.078,"h":0.833,"TU":"Line 44. C. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":620,"AM":0,"x":82.912,"y":9,"w":12.375,"h":0.833,"TU":"Line 44. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":621,"AM":0,"x":82.912,"y":9.75,"w":12.375,"h":0.833,"TU":"Line 45. Alternative minimum tax (see instructions). Attach Form 6251. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":622,"AM":0,"x":82.912,"y":10.473,"w":12.375,"h":0.833,"TU":"Line 46. Add lines 44 and 45. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L43","EN":0},"TI":623,"AM":0,"x":63.112,"y":11.25,"w":12.375,"h":0.833,"TU":"Line 47. Foreign tax credit. Attach Form 1116 if required. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L44","EN":0},"TI":624,"AM":0,"x":63.112,"y":12,"w":12.375,"h":0.833,"TU":"Line 48. Credit for child and dependent care expenses. Attach Form 2441. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L46","EN":0},"TI":625,"AM":0,"x":63.112,"y":12.75,"w":12.375,"h":0.833,"TU":"Line 49. Education credits from Form 8863, line 19. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RSCCRED","EN":0},"TI":626,"AM":0,"x":63.112,"y":13.5,"w":12.375,"h":0.833,"TU":"Line 50. Retirement savings contributions credit. Attach Form 8880. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L47","EN":0},"TI":627,"AM":0,"x":63.112,"y":14.25,"w":12.375,"h":0.833,"TU":"Line 51. Child tax credit. Attach Schedule 8812, if required. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RESENRGY","EN":0},"TI":628,"AM":0,"x":63.112,"y":15,"w":12.375,"h":0.833,"TU":"Line 52. Residential energy credits. Attach Form 5695. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L49FM","EN":0},"TI":632,"AM":0,"x":51.975,"y":15.75,"w":4.95,"h":0.833,"TU":"Line 53. C. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L49","EN":0},"TI":633,"AM":0,"x":63.112,"y":15.75,"w":12.375,"h":0.833,"TU":"Line 53. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L50","EN":0},"TI":634,"AM":0,"x":82.912,"y":16.502,"w":12.375,"h":0.833,"TU":"Line 54. Add lines 47 through 53. These are your total credits. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L51","EN":0},"TI":635,"AM":0,"x":82.912,"y":17.25,"w":12.375,"h":0.833,"TU":"Line 55. Subtract line 54 from line 46. If line 54 is more than line 46, enter zero. Dollars. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L52T","EN":0},"TI":636,"AM":0,"x":46.713,"y":18.151,"w":20.822,"h":0.833,"TU":"Line 53. C. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L52","EN":0},"TI":637,"AM":0,"x":82.912,"y":18,"w":12.375,"h":0.833,"TU":"Other taxes. Line 56. Self-employment tax. Attach Schedule S E. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L53","EN":0},"TI":640,"AM":0,"x":82.912,"y":18.75,"w":12.375,"h":0.833,"TU":"Line 57. Dollars. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L54W","EN":0},"TI":641,"AM":0,"x":72.542,"y":19.608,"w":6.223,"h":0.833,"TU":"Line 53. C. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L54","EN":0},"TI":642,"AM":0,"x":82.912,"y":19.5,"w":12.375,"h":0.833,"TU":"Line 58. Additional tax on I R A s, other qualified retirement plans, etcetera. Attach Form 5329 if required. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L56","EN":0},"TI":643,"AM":0,"x":82.912,"y":20.25,"w":12.375,"h":0.833,"TU":"Line 59a. Household employment taxes from Schedule H. Dollars"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTHCR","EN":0},"TI":644,"AM":0,"x":82.912,"y":21,"w":12.375,"h":0.833,"TU":"Line 59b. First-time homebuyer credit repayment. Attach Form 5405 if required.\tDollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L57T","EN":0},"TI":648,"AM":0,"x":69.096,"y":21.858,"w":9.337,"h":0.833,"TU":"Line 60. Instructions; Enter code(s)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L57W","EN":0},"TI":649,"AM":0,"x":82.912,"y":21.75,"w":12.375,"h":0.833,"TU":"Line 60. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L57","EN":0},"TI":650,"AM":0,"x":82.912,"y":22.5,"w":12.375,"h":0.833,"TU":"Line 61. Add lines 55 through 60. This is your total tax. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L58","EN":0},"TI":651,"AM":0,"x":63.112,"y":23.25,"w":12.375,"h":0.833,"TU":"Payments. Line 62. Federal income tax withheld from Forms W-2 and 1099. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L59W","EN":0},"TI":652,"AM":0,"x":52.894,"y":23.983,"w":3.078,"h":0.833,"TU":"Line 44. C. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L59S","EN":0},"TI":653,"AM":0,"x":56.157,"y":24.018,"w":3.078,"h":0.833,"TU":"Line 44. C. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L59","EN":0},"TI":654,"AM":0,"x":63.112,"y":24,"w":12.375,"h":0.833,"TU":"Line 63. 2013 estimated tax payments and amount applied from 2012 return. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L60C","EN":0},"TI":655,"AM":0,"x":38.814,"y":24.835,"w":6.223,"h":0.833,"TU":"Line 53. C. Form (Enter number)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L60","EN":0},"TI":656,"AM":0,"x":63.112,"y":24.75,"w":12.375,"h":0.833,"TU":"Line 64. a. Earned income credit (E I C). If you have a qualifying child, attach Schedule E I C. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCOMBAT","EN":0},"TI":657,"AM":0,"x":43.313,"y":25.5,"w":12.375,"h":0.833,"TU":"Line 64. b. Nontaxable combat pay election. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L62","EN":0},"TI":658,"AM":0,"x":63.112,"y":26.25,"w":12.375,"h":0.833,"TU":"Line 65. Additional child tax credit. Attach schedule 8812. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOPE","EN":0},"TI":659,"AM":0,"x":63.112,"y":27,"w":12.375,"h":0.833,"TU":"Line 66. American opportunity credit from Form 8863, line 8. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L63","EN":0},"TI":660,"AM":0,"x":63.038,"y":28.462,"w":12.375,"h":0.833,"TU":"Reserved."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L61","EN":0},"TI":661,"AM":0,"x":63.038,"y":29.212,"w":12.375,"h":0.833,"TU":"Line 68. Amount paid with request for extension to file. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F4136AMT","EN":0},"TI":662,"AM":0,"x":63.112,"y":30,"w":12.375,"h":0.833,"TU":"Line 70. Credit for federal tax on fuels. Attach Form 4136. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L64","EN":0},"TI":666,"AM":0,"x":63.112,"y":30.75,"w":12.375,"h":0.833,"TU":"Line 71. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L64W","EN":0},"TI":667,"AM":0,"x":82.984,"y":30.545,"w":5.399,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L64A","EN":0},"TI":668,"AM":0,"x":89.732,"y":30.728,"w":5.399,"h":0.833,"TU":"Line 44. C. Form (Enter number)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L65T","EN":0},"TI":669,"AM":0,"x":65.187,"y":31.626,"w":5.913,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L65W","EN":0},"TI":670,"AM":0,"x":71.751,"y":31.622,"w":4.412,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L65","EN":0},"TI":671,"AM":0,"x":82.912,"y":31.5,"w":12.375,"h":0.833,"TU":"Line 72. Add lines 62, 63, 64a, and 65 through 71. These are your total payments. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L66","EN":0},"TI":672,"AM":0,"x":82.912,"y":32.25,"w":12.375,"h":0.833,"TU":"Refund. Line 73. If line 72 is more than line 61, subtract line 61 from line 72. This is the amount you overpaid. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L67A","EN":0},"TI":674,"AM":0,"x":82.912,"y":33,"w":12.375,"h":0.833,"TU":"Line 74. a. Dollars."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ROUTNO","EN":0},"TI":675,"AM":0,"x":32.22,"y":33.751,"w":22.107,"h":0.833,"MV":"maxl:9"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCNO","EN":0},"TI":677,"AM":0,"x":32.116,"y":34.491,"w":42.154,"h":0.833,"TU":"Account","MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L68","EN":0},"TI":679,"AM":0,"x":63.112,"y":35.342,"w":12.375,"h":0.833,"TU":"Line 75. Amount of line 73 you want applied to your 2014 estimated tax. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L69","EN":0},"TI":680,"AM":0,"x":82.912,"y":36,"w":12.375,"h":0.833,"TU":"Line 76. Amount you owe. Subtract line 72 from line 61. For details on how to pay, see instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L70","EN":0},"TI":681,"AM":0,"x":63.112,"y":36.75,"w":12.375,"h":0.833,"TU":"Line 77. Estimated tax penalty (see instructions). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESNAM","EN":0},"TI":684,"AM":0,"x":24.784,"y":38.665,"w":21.706,"h":1.023},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DESPH","EN":0},"TI":685,"AM":0,"x":52.821,"y":38.658,"w":16.841,"h":1.038},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DESPIN","EN":0},"TI":686,"AM":0,"x":85.245,"y":38.938,"w":11.138,"h":0.833,"MV":"99999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":687,"AM":0,"x":55.667,"y":41.91,"w":19.152,"h":0.833,"TU":"Your occupation"},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DTPHO","EN":0},"TI":688,"AM":0,"x":79.851,"y":41.867,"w":18.782,"h":0.896,"TU":"Daytime phone number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SOCC","EN":0},"TI":689,"AM":0,"x":56.127,"y":43.35,"w":18.924,"h":0.905,"TU":"Spouse’s occupation"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"IDTHEFT","EN":0},"TI":690,"AM":0,"x":86.402,"y":43.436,"w":12.21,"h":0.833,"MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":691,"AM":0,"x":24.923,"y":45.007,"w":51.624,"h":1.452}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A1","EN":0},"TI":602,"AM":0,"x":26.331,"y":3.813,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A2","EN":0},"TI":603,"AM":0,"x":57.269,"y":3.813,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A3","EN":0},"TI":605,"AM":0,"x":26.331,"y":4.562,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A4","EN":0},"TI":606,"AM":0,"x":57.269,"y":4.562,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35BB","EN":0},"TI":607,"AM":0,"x":77.069,"y":5.312,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L40BA","EN":0},"TI":613,"AM":0,"x":43.519,"y":9.063,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L40BB","EN":0},"TI":615,"AM":0,"x":56.295,"y":9.063,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX962","EN":0},"TI":616,"AM":0,"x":66.269,"y":9,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L49BA","EN":0},"TI":629,"AM":0,"x":34.65,"y":15.75,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L49BC","EN":0},"TI":630,"AM":0,"x":42.075,"y":15.75,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L49BD","EN":0},"TI":631,"AM":0,"x":49.569,"y":15.75,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F4137BX","EN":0},"TI":638,"AM":0,"x":57.146,"y":18.787,"w":1.561,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8919BX","EN":0},"TI":639,"AM":0,"x":67.065,"y":18.765,"w":1.561,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX8959","EN":0},"TI":645,"AM":0,"x":29.861,"y":21.732,"w":1.842,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX8960","EN":0},"TI":646,"AM":0,"x":39.879,"y":21.732,"w":1.745,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXOTHTAX","EN":0},"TI":647,"AM":0,"x":49.897,"y":21.767,"w":1.649,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L64BA","EN":0},"TI":663,"AM":0,"x":30.054,"y":30.804,"w":1.649,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX885","EN":0},"TI":664,"AM":0,"x":46.044,"y":30.84,"w":1.649,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L64FM","EN":0},"TI":665,"AM":0,"x":53.076,"y":30.699,"w":2.131,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8888","EN":0},"TI":673,"AM":0,"x":75.831,"y":33,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCS","EN":0},"TI":676,"AM":0,"x":70.861,"y":33.752,"w":1.348,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCC","EN":0},"TI":678,"AM":0,"x":62.177,"y":33.833,"w":1.423,"h":0.833,"checked":false}],"id":{"Id":"ACCRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PPDY","EN":0},"TI":682,"AM":0,"x":74.68,"y":37.508,"w":1.423,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PPDN","EN":0},"TI":683,"AM":0,"x":93.172,"y":37.536,"w":1.423,"h":0.833,"checked":false}],"id":{"Id":"PPDRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.7","IsAcroFormPresent":true,"IsXFAPresent":false,"Title":"2013 Form 1040","Author":"SE:W:CAR:MP","Subject":"U.S. Individual Income Tax Return","Keywords":"Fillable","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Adobe LiveCycle Designer ES 8.2","CreationDate":"D:20081118084506-05'00'","ModDate":"D:20140130122123-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":3.75,"w":1.5,"l":0.931,"oc":"#000000"},{"x":3.134,"y":3.75,"w":1.5,"l":3.181,"oc":"#000000"},{"x":22.484,"y":3.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":26.984,"y":3.75,"w":1.5,"l":9.031,"oc":"#000000"},{"x":6.284,"y":3.75,"w":1.5,"l":12.631,"oc":"#000000"},{"x":18.884,"y":3.75,"w":1.5,"l":3.609,"oc":"#000000"},{"x":2.234,"y":3.75,"w":1.5,"l":17.581,"oc":"#000000"},{"x":19.784,"y":3.75,"w":1.5,"l":5.431,"oc":"#000000"},{"x":25.184,"y":3.75,"w":1.5,"l":4.081,"oc":"#000000"},{"x":29.234,"y":3.75,"w":1.5,"l":6.781,"oc":"#000000"},{"x":29.234,"y":4.5,"w":0.75,"l":6.781,"oc":"#000000"},{"x":2.234,"y":4.5,"w":0.75,"l":11.281,"oc":"#000000"},{"x":2.234,"y":6,"w":0.75,"l":11.281,"oc":"#000000"},{"x":13.5,"y":6,"w":0.75,"l":15.75,"oc":"#000000"},{"x":13.5,"y":4.5,"w":0.75,"l":15.75,"oc":"#000000"},{"x":2.234,"y":6,"w":0.75,"l":11.281,"oc":"#000000"},{"x":2.234,"y":7.5,"w":0.75,"l":11.281,"oc":"#000000"},{"x":13.5,"y":7.5,"w":0.75,"l":15.75,"oc":"#000000"},{"x":13.5,"y":6,"w":0.75,"l":15.75,"oc":"#000000"},{"x":29.234,"y":6,"w":0.75,"l":6.781,"oc":"#000000"},{"x":29.234,"y":7.5,"w":0.75,"l":6.781,"oc":"#000000"},{"x":29.234,"y":9,"w":0.75,"l":0.931,"oc":"#000000"},{"x":30.134,"y":9,"w":0.75,"l":5.881,"oc":"#000000"},{"x":2.234,"y":7.5,"w":0.75,"l":23.881,"oc":"#000000"},{"x":2.234,"y":9,"w":0.75,"l":23.881,"oc":"#000000"},{"x":26.1,"y":9,"w":0.75,"l":3.15,"oc":"#000000"},{"x":26.1,"y":7.5,"w":0.75,"l":3.15,"oc":"#000000"},{"x":2.234,"y":9,"w":0.75,"l":27.031,"oc":"#000000"},{"x":2.234,"y":10.5,"w":0.75,"l":27.031,"oc":"#000000"},{"x":2.234,"y":10.5,"w":0.75,"l":13.981,"oc":"#000000"},{"x":2.234,"y":12,"w":0.75,"l":13.981,"oc":"#000000"},{"x":16.2,"y":12,"w":0.75,"l":9,"oc":"#000000"},{"x":16.2,"y":10.5,"w":0.75,"l":9,"oc":"#000000"},{"x":25.2,"y":12,"w":0.75,"l":4.05,"oc":"#000000"},{"x":25.2,"y":10.5,"w":0.75,"l":4.05,"oc":"#000000"},{"x":29.234,"y":9,"w":0.75,"l":6.781,"oc":"#000000"},{"x":29.234,"y":12,"w":0.75,"l":6.781,"oc":"#000000"},{"x":27.884,"y":14.25,"w":0.75,"l":8.131,"oc":"#000000"},{"x":2.25,"y":15,"w":1.2,"l":33.75,"oc":"#211f1f"},{"x":6.734,"y":16.5,"w":0.75,"l":8.142,"oc":"#000000"},{"x":6.734,"y":18,"w":0.75,"l":8.142,"oc":"#000000"},{"x":14.846,"y":16.5,"w":0.75,"l":5.292,"oc":"#000000"},{"x":14.846,"y":18,"w":0.75,"l":5.292,"oc":"#000000"},{"x":20.106,"y":16.5,"w":0.75,"l":4.064,"oc":"#000000"},{"x":20.106,"y":18,"w":0.75,"l":4.064,"oc":"#000000"},{"x":24.139,"y":16.5,"w":0.75,"l":5.423,"oc":"#000000"},{"x":24.139,"y":18,"w":0.75,"l":5.423,"oc":"#000000"},{"x":6.734,"y":18,"w":0.75,"l":8.142,"oc":"#000000"},{"x":6.734,"y":18.722,"w":0.75,"l":8.142,"oc":"#000000"},{"x":14.846,"y":18,"w":0.75,"l":5.292,"oc":"#000000"},{"x":14.846,"y":18.722,"w":0.75,"l":5.292,"oc":"#000000"},{"x":20.106,"y":18,"w":0.75,"l":4.064,"oc":"#000000"},{"x":20.106,"y":18.722,"w":0.75,"l":4.064,"oc":"#000000"},{"x":24.139,"y":18,"w":0.75,"l":5.423,"oc":"#000000"},{"x":24.139,"y":18.722,"w":0.75,"l":5.423,"oc":"#000000"},{"x":6.734,"y":18.722,"w":0.75,"l":8.142,"oc":"#000000"},{"x":6.734,"y":19.472,"w":0.75,"l":8.142,"oc":"#000000"},{"x":14.846,"y":18.722,"w":0.75,"l":5.292,"oc":"#000000"},{"x":14.846,"y":19.472,"w":0.75,"l":5.292,"oc":"#000000"},{"x":20.106,"y":18.722,"w":0.75,"l":4.064,"oc":"#000000"},{"x":20.106,"y":19.472,"w":0.75,"l":4.064,"oc":"#000000"},{"x":24.139,"y":18.722,"w":0.75,"l":5.423,"oc":"#000000"},{"x":24.139,"y":19.472,"w":0.75,"l":5.423,"oc":"#000000"},{"x":6.734,"y":19.472,"w":0.75,"l":8.142,"oc":"#000000"},{"x":6.734,"y":20.222,"w":0.75,"l":8.142,"oc":"#000000"},{"x":14.846,"y":19.472,"w":0.75,"l":5.292,"oc":"#000000"},{"x":14.846,"y":20.222,"w":0.75,"l":5.292,"oc":"#000000"},{"x":20.106,"y":19.472,"w":0.75,"l":4.064,"oc":"#000000"},{"x":20.106,"y":20.222,"w":0.75,"l":4.064,"oc":"#000000"},{"x":24.139,"y":19.472,"w":0.75,"l":5.423,"oc":"#000000"},{"x":24.139,"y":20.222,"w":0.75,"l":5.423,"oc":"#000000"},{"x":6.734,"y":20.222,"w":0.75,"l":8.142,"oc":"#000000"},{"x":6.734,"y":20.972,"w":0.75,"l":8.142,"oc":"#000000"},{"x":14.846,"y":20.222,"w":0.75,"l":5.292,"oc":"#000000"},{"x":14.846,"y":20.972,"w":0.75,"l":5.292,"oc":"#000000"},{"x":20.106,"y":20.222,"w":0.75,"l":4.064,"oc":"#000000"},{"x":20.106,"y":20.972,"w":0.75,"l":4.064,"oc":"#000000"},{"x":24.139,"y":20.222,"w":0.75,"l":5.423,"oc":"#000000"},{"x":24.139,"y":20.972,"w":0.75,"l":5.423,"oc":"#000000"},{"x":34.634,"y":16.125,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":17.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":19.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":20.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.65,"y":21.562,"w":2.25,"l":1.35,"oc":"#000000"},{"x":34.65,"y":20.437,"w":2.25,"l":1.35,"oc":"#000000"},{"x":2.25,"y":21.75,"w":1.2,"l":33.75,"oc":"#000000"},{"x":28.784,"y":22.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":21.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":22.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":21.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":22.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":23.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":22.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":23.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":22.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":23.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":21.584,"y":24,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":24,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.434,"y":24,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":23.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":23.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":23.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":24.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":24.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":24.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":21.584,"y":25.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":25.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.434,"y":25.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":24.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":24.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":24.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":26.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":26.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":26.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":27,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":26.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":27,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":26.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":27,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":27.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":27,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":27.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":27,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":27.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":28.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":27.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":28.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":27.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":28.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":29.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":28.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":29.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":28.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":29.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":13.934,"y":30,"w":0.75,"l":1.381,"oc":"#000000"},{"x":15.313,"y":30,"w":0.75,"l":4.531,"oc":"#000000"},{"x":19.784,"y":30,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":30,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":29.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":30,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":29.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":30,"w":0.75,"l":1.381,"oc":"#000000"},{"x":13.934,"y":30.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":15.313,"y":30,"w":0.75,"l":4.531,"oc":"#000000"},{"x":15.313,"y":30.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":19.8,"y":30.75,"w":0.75,"l":1.35,"oc":"#000000"},{"x":19.8,"y":30,"w":0.75,"l":1.35,"oc":"#000000"},{"x":28.784,"y":30.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":30,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":30.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":30,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":30.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":31.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":30.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":31.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":30.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":31.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":32.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":31.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":32.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":31.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":32.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":33,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":32.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":33,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":32.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":33,"w":0.75,"l":1.381,"oc":"#000000"},{"x":13.934,"y":33.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":15.284,"y":33.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":19.784,"y":33.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":33.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":33,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":33,"w":0.75,"l":1.381,"oc":"#000000"},{"x":17.084,"y":34.5,"w":0.75,"l":11.281,"oc":"#000000","dsh":1},{"x":28.784,"y":34.5,"w":1.125,"l":1.381,"oc":"#000000"},{"x":30.134,"y":33.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":34.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":33.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":34.5,"w":1.125,"l":1.381,"oc":"#000000"},{"x":30.134,"y":34.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":34.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":2.25,"y":35.25,"w":1.2,"l":33.75,"oc":"#211f1f"},{"x":28.784,"y":35.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":21.584,"y":36,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":36,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":35.25,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":36,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":35.25,"w":0.75,"l":1.35,"oc":"#000000"},{"x":30.134,"y":35.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":35.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":36,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.434,"y":36,"w":0.75,"l":1.381,"oc":"#000000"},{"x":21.584,"y":37.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":37.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.434,"y":37.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":21.584,"y":38.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":38.25,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":37.5,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":38.25,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":37.5,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":39,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":39,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":38.25,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":39,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":38.25,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":39.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":39.75,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":39,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":39.75,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":39,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":40.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":40.5,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":39.75,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":40.5,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":39.75,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":41.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":41.25,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":40.5,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":41.25,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":40.5,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":42,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":42,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":41.25,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":42,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":41.25,"w":0.75,"l":1.35,"oc":"#000000"},{"x":16.634,"y":42.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":21.584,"y":42.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":42.75,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":42,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":42.75,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":42,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":43.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":43.5,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":42.75,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":43.5,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":42.75,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":44.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":44.25,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":43.5,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":44.25,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":43.5,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":45,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":45,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":44.25,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":45,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":44.25,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":45.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":45.75,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":45,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":45.75,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":45,"w":0.75,"l":1.35,"oc":"#000000"},{"x":28.784,"y":46.5,"w":1.125,"l":1.381,"oc":"#000000"},{"x":30.134,"y":46.5,"w":1.125,"l":4.531,"oc":"#000000"},{"x":34.634,"y":46.5,"w":1.125,"l":1.381,"oc":"#000000"},{"x":30.134,"y":46.5,"w":1.125,"l":4.531,"oc":"#000000"},{"x":34.634,"y":46.5,"w":1.125,"l":1.381,"oc":"#000000"},{"x":2.234,"y":47.25,"w":1.5,"l":22.058,"oc":"#000000"},{"x":24.284,"y":47.25,"w":1.5,"l":7.231,"oc":"#000000"},{"x":31.484,"y":47.25,"w":1.5,"l":4.531,"oc":"#000000"}],"VLines":[{"x":27,"y":2.234,"w":0.75,"l":1.531,"oc":"#000000"},{"x":22.478,"y":2.234,"w":0.75,"l":1.547,"oc":"#000000"},{"x":18.9,"y":2.234,"w":0.75,"l":1.547,"oc":"#000000"},{"x":29.25,"y":3.719,"w":0.75,"l":0.797,"oc":"#000000"},{"x":13.5,"y":4.484,"w":0.75,"l":1.531,"oc":"#000000"},{"x":29.25,"y":4.5,"w":0.75,"l":1.5,"oc":"#000000"},{"x":13.5,"y":4.5,"w":0.75,"l":1.5,"oc":"#000000"},{"x":29.25,"y":4.469,"w":0.75,"l":1.563,"oc":"#000000"},{"x":31.362,"y":5.25,"w":0.75,"l":0.625,"oc":"#000000","dsh":1},{"x":32.712,"y":5.25,"w":0.75,"l":0.625,"oc":"#000000","dsh":1},{"x":13.5,"y":5.984,"w":0.75,"l":1.531,"oc":"#000000"},{"x":29.25,"y":6,"w":0.75,"l":1.5,"oc":"#000000"},{"x":13.5,"y":6,"w":0.75,"l":1.5,"oc":"#000000"},{"x":29.25,"y":5.984,"w":0.75,"l":1.531,"oc":"#000000"},{"x":31.362,"y":6.75,"w":0.75,"l":0.625,"oc":"#000000","dsh":1},{"x":32.712,"y":6.75,"w":0.75,"l":0.625,"oc":"#000000","dsh":1},{"x":26.1,"y":7.484,"w":0.75,"l":1.531,"oc":"#000000"},{"x":29.25,"y":7.5,"w":0.75,"l":1.5,"oc":"#000000"},{"x":26.1,"y":7.5,"w":0.75,"l":1.5,"oc":"#000000"},{"x":29.25,"y":8.984,"w":0.75,"l":1.531,"oc":"#000000"},{"x":16.2,"y":10.484,"w":0.75,"l":1.531,"oc":"#000000"},{"x":25.2,"y":10.5,"w":0.75,"l":1.5,"oc":"#000000"},{"x":16.2,"y":10.5,"w":0.75,"l":1.5,"oc":"#000000"},{"x":29.25,"y":10.5,"w":0.75,"l":1.5,"oc":"#000000"},{"x":25.2,"y":10.5,"w":0.75,"l":1.5,"oc":"#000000"},{"x":14.861,"y":16.484,"w":0.75,"l":1.531,"oc":"#000000"},{"x":20.122,"y":16.484,"w":0.75,"l":1.531,"oc":"#000000"},{"x":24.155,"y":16.484,"w":0.75,"l":1.531,"oc":"#000000"},{"x":14.861,"y":17.984,"w":0.75,"l":0.754,"oc":"#000000"},{"x":20.122,"y":17.984,"w":0.75,"l":0.754,"oc":"#000000"},{"x":24.155,"y":17.984,"w":0.75,"l":0.754,"oc":"#000000"},{"x":14.861,"y":18.707,"w":0.75,"l":0.781,"oc":"#000000"},{"x":20.122,"y":18.707,"w":0.75,"l":0.781,"oc":"#000000"},{"x":24.155,"y":18.707,"w":0.75,"l":0.781,"oc":"#000000"},{"x":14.861,"y":19.457,"w":0.75,"l":0.781,"oc":"#000000"},{"x":20.122,"y":19.457,"w":0.75,"l":0.781,"oc":"#000000"},{"x":24.155,"y":19.457,"w":0.75,"l":0.781,"oc":"#000000"},{"x":14.861,"y":20.207,"w":0.75,"l":0.781,"oc":"#000000"},{"x":20.122,"y":20.207,"w":0.75,"l":0.781,"oc":"#000000"},{"x":24.155,"y":20.207,"w":0.75,"l":0.781,"oc":"#000000"},{"x":17.699,"y":18.047,"w":0.75,"l":0.656,"oc":"#000000","dsh":1},{"x":16.512,"y":18.047,"w":0.75,"l":0.656,"oc":"#000000","dsh":1},{"x":17.699,"y":18.797,"w":0.75,"l":0.656,"oc":"#000000","dsh":1},{"x":16.512,"y":18.797,"w":0.75,"l":0.656,"oc":"#000000","dsh":1},{"x":17.699,"y":19.547,"w":0.75,"l":0.656,"oc":"#000000","dsh":1},{"x":16.512,"y":19.547,"w":0.75,"l":0.656,"oc":"#000000","dsh":1},{"x":17.699,"y":20.297,"w":0.75,"l":0.656,"oc":"#000000","dsh":1},{"x":16.512,"y":20.297,"w":0.75,"l":0.656,"oc":"#000000","dsh":1},{"x":36,"y":20.437,"w":2.25,"l":1.125,"oc":"#000000"},{"x":34.65,"y":20.437,"w":2.25,"l":1.125,"oc":"#000000"},{"x":28.8,"y":21.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":21.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":21.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":22.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":22.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":22.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":21.6,"y":23.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":23.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":23.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":23.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":23.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":23.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":23.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":23.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":23.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":23.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":23.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":21.6,"y":24.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":24.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":24.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":24.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":24.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":24.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":24.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":24.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":25.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":25.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":25.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":26.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":26.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":26.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":26.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":26.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":26.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":27.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":27.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":27.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":28.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":28.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":28.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":13.95,"y":29.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":15.329,"y":29.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":21.15,"y":29.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":19.8,"y":29.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":29.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":29.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":29.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":13.95,"y":29.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":15.329,"y":29.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":21.15,"y":30,"w":0.75,"l":0.75,"oc":"#000000"},{"x":19.8,"y":30,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":29.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":29.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":29.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":30.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":30.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":30.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":31.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":31.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":31.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":32.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":32.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":32.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":13.95,"y":32.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":15.3,"y":32.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":21.15,"y":32.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":19.8,"y":32.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":32.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":32.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":32.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":33.734,"w":0.75,"l":0.789,"oc":"#000000"},{"x":30.15,"y":33.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":33.734,"w":0.75,"l":0.789,"oc":"#000000"},{"x":28.8,"y":34.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":34.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":34.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":35.234,"w":0.75,"l":10.531,"oc":"#000000"},{"x":28.8,"y":35.234,"w":0.75,"l":10.531,"oc":"#000000"},{"x":21.6,"y":35.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":35.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":35.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":35.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":35.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":30.15,"y":35.234,"w":0.75,"l":10.531,"oc":"#000000"},{"x":34.65,"y":35.234,"w":0.75,"l":10.531,"oc":"#000000"},{"x":21.6,"y":35.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":35.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":35.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":35.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":35.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":21.6,"y":36.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":36.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":36.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":36.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":36.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":21.6,"y":37.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":37.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":37.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":37.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":37.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":38.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":38.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":38.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":38.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":38.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":38.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":39,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":39,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":39,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":39,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":39.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":39.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":39.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":39.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":39.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":40.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":40.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":40.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":40.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":40.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":41.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":41.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":41.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":41.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":41.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":19.062,"y":42,"w":0.75,"l":0.625,"oc":"#000000","dsh":1},{"x":18.125,"y":42,"w":0.75,"l":0.625,"oc":"#000000","dsh":1},{"x":21.6,"y":41.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":42,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":42,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":42,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":42,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":42.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":42.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":42.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":42.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":42.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":43.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":43.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":43.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":43.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":43.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":44.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":44.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":44.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":44.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":44.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":44.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":45,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":45,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":45,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":45,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":45.734,"w":0.75,"l":0.789,"oc":"#000000"},{"x":30.15,"y":45.734,"w":0.75,"l":0.789,"oc":"#000000"},{"x":34.65,"y":45.734,"w":0.75,"l":0.789,"oc":"#000000"},{"x":28.8,"y":46.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":46.476,"w":0.75,"l":0.789,"oc":"#000000"},{"x":34.65,"y":46.476,"w":0.75,"l":0.789,"oc":"#000000"}],"Fills":[{"x":6.3,"y":1.5,"w":29.7,"h":45.75,"oc":"#dcfffa"},{"x":1.8,"y":47.25,"w":34.65,"h":1.5,"oc":"#dcfffa"},{"x":2.25,"y":3.75,"w":17.55,"h":0.75,"clr":1},{"x":19.8,"y":3.75,"w":5.4,"h":0.75,"clr":1},{"x":25.2,"y":3.75,"w":4.05,"h":0.75,"clr":1},{"x":29.25,"y":3.75,"w":6.75,"h":0.75,"clr":1},{"x":2.25,"y":4.5,"w":11.25,"h":1.5,"clr":1},{"x":13.5,"y":4.5,"w":15.75,"h":1.5,"clr":1},{"x":29.25,"y":4.5,"w":6.75,"h":1.5,"clr":1},{"x":2.25,"y":6,"w":11.25,"h":1.5,"clr":1},{"x":13.5,"y":6,"w":15.75,"h":1.5,"clr":1},{"x":29.25,"y":6,"w":6.75,"h":1.5,"clr":1},{"x":2.25,"y":7.5,"w":23.85,"h":1.5,"clr":1},{"x":26.1,"y":7.5,"w":3.15,"h":1.5,"clr":1},{"x":2.25,"y":9,"w":27,"h":1.5,"clr":1},{"x":2.25,"y":10.5,"w":13.95,"h":1.5,"clr":1},{"x":16.2,"y":10.5,"w":9,"h":1.5,"clr":1},{"x":25.2,"y":10.5,"w":4.05,"h":1.5,"clr":1},{"x":13.95,"y":14.25,"w":6.75,"h":0.75,"clr":1},{"x":27.9,"y":13.5,"w":8.1,"h":0.75,"clr":1},{"x":6.75,"y":18,"w":8.111,"h":0.722,"clr":1},{"x":14.861,"y":18,"w":5.261,"h":0.722,"clr":1},{"x":20.122,"y":18,"w":4.033,"h":0.722,"clr":1},{"x":24.155,"y":18,"w":5.392,"h":0.722,"clr":1},{"x":6.75,"y":18.722,"w":8.111,"h":0.75,"clr":1},{"x":14.861,"y":18.722,"w":5.261,"h":0.75,"clr":1},{"x":20.122,"y":18.722,"w":4.033,"h":0.75,"clr":1},{"x":24.155,"y":18.722,"w":5.392,"h":0.75,"clr":1},{"x":6.75,"y":19.472,"w":8.111,"h":0.75,"clr":1},{"x":14.861,"y":19.472,"w":5.261,"h":0.75,"clr":1},{"x":20.122,"y":19.472,"w":4.033,"h":0.75,"clr":1},{"x":24.155,"y":19.472,"w":5.392,"h":0.75,"clr":1},{"x":6.75,"y":20.222,"w":8.111,"h":0.75,"clr":1},{"x":14.861,"y":20.222,"w":5.261,"h":0.75,"clr":1},{"x":20.122,"y":20.222,"w":4.033,"h":0.75,"clr":1},{"x":24.155,"y":20.222,"w":5.392,"h":0.75,"clr":1},{"x":30.15,"y":21.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":22.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":23.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":23.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":24,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":24.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":24.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":25.5,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":26.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":27,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":27.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":28.5,"w":4.5,"h":0.75,"clr":1},{"x":15.328,"y":29.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":29.25,"w":4.5,"h":0.75,"clr":1},{"x":15.328,"y":30,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":30,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":30.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":31.5,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":32.25,"w":4.5,"h":0.75,"clr":1},{"x":15.3,"y":33,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":33,"w":4.5,"h":0.75,"clr":1},{"x":17.1,"y":33.813,"w":11.25,"h":0.687,"clr":1},{"x":30.15,"y":33.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":34.5,"w":4.5,"h":0.75,"clr":1},{"x":28.8,"y":35.25,"w":1.35,"h":10.5,"clr":5},{"x":22.95,"y":35.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":35.25,"w":4.5,"h":10.5,"clr":1},{"x":34.65,"y":35.25,"w":1.35,"h":10.5,"clr":1},{"x":22.95,"y":36,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":36.75,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":37.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":38.25,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":39,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":39.75,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":40.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":41.25,"w":4.5,"h":0.75,"clr":1},{"x":16.65,"y":42,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":42,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":42.75,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":43.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":44.25,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":45,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":45.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":46.5,"w":4.5,"h":0.75,"clr":1}],"Texts":[{"x":6.942,"y":22.133,"w":380.04,"oc":"#bfbfbf","sw":0.36196875,"A":"left","R":[{"T":"DO NOT FILE","S":-1,"TS":[0,64,1,0]}]},{"x":7.338,"y":17.982,"w":370.26,"oc":"#bfbfbf","sw":0.36196875,"A":"left","R":[{"T":"July 26, 2013","S":-1,"TS":[0,64,1,0]}]},{"x":6.174,"y":14.008,"w":403.32,"oc":"#bfbfbf","sw":0.36196875,"A":"left","R":[{"T":"DRAFT AS OF","S":-1,"TS":[0,64,1,0]}]},{"x":2.544,"y":2.76,"w":2.334,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0],"RA":90}]},{"x":2.9,"y":2.571,"w":2.34,"clr":0,"sw":0.33853125,"A":"left","R":[{"T":"1040 ","S":-1,"TS":[0,27,0,0]}]},{"x":6.55,"y":1.9929999999999999,"w":24.633,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury—Internal Revenue Service ","S":51,"TS":[0,9,0,0]}]},{"x":22.469,"y":2.75,"w":9.283,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":17.169,"y":2,"w":1.63,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"(99)","S":2,"TS":[0,10,0,0]}]},{"x":26.986,"y":2.708,"w":23.021,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"IRS Use Only—Do not write or staple in this space. ","S":51,"TS":[0,9,0,0]}]},{"x":6.55,"y":2.764,"w":15.52,"clr":0,"sw":0.390625,"A":"left","R":[{"T":"U.S. Individual Income Tax Return ","S":-1,"TS":[0,15,0,0]}]},{"x":18.814,"y":2.642,"w":1.264,"clr":0,"sw":0.41146875,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":20.394,"y":2.642,"w":1.336,"clr":0,"sw":0.43490625,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"x":2.25,"y":3.5119999999999996,"w":27.915,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"For the year Jan. 1–Dec. 31, 2013, or other tax year beginning ","S":-1,"TS":[0,9.16,0,0]}]},{"x":19.55,"y":3.5119999999999996,"w":6.652,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":", 2013, ending ","S":-1,"TS":[0,9.16,0,0]}]},{"x":24.95,"y":3.5119999999999996,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":",","S":-1,"TS":[0,9.3,0,0]}]},{"x":29.25,"y":3.4859999999999998,"w":11.631,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"See separate instructions.","S":-1,"TS":[0,11,0,0]}]},{"x":2.25,"y":4.17,"w":11.632,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Your first name and initial ","S":2,"TS":[0,10,0,0]}]},{"x":13.5,"y":4.167,"w":4.947,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Last name ","S":2,"TS":[0,10,0,0]}]},{"x":29.25,"y":4.171,"w":13.646,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Your social security number ","S":2,"TS":[0,10,0,0]}]},{"x":2.25,"y":5.658,"w":20.56,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"If a joint return, spouse’s first name and initial ","S":2,"TS":[0,10,0,0]}]},{"x":13.5,"y":5.656,"w":4.947,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Last name ","S":2,"TS":[0,10,0,0]}]},{"x":29.25,"y":5.659,"w":15.776,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Spouse’s social security number ","S":-1,"TS":[0,9.3,0,0]}]},{"x":29.138,"y":7.536,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▲","S":-1,"TS":[2,13,0,0]}]},{"x":30.05,"y":7.335000000000001,"w":12.965,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Make sure the SSN(s) above ","S":2,"TS":[0,10,0,0]}]},{"x":30.269,"y":7.859999999999999,"w":11.687,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"and on line 6c are correct.","S":2,"TS":[0,10,0,0]}]},{"x":2.25,"y":7.16,"w":34.157,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Home address (number and street). If you have a P.O. box, see instructions. ","S":2,"TS":[0,10,0,0]}]},{"x":26.78,"y":7.156,"w":3.798,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Apt. no. ","S":2,"TS":[0,10,0,0]}]},{"x":2.25,"y":8.647,"w":55.172,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"City, town or post office, state, and ZIP code. If you have a foreign address, also complete spaces below (see instructions). ","S":-1,"TS":[0,9.3,0,0]}]},{"x":2.25,"y":10.186,"w":20.9,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Foreign country name ","S":2,"TS":[0,10,0,0]}]},{"x":16.2,"y":10.189,"w":20.08,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Foreign province/state/county ","S":2,"TS":[0,10,0,0]}]},{"x":25.2,"y":10.186,"w":9.742,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Foreign postal code ","S":-1,"TS":[0,9.3,0,0]}]},{"x":29.559,"y":8.722,"w":14.937,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Presidential Election Campaign","S":-1,"TS":[0,9.3,0,0]}]},{"x":29.125,"y":9.408,"w":18.502,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Check here if you, or your spouse if filing ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":29.125,"y":9.908,"w":19.69,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"jointly, want $3 to go to this fund. Checking ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":29.125,"y":10.408,"w":17.814,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a box below will not change your tax or ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":29.125,"y":10.908,"w":3.427,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"refund. ","S":-1,"TS":[0,8.440000000000001,0,0]}]},{"x":32.539,"y":11.012,"w":2.149,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"You ","S":-1,"TS":[0,9.3,0,0]}]},{"x":34.287,"y":11.012,"w":3.575,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,9.09,0,0]}]},{"x":2,"y":12.139,"w":6.184,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Filing Status ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":13.311,"w":7.224,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Check only one ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":13.911,"w":2.241,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"box. ","S":-1,"TS":[0,11,0,0]}]},{"x":7.122,"y":11.857,"w":0.834,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"1 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.75,"y":11.857,"w":3.037,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Single ","S":-1,"TS":[0,11,0,0]}]},{"x":7.122,"y":12.607,"w":0.834,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"2 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.75,"y":12.607,"w":22.281,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Married filing jointly (even if only one had income) ","S":-1,"TS":[0,11,0,0]}]},{"x":7.122,"y":13.357,"w":0.834,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"3 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.75,"y":13.357,"w":23.502,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Married filing separately. Enter spouse’s SSN above ","S":-1,"TS":[0,11,0,0]}]},{"x":8.75,"y":13.982,"w":8.818,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"and full name here. ","S":-1,"TS":[0,11,0,0]}]},{"x":13.159,"y":13.919,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":21.522,"y":11.857,"w":0.834,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"4 ","S":-1,"TS":[0,11,0,0]}]},{"x":23.15,"y":11.878,"w":28.706,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Head of household (with qualifying person). (See instructions.) If ","S":-1,"TS":[0,9.8,0,0]}]},{"x":23.15,"y":12.566,"w":29.342,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"the qualifying person is a child but not your dependent, enter this ","S":-1,"TS":[0,9.8,0,0]}]},{"x":23.15,"y":13.254,"w":8.744,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"child’s name here. ","S":-1,"TS":[0,9.8,0,0]}]},{"x":26.866,"y":13.191,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":21.522,"y":13.982,"w":0.834,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"5 ","S":-1,"TS":[0,11,0,0]}]},{"x":23.15,"y":13.991,"w":18.926,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Qualifying widow(er) with dependent child ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":15.134,"w":5.905,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Exemptions ","S":-1,"TS":[0,13,0,0]}]},{"x":7.122,"y":14.857,"w":0.556,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11,0,0]}]},{"x":7.4,"y":14.857,"w":0.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":9.2,"y":14.857,"w":4.518,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Yourself. ","S":-1,"TS":[0,11,0,0]}]},{"x":11.459,"y":14.857,"w":18.932,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"If someone can claim you as a dependent,","S":-1,"TS":[0,11,0,0]}]},{"x":20.925,"y":14.857,"w":3.612,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" do not ","S":-1,"TS":[0,11,0,0]}]},{"x":22.731,"y":14.857,"w":6.298,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"check box 6a ","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":14.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":14.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":14.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.25,"y":14.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":29,"y":14.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":7.4,"y":15.607,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":9.2,"y":15.607,"w":4.131,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Spouse ","S":-1,"TS":[0,11,0,0]}]},{"x":11.75,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":12.5,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":13.25,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":14,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":14.75,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":15.5,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.25,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":29,"y":15.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":29.45,"y":15.314,"w":0.48,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[0,15,0,0]}]},{"x":7.4,"y":16.357,"w":0.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":16.344,"w":6.594,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Dependents: ","S":-1,"TS":[0,11,0,0]}]},{"x":6.5,"y":17.062,"w":1.312,"clr":0,"sw":0.3125,"A":"left","R":[{"T":"(1) ","S":2,"TS":[0,10,0,0]}]},{"x":7.074,"y":17.062,"w":4.403,"clr":0,"sw":0.3125,"A":"left","R":[{"T":" First name ","S":2,"TS":[0,10,0,0]}]},{"x":9,"y":17.062,"w":5.76,"clr":0,"sw":0.3125,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":11.52,"y":17.062,"w":4.107,"clr":0,"sw":0.3125,"A":"left","R":[{"T":"Last name ","S":2,"TS":[0,10,0,0]}]},{"x":15.937999999999999,"y":16.331,"w":1.312,"clr":0,"sw":0.3125,"A":"left","R":[{"T":"(2) ","S":2,"TS":[0,10,0,0]}]},{"x":16.512,"y":16.331,"w":4.646,"clr":0,"sw":0.3125,"A":"left","R":[{"T":"Dependent’s","S":2,"TS":[0,10,0,0]}]},{"x":18.545,"y":16.331,"w":0.24,"clr":0,"sw":0.3125,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":15.412,"y":16.856,"w":8.605,"clr":0,"sw":0.3125,"A":"left","R":[{"T":"social security number ","S":2,"TS":[0,10,0,0]}]},{"x":20.585,"y":16.331,"w":1.072,"clr":0,"sw":0.3125,"A":"left","R":[{"T":"(3)","S":2,"TS":[0,10,0,0]}]},{"x":21.054,"y":16.331,"w":5.126,"clr":0,"sw":0.3125,"A":"left","R":[{"T":" Dependent’s ","S":2,"TS":[0,10,0,0]}]},{"x":23.297,"y":16.331,"w":0.24,"clr":0,"sw":0.3125,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":20.351,"y":16.856,"w":5.478,"clr":0,"sw":0.3125,"A":"left","R":[{"T":"relationship to ","S":2,"TS":[0,10,0,0]}]},{"x":22.747,"y":16.856,"w":0.24,"clr":0,"sw":0.3125,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":22.852,"y":16.856,"w":1.553,"clr":0,"sw":0.3125,"A":"left","R":[{"T":"you ","S":2,"TS":[0,10,0,0]}]},{"x":24.407,"y":16.2,"w":1.552,"clr":0,"sw":0.3125,"A":"left","R":[{"T":"(4) ","S":2,"TS":[0,10,0,0]}]},{"x":25.086,"y":16.2,"w":0.755,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"✓","S":43,"TS":[2,10,0,0]}]},{"x":25.417,"y":16.2,"w":0.24,"clr":0,"sw":0.3125,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":25.522,"y":16.2,"w":7.863,"clr":0,"sw":0.3125,"A":"left","R":[{"T":"if child under age 17 ","S":2,"TS":[0,10,0,0]}]},{"x":24.337,"y":16.637,"w":10.733,"clr":0,"sw":0.3125,"A":"left","R":[{"T":"qualifying for child tax credit ","S":2,"TS":[0,10,0,0]}]},{"x":29.033,"y":16.637,"w":0.24,"clr":0,"sw":0.3125,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":25.251,"y":17.075,"w":6.552,"clr":0,"sw":0.3125,"A":"left","R":[{"T":"(see instructions) ","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":18.324,"w":7.965,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"If more than four ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":18.924,"w":8.003,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"dependents, see ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":19.524,"w":7.428,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"instructions and ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":20.144,"w":5.483,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"check here ","S":-1,"TS":[0,11,0,0]}]},{"x":4.741,"y":20.05,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":7.4,"y":20.794,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"d ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":20.794,"w":16.616,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Total number of exemptions claimed ","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.25,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":29,"y":20.794,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":30.35,"y":14.731,"w":7.593,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Boxes checked ","S":2,"TS":[0,10,0,0]}]},{"x":30.35,"y":15.169,"w":6.113,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"on 6a and 6b","S":2,"TS":[0,10,0,0]}]},{"x":30.35,"y":15.762,"w":7.536,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"No. of children ","S":2,"TS":[0,10,0,0]}]},{"x":30.35,"y":16.2,"w":5.464,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"on 6c who: ","S":2,"TS":[0,10,0,0]}]},{"x":30.35,"y":16.637,"w":0.778,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"• ","S":2,"TS":[0,10,0,0]}]},{"x":30.69,"y":16.637,"w":6.795,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"lived with you ","S":2,"TS":[0,10,0,0]}]},{"x":30.35,"y":17.143,"w":0.778,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"• ","S":-1,"TS":[0,9.5,0,0]}]},{"x":30.666,"y":17.143,"w":7.775,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"did not live with ","S":-1,"TS":[0,9.5,0,0]}]},{"x":33.825,"y":17.143,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.5,0,0]}]},{"x":30.35,"y":17.549,"w":9.113,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"you due to divorce ","S":-1,"TS":[0,9.5,0,0]}]},{"x":34.052,"y":17.549,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.5,0,0]}]},{"x":30.35,"y":17.956,"w":6.351,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"or separation","S":-1,"TS":[0,9.5,0,0]}]},{"x":32.93,"y":17.956,"w":0.556,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.5,0,0]}]},{"x":30.35,"y":18.362,"w":8.202,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"(see instructions)","S":-1,"TS":[0,9.5,0,0]}]},{"x":30.35,"y":19.059,"w":8.928,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Dependents on 6c ","S":-1,"TS":[0,9.5,0,0]}]},{"x":30.35,"y":19.465,"w":8.947,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"not entered above ","S":-1,"TS":[0,9.5,0,0]}]},{"x":30.35,"y":20.337,"w":8.426,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Add numbers on ","S":2,"TS":[0,10,0,0]}]},{"x":30.35,"y":20.809,"w":5.944,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"lines above ","S":2,"TS":[0,10,0,0]}]},{"x":32.95,"y":20.746,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":2,"y":21.91,"w":3.831,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Income ","S":-1,"TS":[0,15,0,0]}]},{"x":2,"y":23.606,"w":7.592,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Attach Form(s) ","S":-1,"TS":[0,10.8,0,0]}]},{"x":2,"y":24.191,"w":7.518,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"W-2 here. Also ","S":-1,"TS":[0,10.8,0,0]}]},{"x":2,"y":24.776,"w":6.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"attach Forms ","S":-1,"TS":[0,10.8,0,0]}]},{"x":2,"y":25.361,"w":5.556,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"W-2G and ","S":-1,"TS":[0,10.8,0,0]}]},{"x":2,"y":25.946,"w":6.519,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"1099-R if tax ","S":-1,"TS":[0,10.8,0,0]}]},{"x":2,"y":26.531,"w":6.812,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"was withheld. ","S":-1,"TS":[0,10.8,0,0]}]},{"x":2,"y":28.112,"w":6.428,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"If you did not ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":28.712,"w":5.502,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"get a W-2, ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":29.312,"w":7.594,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"see instructions. ","S":-1,"TS":[0,11,0,0]}]},{"x":7.122,"y":21.607,"w":0.834,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"7 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":21.607,"w":20.67,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Wages, salaries, tips, etc. Attach Form(s) W-2 ","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":21.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":21.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":21.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":21.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":21.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":21.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":21.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":21.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":21.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":21.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":21.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":21.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":29.086,"y":21.607,"w":0.834,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"7 ","S":-1,"TS":[0,11,0,0]}]},{"x":7.122,"y":22.357,"w":0.556,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11,0,0]}]},{"x":7.4,"y":22.357,"w":0.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":22.357,"w":4.017,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Taxable ","S":-1,"TS":[0,11,0,0]}]},{"x":10.309,"y":22.357,"w":17.262,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"interest. Attach Schedule B if required ","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.942,"y":22.357,"w":1.408,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"8a ","S":-1,"TS":[0,11,0,0]}]},{"x":7.4,"y":23.107,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":23.107,"w":5.961,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Tax-exempt ","S":-1,"TS":[0,11,0,0]}]},{"x":11.28,"y":23.107,"w":3.871,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"interest. ","S":-1,"TS":[0,11,0,0]}]},{"x":13.216,"y":23.107,"w":3.464,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Do not ","S":-1,"TS":[0,11,0,0]}]},{"x":14.948,"y":23.107,"w":8.095,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"include on line 8a ","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":23.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":23.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":23.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.733,"y":23.107,"w":1.445,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"8b ","S":-1,"TS":[0,11,0,0]}]},{"x":7.122,"y":23.857,"w":0.834,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"9 ","S":-1,"TS":[0,11,0,0]}]},{"x":7.4,"y":23.857,"w":0.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":23.857,"w":22.375,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Ordinary dividends. Attach Schedule B if required ","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":23.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":23.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":23.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":23.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":23.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":23.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":23.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":23.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":23.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":23.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":23.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.942,"y":23.857,"w":1.408,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"9a ","S":-1,"TS":[0,11,0,0]}]},{"x":7.4,"y":24.607,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":24.607,"w":8.817,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Qualified dividends ","S":-1,"TS":[0,11,0,0]}]},{"x":13.25,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":14,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":14.75,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":15.5,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.733,"y":24.607,"w":1.445,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"9b ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":25.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"10 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":25.357,"w":30.003,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Taxable refunds, credits, or offsets of state and local income taxes ","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":25.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":25.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":25.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":25.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":25.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":25.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":25.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"10 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":26.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"11 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":26.107,"w":7.927,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Alimony received ","S":-1,"TS":[0,11,0,0]}]},{"x":12.5,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":13.25,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":14,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":14.75,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":15.5,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":26.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"11 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":26.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"12 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":26.857,"w":24.392,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Business income or (loss). Attach Schedule C or C-EZ ","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":26.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":26.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":26.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":26.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":26.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":26.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":26.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":26.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":26.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":26.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":26.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"12 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":27.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"13 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":27.607,"w":35.635,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Capital gain or (loss). Attach Schedule D if required. If not required, check here ","S":-1,"TS":[0,11,0,0]}]},{"x":26.117,"y":27.513,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":28.947,"y":27.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"13 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":28.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"14 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":28.357,"w":18.838,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Other gains or (losses). Attach Form 4797 ","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":28.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"14 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":29.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"15 ","S":-1,"TS":[0,11,0,0]}]},{"x":7.4,"y":29.107,"w":0.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":29.107,"w":7.649,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"IRA distributions ","S":-1,"TS":[0,11,0,0]}]},{"x":12.5,"y":29.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":13.954,"y":29.107,"w":1.964,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"15a ","S":-1,"TS":[0,11,0,0]}]},{"x":21.35,"y":29.107,"w":1.167,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":21.934,"y":29.107,"w":7.465,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Taxable amount ","S":-1,"TS":[0,10.36,0,0]}]},{"x":26,"y":29.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":26.75,"y":29.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":27.5,"y":29.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":28.794,"y":29.107,"w":2.001,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"15b ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":29.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"16 ","S":-1,"TS":[0,11,0,0]}]},{"x":7.4,"y":29.857,"w":0.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":29.857,"w":10.614,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Pensions and annuities ","S":-1,"TS":[0,10.6,0,0]}]},{"x":13.954,"y":29.857,"w":1.964,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"16a ","S":-1,"TS":[0,11,0,0]}]},{"x":21.35,"y":29.857,"w":1.167,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":21.934,"y":29.857,"w":7.465,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Taxable amount ","S":-1,"TS":[0,10.36,0,0]}]},{"x":26,"y":29.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":26.75,"y":29.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":27.5,"y":29.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":28.794,"y":29.857,"w":2.001,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"16b ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":30.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"17 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":30.607,"w":39.45,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Rental real estate, royalties, partnerships, S corporations, trusts, etc. Attach Schedule E ","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":30.607,"w":1.39,"oc":"#211f1f","sw":0.36196875,"A":"left","R":[{"T":"17 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":31.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"18 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":31.357,"w":18.689,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Farm income or (loss). Attach Schedule F ","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":31.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":31.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":31.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":31.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":31.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":31.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":31.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":31.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":31.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":31.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":31.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":31.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":31.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":31.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":31.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"18 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":32.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"19 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":32.107,"w":13.45,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Unemployment compensation","S":-1,"TS":[0,11,0,0]}]},{"x":15.5,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":32.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":32.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"19 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":32.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"20 ","S":-1,"TS":[0,11,0,0]}]},{"x":7.4,"y":32.857,"w":0.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":32.857,"w":10.63,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Social security benefits ","S":-1,"TS":[0,10.6,0,0]}]},{"x":13.954,"y":32.857,"w":1.964,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"20a ","S":-1,"TS":[0,11,0,0]}]},{"x":21.35,"y":32.857,"w":1.167,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":21.934,"y":32.857,"w":7.465,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Taxable amount ","S":-1,"TS":[0,10.36,0,0]}]},{"x":26,"y":32.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":26.75,"y":32.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":27.5,"y":32.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":28.794,"y":32.857,"w":2.001,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"20b ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":33.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"21 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":33.607,"w":16.341,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Other income. List type and amount ","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":33.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"21 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":34.294,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"22 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":34.294,"w":35.641,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Combine the amounts in the far right column for lines 7 through 21. This is your ","S":-1,"TS":[0,10.2,0,0]}]},{"x":24.338,"y":34.294,"w":6.219,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"total income ","S":-1,"TS":[0,10.2,0,0]}]},{"x":27.136,"y":34.294,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,10.2,0,0]}]},{"x":27.261,"y":34.201,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":28.947,"y":34.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"22 ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":35.675,"w":4.797,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Adjusted ","S":-1,"TS":[0,15,0,0]}]},{"x":2,"y":36.425,"w":3.389,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Gross ","S":-1,"TS":[0,15,0,0]}]},{"x":2,"y":37.175,"w":3.831,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Income ","S":-1,"TS":[0,15,0,0]}]},{"x":6.844,"y":35.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"23 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":35.107,"w":8.612,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Educator expenses","S":-1,"TS":[0,11,0,0]}]},{"x":13.556,"y":35.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":14.306,"y":35.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":15.056,"y":35.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":15.806000000000001,"y":35.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":16.556,"y":35.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.306,"y":35.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.056,"y":35.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.806,"y":35.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.556,"y":35.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.306,"y":35.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":35.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"23 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":35.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"24 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":35.888,"w":3.5,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Certain ","S":-1,"TS":[0,10.04,0,0]}]},{"x":9.858,"y":35.888,"w":4.242,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"business ","S":-1,"TS":[0,10.04,0,0]}]},{"x":11.743,"y":35.888,"w":4.556,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"expenses ","S":-1,"TS":[0,10.04,0,0]}]},{"x":13.767,"y":35.888,"w":1.148,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"of ","S":-1,"TS":[0,10.04,0,0]}]},{"x":14.29,"y":35.888,"w":4.833,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"reservists, ","S":-1,"TS":[0,10.04,0,0]}]},{"x":16.435,"y":35.888,"w":5.149,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"performing ","S":-1,"TS":[0,10.04,0,0]}]},{"x":18.719,"y":35.888,"w":3.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"artists, ","S":-1,"TS":[0,10.04,0,0]}]},{"x":20.18,"y":35.888,"w":1.964,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"and ","S":-1,"TS":[0,10.04,0,0]}]},{"x":8.3,"y":36.576,"w":27.562,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"fee-basis government officials. Attach Form 2106 or 2106-EZ ","S":-1,"TS":[0,10.04,0,0]}]},{"x":21.747,"y":36.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"24 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":37.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"25 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":37.357,"w":24.063,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Health savings account deduction. Attach Form 8889 ","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":37.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":37.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"25 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":38.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"26 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":38.107,"w":16.709,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Moving expenses. Attach Form 3903 ","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":38.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":38.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":38.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":38.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":38.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":38.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":38.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"26 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":38.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"27 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":38.857,"w":27.173,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Deductible part of self-employment tax. Attach Schedule SE ","S":-1,"TS":[0,10.2,0,0]}]},{"x":20.75,"y":38.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.2,0,0]}]},{"x":21.747,"y":38.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"27 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":39.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"28 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":39.607,"w":22.097,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Self-employed SEP, SIMPLE, and qualified plans ","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":39.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":39.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":39.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"28 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":40.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"29 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":40.357,"w":19.153,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Self-employed health insurance deduction ","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":40.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":40.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":40.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":40.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":40.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"29 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":41.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"30 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":41.107,"w":17.332,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Penalty on early withdrawal of savings ","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":41.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":41.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":41.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":41.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":41.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":41.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":41.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"30 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":41.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"31 ","S":-1,"TS":[0,11,0,0]}]},{"x":7.4,"y":41.857,"w":0.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":41.857,"w":6.076,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Alimony paid ","S":-1,"TS":[0,10.2,0,0]}]},{"x":11.45,"y":41.857,"w":1.167,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":12.033,"y":41.857,"w":7.556,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Recipient’s SSN ","S":-1,"TS":[0,11,0,0]}]},{"x":15.811,"y":41.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":15.933,"y":41.763,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":21.604,"y":41.857,"w":1.964,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"31a ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":42.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"32 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":42.607,"w":6.631,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"IRA deduction ","S":-1,"TS":[0,11,0,0]}]},{"x":11.75,"y":42.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":12.5,"y":42.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":13.25,"y":42.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":14,"y":42.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":14.75,"y":42.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":15.5,"y":42.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":42.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":42.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":42.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":42.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":42.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":42.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":42.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":42.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"32 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":43.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"33 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":43.357,"w":14.319,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Student loan interest deduction ","S":-1,"TS":[0,11,0,0]}]},{"x":15.5,"y":43.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":43.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":43.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":43.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":43.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":43.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":43.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":43.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":43.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"33 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":44.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"34 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":44.107,"w":15.709,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Tuition and fees. Attach Form 8917","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":44.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":44.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":44.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":44.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":44.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":44.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":44.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":44.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"34 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":44.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"35 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":44.857,"w":27.175,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Domestic production activities deduction. Attach Form 8903 ","S":-1,"TS":[0,10.36,0,0]}]},{"x":21.747,"y":44.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"35 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":45.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"36 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":45.607,"w":10.949,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Add lines 23 through 35 ","S":-1,"TS":[0,11,0,0]}]},{"x":14,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":14.75,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":15.5,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":45.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":45.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"36 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.844,"y":46.294,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"37 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.3,"y":46.294,"w":18.505,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Subtract line 36 from line 22. This is your ","S":-1,"TS":[0,11,0,0]}]},{"x":17.553,"y":46.294,"w":11.165,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"adjusted gross income ","S":-1,"TS":[0,11,0,0]}]},{"x":23.135,"y":46.294,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":46.294,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":46.294,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":46.294,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":46.294,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":46.294,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.25,"y":46.294,"w":0.556,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.527,"y":46.201,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":28.947,"y":46.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"37 ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":47.107,"w":44.054,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"For Disclosure, Privacy Act, and Paperwork Reduction Act Notice, see separate instructions.","S":-1,"TS":[0,11,0,0]}]},{"x":26.021,"y":47.125,"w":7.725,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11320B ","S":2,"TS":[0,10,0,0]}]},{"x":31.601,"y":47.071,"w":2.89,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":32.865,"y":47.071,"w":2.502,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"1040 ","S":-1,"TS":[0,13,0,0]}]},{"x":34.429,"y":47.071,"w":3.298,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":24.481,"y":8.644,"w":2.352,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"State","S":2,"TS":[0,10,0,0]}]},{"x":26.731,"y":8.644,"w":1.518,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"ZIP","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INJUR","EN":0},"TI":301,"AM":0,"TU":"Injured spouse text","x":2.234,"y":0.53,"w":5.945,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DECE","EN":0},"TI":302,"AM":0,"TU":"Deceased date","x":8.904,"y":0.558,"w":9.103,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FY","EN":0},"TI":303,"AM":0,"TU":"Page 1. For the year January 1 through December 31, 2013, or other tax year beginning (enter date), 2013, ending (date), 20(two digit year).","x":14.105,"y":3.75,"w":5.695,"h":0.833,"MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYE","EN":0},"TI":304,"AM":0,"TU":"Page 1. For the year January 1 through December 31, 2013, or other tax year beginning (enter ","x":22.58,"y":3.73,"w":2.4,"h":0.833,"MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"FYEYR","EN":0},"TI":305,"AM":0,"x":25.95,"y":3.75,"w":3.3,"h":0.833,"MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":306,"AM":0,"TU":"Your first name and initial.","x":2.25,"y":5.148,"w":8.99,"h":0.852},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"MI","EN":0},"TI":307,"AM":0,"TU":"Taxpayer middle initial","x":11.616,"y":5.234,"w":1.861,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAM","EN":0},"TI":308,"AM":0,"TU":"Last name.","x":13.5,"y":5.148,"w":15.75,"h":0.852},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":309,"AM":0,"TU":"Your social security number. 9 digits.","x":29.25,"y":5.153,"w":6.75,"h":0.847},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SNAM","EN":0},"TI":310,"AM":0,"TU":"If a joint return, spouse's first name and initial.","x":2.25,"y":6.624,"w":9.072,"h":0.876},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SMI","EN":0},"TI":311,"AM":0,"TU":"Spouse middle initial","x":11.647,"y":6.677,"w":1.78,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SLNM","EN":0},"TI":312,"AM":0,"TU":"Spouse's Last name.","x":13.5,"y":6.624,"w":15.75,"h":0.876},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":313,"AM":0,"TU":"Spouse's social Security Number. 9 digits.","x":29.25,"y":6.601,"w":6.75,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":314,"AM":0,"TU":"Home address (number and street). If you have a Post Office Box, see instructions.","x":2.25,"y":8.125,"w":23.85,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":315,"AM":0,"TU":"Apartment number.","x":26.1,"y":8.125,"w":3.15,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":316,"AM":0,"TU":"City, town or post office, state, and ZIP code. If you have a foreign address, also complete spaces below (see instructions).","x":2.25,"y":9.599,"w":21.855,"h":0.901},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":317,"AM":0,"TU":"State","x":24.359,"y":9.567,"w":1.324,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AL"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":318,"AM":0,"x":26.33,"y":9.57,"w":2.866,"h":0.857},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCNAME","EN":0},"TI":319,"AM":0,"x":2.339,"y":11.016,"w":12.975,"h":0.857,"PL":{"V":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"],"D":[" ","Afghanistan","Akrotini","Albania","Algeria","American Samoa","Andorra","Angola","Anguilla","Antarctica","Antigua and Barbuda","Argentina","Armenia","Aruba","Ashmore and Cartier Islands","Australia","Austria","Azerbaijan","Bahamas","Bahrain","Baker Island","Bangladesh","Barbados","Belarus","Belgium","Belize","Benin","Bermuda","Bhutan","Bolivia","Bosnia-Herzegovina","Botswana","Bouvet Island","Brazil","British Indian Ocean Territory","British Virgin Islands","Brunei","Bulgaria","Burkina Faso","Burma","Burundi","Cambodia","Cameroon","Canada ","Cape Verde","Cayman Islands","Central African Republic","Chad","Chile","China ","Christmas Island","Clipperton Island","Cocos (Keeling) Islands","Colombia","Comoros ","Congo (Brazzaville)","Congo (Kinshasa)","Cook Islands","Coral Sea Islands","Costa Rica","Cote D'Ivoire (Ivory Coast)","Croatia","Cuba","Curacao","Cyprus","Czech Republic","Denmark","Dhekelia","Djibouti","Dominica","Dominican Republic","East Timor ","Ecuador","Egypt","El Salvador","Equatorial Guinea","Eritrea","Estonia","Ethiopia","Falkland Islands (Islas Malvinas)","Faroe Islands","Federated States of Micronesia","Fiji","Finland","France","French Polynesia","French Southern and Antarctic Lands","Gabon","Georgia","Germany","Ghana","Gibraltar","Greece","Greenland","Grenada","Guam","Guatemala","Guernsey","Guinea","Guinea-Bissau","Guyana","Haiti","Heard Island and McDonald Islands","Holy See","Honduras","Hong Kong","Howland Island ","Hungary","Iceland","India","Indonesia","Iran","Iraq","Ireland","Israel","Italy","Jamaica","Jan Mayen","Japan","Jarvis Island","Jersey","Johnston Atoll","Jordan","Kazakhstan","Kenya","Kingman Reef","Kiribati","Korea, North","Korea, South","Kosovo","Kuwait","Kyrgyzstan","Laos","Latvia","Lebanon","Lesotho","Liberia","Libya","Liechtenstein","Lithuania","Luxembourg ","Macau","Macedonia","Madagascar","Malawi","Malaysia","Maldives","Mali","Malta","Man, Isle of","Marshall Islands","Mauritania","Mauritius","Mexico","Midway Islands","Moldova","Monaco","Mongolia ","Montenegro","Montserrat","Morocco","Mozambique","Namibia","Nauru","Navassa Island","Nepal","Netherlands","New Caledonia","New Zealand","Nicaragua","Niger","Nigeria","Niue ","Norfolk Island","Northern Mariana Islands","Norway","Oman","Other Countries","Pakistan","Palau","Palmyra Atoll","Panama ","Papua-New Guinea","Paracel Islands","Paraguay","Peru","Philippines","Pitcairn Islands","Poland","Portugal ","Puerto Rico","Qatar","Romania","Russia","Rwanda","Saint Barthelemy","Saint Martin","Samoa","San Marino","Sao Tome and Principe","Saudi Arabia","Senegal","Serbia","Seychelles ","Sierra Leone","Singapore","Sint Maarten","Slovakia","Solomon Islands","Somalia","South Africa","South Georgia and South Sandwich Islands","South Sudan","Spain","Spratly Islands","Sri Lanka","St. Helena","St. Kitts and Nevis","St. Lucia Island","St. Pierre and Miquelon","St. Vincent and Grenadines","Sudan","Suriname","Svalbard","Swaziland","Sweden ","Switzerland","Syria","Taiwan","Tajikistan","Tanzania","Thailand","The Gambia","Togo","Tokelau ","Tonga","Trinidad and Tobago","Tunisia","Turkey","Turkmenistan","Turks and Caicos Islands","Tuvalu","Uganda","Ukraine","United Arab Emirates","United Kingdom (England, N Ireland, Scotland and Wales)","Uruguay","Uzbekistan","Vanuatu","Venezuela","Vietnam","Virgin Islands","Wake Island","Wallis and Futuna","Western Sahara","Yemen (Aden)","Zambia","Zimbabwe"]},"V":" "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPC","EN":0},"TI":320,"AM":0,"TU":"Foreign province or state or county. ","x":16.2,"y":11.184,"w":9,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FZIP","EN":0},"TI":321,"AM":0,"TU":"Foreign postal code. ","x":25.2,"y":11.184,"w":4.05,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAM","EN":0},"TI":328,"AM":0,"x":27.829,"y":13.585,"w":2.893,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXT3","EN":0},"TI":329,"AM":1024,"TU":"Firm's Name","x":31.038,"y":13.654,"w":1.968,"h":0.833,"V":"and SSN"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN","EN":0},"TI":330,"AM":0,"TU":"Child SSN","x":33.154,"y":13.639,"w":2.858,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXT1","EN":0},"TI":331,"AM":1024,"x":13.881,"y":14.369,"w":0.852,"h":0.833,"V":"First"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNM","EN":0},"TI":332,"AM":0,"x":14.86,"y":14.383,"w":2.866,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXT2","EN":0},"TI":333,"AM":1024,"x":17.814,"y":14.409,"w":0.961,"h":0.833,"V":"Last"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLMN","EN":0},"TI":334,"AM":0,"x":18.863,"y":14.427,"w":2.894,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXT4","EN":0},"TI":338,"AM":1024,"x":11.39,"y":15.894,"w":1.042,"h":0.833,"V":"First"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPFNR","EN":0},"TI":339,"AM":0,"x":12.546,"y":15.858,"w":2.866,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXT5","EN":0},"TI":340,"AM":1024,"x":15.827,"y":15.867,"w":0.961,"h":0.833,"V":"Last"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPLNR","EN":0},"TI":341,"AM":0,"x":17.012,"y":15.821,"w":2.893,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6AB","EN":0},"TI":342,"AM":0,"TU":"Line 6d. Total number of exemptions claimed. Boxes checked on 6a and 6b.","x":34.65,"y":15.375,"w":1.35,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C1","EN":0},"TI":343,"AM":0,"TU":"Line 6d. Number of children on 6 c who: Lived with you.","x":34.65,"y":16.75,"w":1.35,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C1_1_","EN":0},"TI":344,"AM":0,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. ","x":6.75,"y":18,"w":3.92,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C2_1_","EN":0},"TI":345,"AM":0,"TU":"Line 6. c. Dependents: Dependent 1. (1) First name. ","x":10.796,"y":18.021,"w":3.92,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C3_1_","EN":0},"TI":346,"AM":0,"TU":"Line 6. c. Dependent 1. (2) Dependent's Social Security Number. ","x":14.861,"y":18,"w":5.261,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C4_1_","EN":0},"TI":347,"AM":0,"TU":"Dependent's relationship","x":20.16,"y":18.05,"w":3.44,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C1_2_","EN":0},"TI":349,"AM":0,"TU":"Line 6. c. Dependent 2. (1).","x":6.75,"y":18.722,"w":3.923,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C2_2_","EN":0},"TI":350,"AM":0,"TU":"Line 6. c. Dependent 2. (1).","x":10.796,"y":18.744,"w":3.923,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C3_2_","EN":0},"TI":351,"AM":0,"TU":"Line 6. c. Dependent 2. ","x":14.861,"y":18.722,"w":5.261,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C4_2_","EN":0},"TI":352,"AM":0,"TU":"Dependent's relationship","x":20.165,"y":18.838,"w":3.44,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C2","EN":0},"TI":354,"AM":0,"TU":"Line 6d. Number of children on 6 c who: Did not live with you due to divorce or separation (see instructions).","x":34.65,"y":18.5,"w":1.35,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C1_3_","EN":0},"TI":355,"AM":0,"TU":"Line 6. c. Dependent 3. (1).","x":6.712,"y":19.472,"w":3.963,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C2_3_","EN":0},"TI":356,"AM":0,"TU":"Line 6. c. Dependent 3. (1).","x":10.758,"y":19.494,"w":3.963,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C3_3_","EN":0},"TI":357,"AM":0,"TU":"Line 6. c. Dependent 3.","x":14.861,"y":19.472,"w":5.261,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C4_3_","EN":0},"TI":358,"AM":0,"TU":"Dependent's relationship","x":20.241,"y":19.583,"w":3.44,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6C3","EN":0},"TI":360,"AM":0,"TU":"Line 6d. Dependents on 6 c not entered above.","x":34.65,"y":19.5,"w":1.35,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C1_4_","EN":0},"TI":362,"AM":0,"TU":"Line 6. c. Dependent 4. (1).","x":6.75,"y":20.222,"w":3.91,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C2_4_","EN":0},"TI":363,"AM":0,"TU":"Line 6. c. Dependent 4. (1).","x":10.796,"y":20.243,"w":3.91,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C3_4_","EN":0},"TI":364,"AM":0,"TU":"Line 6. c. Dependent 4.","x":14.861,"y":20.222,"w":5.261,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6C4_4_","EN":0},"TI":365,"AM":0,"TU":"Dependent's relationship","x":20.159,"y":20.296,"w":3.44,"h":0.833,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N6E","EN":0},"TI":367,"AM":0,"TU":"Line 6d. Add numbers on lines above.","x":34.65,"y":20.521,"w":1.35,"h":1.042},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7W","EN":0},"TI":368,"AM":0,"x":21.145,"y":21.856,"w":3.892,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7WAMT","EN":0},"TI":369,"AM":0,"x":25.275,"y":21.818,"w":3.346,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":370,"AM":0,"TU":"Income. Attach Form(s) W-2 here. Also attach Forms W-2G and 1099-R if tax was withheld. If you did not \rget a W-2, see instructions. Enclose, but do not attach, any payment. Also, please use Form 1040-V. Line 7. Wages, salaries, tips, etcetera. Attach Form(s) W-2. Dollars.","x":30.15,"y":21.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":371,"AM":0,"TU":"Line 8. a. Taxable interest. Attach Schedule B if required. Dollars.","x":30.15,"y":22.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":372,"AM":0,"TU":"Line 8. b. Tax-exempt interest. Do not include on line 8 a. Dollars.","x":22.95,"y":23.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"F8814T1","EN":0},"TI":373,"AM":0,"x":21.172,"y":24.081,"w":3.92,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8814A","EN":0},"TI":374,"AM":0,"x":25.302,"y":24.077,"w":3.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":375,"AM":0,"TU":"Line 9. a. Ordinary dividends. Attach Schedule B if required. Dollars.","x":30.15,"y":24,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"F8814T2","EN":0},"TI":376,"AM":0,"x":13.413,"y":24.793,"w":3.92,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8814A2","EN":0},"TI":377,"AM":0,"x":17.543,"y":24.789,"w":3.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALDIVS","EN":0},"TI":378,"AM":0,"TU":"Line 9. b. Qualified dividends. Dollars.","x":22.95,"y":24.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":379,"AM":0,"TU":"Line 10. Taxable refunds, credits, or offsets of state and local income taxes. Dollars.","x":30.15,"y":25.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":380,"AM":0,"TU":"Line 11. Alimony received. Dollars.","x":30.15,"y":26.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":381,"AM":0,"TU":"Line 12. Business income or (loss). Attach Schedule C or C-E Z. Dollars.","x":30.15,"y":27,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"F8814LIT","EN":0},"TI":382,"AM":0,"x":21.239,"y":27.882,"w":3.92,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F8814AMT","EN":0},"TI":383,"AM":0,"x":25.369,"y":27.878,"w":3.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":384,"AM":0,"TU":"Line 13. Dollars.","x":30.15,"y":27.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L14W","EN":0},"TI":385,"AM":0,"TU":"Line 21. Other income. List type and amount. ","x":18.271,"y":28.477,"w":10.379,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":387,"AM":0,"TU":"Line 14. Other gains or (losses). Attach Form 4797. Dollars.","x":30.15,"y":28.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15A","EN":0},"TI":388,"AM":0,"TU":"Line 15. a. I R A distributions. Dollars.","x":15.329,"y":29.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QCD","EN":0},"TI":389,"AM":0,"x":25.7,"y":29.337,"w":2.94,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15B","EN":0},"TI":390,"AM":0,"TU":"Line 15. b. Taxable amount. Dollars.","x":30.15,"y":29.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16A","EN":0},"TI":391,"AM":0,"TU":"Line 16. a. Pensions and annuities. Dollars.","x":15.356,"y":30,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PSO","EN":0},"TI":392,"AM":0,"x":25.755,"y":30.072,"w":2.94,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16B","EN":0},"TI":393,"AM":0,"TU":"Line 16. b. Taxable amount. Dollars.","x":30.15,"y":30,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":394,"AM":0,"TU":"Line 17. Rental real estate, royalties, partnerships, S corporations, trusts, etcetera. Attach Schedule E. Dollars.","x":30.15,"y":30.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":395,"AM":0,"TU":"Line 18. Farm income or (loss). Attach Schedule F. Dollars.","x":30.15,"y":31.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L19T1","EN":0},"TI":396,"AM":0,"x":21.274,"y":32.272,"w":3.92,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19T2","EN":0},"TI":397,"AM":0,"x":25.403,"y":32.268,"w":3.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":398,"AM":0,"TU":"Line 19. Unemployment compensation. Dollars.","x":30.15,"y":32.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20AMOD","EN":0},"TI":399,"AM":0,"TU":"Line 20. a. Social Security benefits. Dollars.","x":15.3,"y":33,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20LSE","EN":0},"TI":400,"AM":0,"TU":"Line 20. a. Social Security benefits. Dollars.","x":25.682,"y":33.125,"w":2.948,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20B","EN":0},"TI":401,"AM":0,"TU":"Line 20. b. Taxable amount. Dollars.","x":30.15,"y":33,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHINC_L21DESC_1_","EN":0},"TI":402,"AM":0,"x":16.984,"y":33.764,"w":6.596,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHINC_L21DAMT_1_","EN":0},"TI":403,"AM":0,"x":23.817,"y":33.737,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":404,"AM":0,"TU":"Line 21. Dollars.","x":30.123,"y":33.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":405,"AM":0,"TU":"Line 22. Combine the amounts in the far right column for lines 7 through 21. This is your total income. Dollars.","x":30.15,"y":34.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":406,"AM":0,"TU":"Line 23. Educator expenses. dollars","x":22.95,"y":35.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BUSEXP","EN":0},"TI":407,"AM":0,"TU":"Line 24. Certain business expenses of reservists, performing artists, and fee-basis government officials. Attach Form 2106 or 2106-E Z. Dollars. ","x":22.95,"y":36.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HSA","EN":0},"TI":408,"AM":0,"TU":"Line 25. Health savings account deduction. Attach Form 8889. Dollars.","x":22.95,"y":37.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L26T","EN":0},"TI":409,"AM":0,"x":17.179,"y":38.199,"w":3.92,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":410,"AM":0,"TU":"Line 26. Moving expenses. Attach Form 3903. Dollars.","x":22.95,"y":38.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":411,"AM":0,"TU":"Line 27. Deductible part of self-employment tax. Attach Schedule S E. Dollars.","x":22.95,"y":39,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":412,"AM":0,"TU":"Line 28. Self-employed S E P, SIMPLE, and qualified plans. Dollars.","x":22.95,"y":39.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L29W","EN":0},"TI":413,"AM":0,"x":18.186,"y":40.54,"w":3.076,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":414,"AM":0,"TU":"Line 29. Self-employed health insurance deduction. Dollars.","x":22.923,"y":40.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":415,"AM":0,"TU":"Line 30. Penalty on early withdrawal of savings. Dollars.","x":22.95,"y":41.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A586","EN":0},"TI":416,"AM":0,"TU":"Line 31. b. Recipient’s S S N.","x":16.65,"y":42,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":417,"AM":0,"TU":"Line 31. a. Alimony paid. Dollars.","x":22.95,"y":42,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":418,"AM":0,"TU":"Line 32. I R A deduction. Dollars.","x":22.95,"y":42.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":419,"AM":0,"TU":"Line 33. Student loan interest deduction. Dollars.","x":22.95,"y":43.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32C","EN":0},"TI":420,"AM":0,"TU":"Line 34. Tuition and fees. Attach Form 8917. Dollars.","x":22.95,"y":44.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DPAD","EN":0},"TI":421,"AM":0,"TU":"Line 35. Domestic production activities deduction. Attach Form 8903. Dollars.","x":22.95,"y":45,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L32T","EN":0},"TI":422,"AM":0,"x":21.254,"y":45.878,"w":3.92,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32W","EN":0},"TI":423,"AM":0,"x":25.384,"y":45.874,"w":3.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":424,"AM":0,"TU":"Line 36. Add lines 23 through 35. Dollars.","x":30.15,"y":45.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":425,"AM":0,"TU":"Line 37. Subtract line 36 from line 22. This is your adjusted gross income. Dollars.","x":30.15,"y":46.5,"w":4.5,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PECY","EN":0},"TI":322,"AM":0,"TU":"Presidential Election Campaign. Check here if you, or your spouse if filing jointly, want $3 to go to this fund. Checking a box below will not change your tax or refund. You.","x":32.075,"y":11.25,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SECY","EN":0},"TI":323,"AM":0,"TU":"Presidential Election Campaign. Your spouse.","x":33.875,"y":11.25,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":324,"AM":0,"TU":"Filing Status","x":8.214,"y":12.007,"w":0.626,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS4","EN":0},"TI":325,"AM":0,"TU":"Filing Status","x":22.568,"y":12.047,"w":0.626,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":326,"AM":0,"TU":"Filing Status","x":8.168,"y":12.747,"w":0.626,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS3","EN":0},"TI":327,"AM":0,"TU":"Filing Status","x":8.171,"y":13.569,"w":0.669,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS5","EN":0},"TI":335,"AM":0,"TU":"Filing Status","x":22.565,"y":14.115,"w":0.626,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6A","EN":0},"TI":336,"AM":0,"TU":"Exemptions. 6. a. Yourself. If someone can claim you as a dependent, do not check box 6 a.","x":8.675,"y":15,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6B","EN":0},"TI":337,"AM":0,"TU":"Line 6. b. Spouse.","x":8.675,"y":15.75,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6C5_1_","EN":0},"TI":348,"AM":0,"TU":"Line 6. c. Dependent 2. ","x":26.547,"y":17.986,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6C5_2_","EN":0},"TI":353,"AM":0,"TU":"Line 6. c. Dependent 2. ","x":26.547,"y":18.722,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6C5_3_","EN":0},"TI":359,"AM":0,"TU":"Line 6. c. Dependent 3. ","x":26.547,"y":19.472,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DEPSX","EN":0},"TI":361,"AM":0,"TU":"Exemptions. If more than four dependents, see instructions and check here. ","x":5.525,"y":20.312,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6C5_4_","EN":0},"TI":366,"AM":0,"TU":"Line 6. c. Dependent 4. ","x":26.547,"y":20.222,"w":0.468,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L13X","EN":0},"TI":386,"AM":0,"TU":"Line 13. Capital gain or (loss). Attach Schedule D if required. If not required, check here.","x":26.813,"y":27.832,"w":0.5,"h":0.833}]}]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":3,"w":1.5,"l":31.531,"oc":"#000000"},{"x":33.734,"y":3,"w":1.5,"l":2.211,"oc":"#000000"},{"x":28.784,"y":3.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":3,"w":1.5,"l":4.531,"oc":"#000000"},{"x":30.134,"y":3.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":3,"w":1.5,"l":1.381,"oc":"#000000"},{"x":34.634,"y":3.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":27.45,"y":5.177,"w":1.5,"l":1.318,"oc":"#000000"},{"x":27.45,"y":3.75,"w":1.5,"l":1.318,"oc":"#000000"},{"x":28.784,"y":3.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":3.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":3.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":2.113,"y":17.875,"w":0.75,"l":2.975,"oc":"#000000"},{"x":2.113,"y":5.25,"w":0.75,"l":2.975,"oc":"#000000"},{"x":5.384,"y":6,"w":0.75,"l":0.931,"oc":"#000000"},{"x":5.384,"y":6.75,"w":0.75,"l":0.931,"oc":"#000000"},{"x":28.784,"y":6.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":6.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":6.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":7.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.15,"y":7.5,"w":0.75,"l":4.5,"oc":"#000000"},{"x":30.15,"y":6.75,"w":0.75,"l":4.5,"oc":"#000000"},{"x":34.634,"y":6.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":7.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":8.25,"w":1.125,"l":1.381,"oc":"#000000"},{"x":30.134,"y":7.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":8.25,"w":1.125,"l":4.531,"oc":"#000000"},{"x":34.634,"y":7.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":8.25,"w":1.125,"l":1.381,"oc":"#000000"},{"x":28.784,"y":9,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":8.25,"w":1.125,"l":4.531,"oc":"#000000"},{"x":30.134,"y":9,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":8.25,"w":1.125,"l":1.381,"oc":"#000000"},{"x":34.634,"y":9,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":9.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.15,"y":9.75,"w":0.75,"l":4.5,"oc":"#000000"},{"x":30.15,"y":9,"w":0.75,"l":4.5,"oc":"#000000"},{"x":34.634,"y":9,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":9.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":10.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.15,"y":10.5,"w":0.75,"l":4.5,"oc":"#000000"},{"x":30.15,"y":9.75,"w":0.75,"l":4.5,"oc":"#000000"},{"x":34.634,"y":9.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":10.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":11.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.15,"y":11.25,"w":0.75,"l":4.5,"oc":"#000000"},{"x":30.15,"y":10.5,"w":0.75,"l":4.5,"oc":"#000000"},{"x":34.634,"y":10.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":11.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":21.584,"y":12,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":12,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.434,"y":12,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":11.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":11.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":11.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":21.584,"y":12.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":12,"w":0.75,"l":4.531,"oc":"#000000"},{"x":22.934,"y":12.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.45,"y":12.75,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":12,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":13.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":12.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":22.934,"y":13.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.45,"y":13.5,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":12.75,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":14.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":13.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":22.934,"y":14.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.45,"y":14.25,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":13.5,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":15,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":14.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":22.934,"y":15,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.45,"y":15,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":14.25,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":15.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":15,"w":0.75,"l":4.531,"oc":"#000000"},{"x":22.934,"y":15.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.45,"y":15.75,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":15,"w":0.75,"l":1.35,"oc":"#000000"},{"x":18.884,"y":16.5,"w":0.75,"l":1.831,"oc":"#000000"},{"x":21.584,"y":16.5,"w":1.125,"l":1.381,"oc":"#000000"},{"x":22.934,"y":15.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":22.934,"y":16.5,"w":1.125,"l":4.531,"oc":"#000000"},{"x":27.434,"y":15.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":27.434,"y":16.5,"w":1.125,"l":1.381,"oc":"#000000"},{"x":28.784,"y":17.25,"w":1.125,"l":1.381,"oc":"#000000"},{"x":30.134,"y":17.251,"w":1.125,"l":4.531,"oc":"#000000"},{"x":34.634,"y":17.25,"w":1.125,"l":1.381,"oc":"#000000"},{"x":28.784,"y":18,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":17.25,"w":1.125,"l":4.531,"oc":"#000000"},{"x":30.134,"y":18,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":17.25,"w":1.125,"l":1.381,"oc":"#000000"},{"x":34.634,"y":18,"w":0.75,"l":1.381,"oc":"#000000"},{"x":2.25,"y":18,"w":0.75,"l":33.75,"oc":"#211f1f"},{"x":28.784,"y":18.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":18,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":18.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":18,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":18.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":19.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":18.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":19.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":18.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":19.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":20.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":19.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":20.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":19.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":20.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":21,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":20.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":21,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":20.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":21,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":21.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":21,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":21.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":21,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":21.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":24.734,"y":22.5,"w":0.75,"l":3.631,"oc":"#000000","dsh":1},{"x":28.784,"y":22.5,"w":1.125,"l":1.381,"oc":"#000000"},{"x":30.134,"y":21.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":30.134,"y":22.5,"w":1.125,"l":4.531,"oc":"#000000"},{"x":34.634,"y":21.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":22.5,"w":1.125,"l":1.381,"oc":"#000000"},{"x":30.134,"y":22.5,"w":1.125,"l":4.531,"oc":"#000000"},{"x":34.634,"y":22.5,"w":1.125,"l":1.381,"oc":"#000000"},{"x":2.25,"y":23.25,"w":0.75,"l":33.75,"oc":"#211f1f"},{"x":21.584,"y":24,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":23.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":22.934,"y":24,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.45,"y":24,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":23.25,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":24.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":24,"w":0.75,"l":4.531,"oc":"#000000"},{"x":22.934,"y":24.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.45,"y":24.75,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":24,"w":0.75,"l":1.35,"oc":"#000000"},{"x":28.784,"y":23.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":23.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":23.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":2.113,"y":27.369,"w":0.75,"l":2.975,"oc":"#000000"},{"x":2.113,"y":24.369,"w":0.75,"l":2.975,"oc":"#000000"},{"x":5.384,"y":24.75,"w":0.75,"l":0.931,"oc":"#000000"},{"x":5.384,"y":25.5,"w":0.75,"l":0.931,"oc":"#000000"},{"x":21.584,"y":25.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":24.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":22.934,"y":25.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.45,"y":25.5,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":24.75,"w":0.75,"l":1.35,"oc":"#000000"},{"x":14.384,"y":26.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":15.734,"y":26.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":20.234,"y":26.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":21.584,"y":25.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":25.5,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.434,"y":25.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":21.584,"y":27,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.934,"y":27,"w":0.75,"l":4.531,"oc":"#000000"},{"x":27.434,"y":27,"w":0.75,"l":1.381,"oc":"#000000"},{"x":21.584,"y":27.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":27.75,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":27,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":27.75,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":27,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":28.504,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":28.504,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":27.754,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":28.504,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":27.754,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":29.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":29.254,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":28.504,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":29.254,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":28.504,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":30.004,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":30.004,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":29.254,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":30.004,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":29.254,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":30.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":22.95,"y":30.75,"w":0.75,"l":4.5,"oc":"#000000"},{"x":22.95,"y":30,"w":0.75,"l":4.5,"oc":"#000000"},{"x":27.45,"y":30.75,"w":0.75,"l":1.35,"oc":"#000000"},{"x":27.45,"y":30,"w":0.75,"l":1.35,"oc":"#000000"},{"x":21.584,"y":31.5,"w":1.125,"l":1.381,"oc":"#000000"},{"x":22.934,"y":30.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":22.934,"y":31.5,"w":1.125,"l":4.531,"oc":"#000000"},{"x":27.434,"y":30.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":27.434,"y":31.5,"w":1.125,"l":1.381,"oc":"#000000"},{"x":28.784,"y":32.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":32.25,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":32.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":2.25,"y":32.25,"w":0.75,"l":33.75,"oc":"#211f1f"},{"x":28.784,"y":33,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.15,"y":33,"w":0.75,"l":4.5,"oc":"#000000"},{"x":30.15,"y":32.25,"w":0.75,"l":4.5,"oc":"#000000"},{"x":34.634,"y":32.25,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":33,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":33.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.15,"y":33.75,"w":0.75,"l":4.5,"oc":"#000000"},{"x":30.15,"y":33,"w":0.75,"l":4.5,"oc":"#000000"},{"x":34.634,"y":33,"w":0.75,"l":1.381,"oc":"#000000"},{"x":34.634,"y":33.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":11.684,"y":34.5,"w":0.75,"l":8.122,"oc":"#000000"},{"x":28.784,"y":33.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":33.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":33.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":11.695,"y":35.243,"w":0.75,"l":15.286,"oc":"#000000"},{"x":2.25,"y":36,"w":0.75,"l":26.55,"oc":"#211f1f"},{"x":28.784,"y":36.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":30.134,"y":36.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":34.634,"y":36.75,"w":0.75,"l":1.381,"oc":"#000000"},{"x":28.784,"y":36.75,"w":0.75,"l":7.231,"oc":"#000000"},{"x":28.784,"y":37.5,"w":0.75,"l":7.231,"oc":"#000000"},{"x":2.25,"y":37.5,"w":1.2,"l":33.75,"oc":"#211f1f"},{"x":2.25,"y":39.75,"w":1.2,"l":33.75,"oc":"#211f1f"},{"x":2.234,"y":44.25,"w":1.125,"l":3.181,"oc":"#000000"},{"x":5.834,"y":42.75,"w":0.75,"l":11.285,"oc":"#000000"},{"x":17.084,"y":42.75,"w":0.75,"l":3.181,"oc":"#000000"},{"x":20.234,"y":42.75,"w":0.75,"l":8.574,"oc":"#000000"},{"x":28.784,"y":42.75,"w":0.75,"l":7.234,"oc":"#000000"},{"x":5.834,"y":42.75,"w":0.75,"l":11.285,"oc":"#000000"},{"x":5.834,"y":44.246,"w":1.125,"l":11.285,"oc":"#000000"},{"x":5.384,"y":44.25,"w":1.125,"l":0.931,"oc":"#000000"},{"x":17.084,"y":42.75,"w":0.75,"l":3.181,"oc":"#000000"},{"x":17.084,"y":44.246,"w":1.125,"l":3.181,"oc":"#000000"},{"x":20.234,"y":42.75,"w":0.75,"l":8.574,"oc":"#000000"},{"x":20.234,"y":44.246,"w":1.125,"l":8.574,"oc":"#000000"},{"x":28.784,"y":42.75,"w":0.75,"l":7.231,"oc":"#000000"},{"x":28.784,"y":44.25,"w":0.75,"l":7.231,"oc":"#000000"},{"x":5.834,"y":44.25,"w":1.125,"l":7.231,"oc":"#000000"},{"x":5.834,"y":45.75,"w":0.75,"l":7.231,"oc":"#000000"},{"x":13.034,"y":44.25,"w":1.125,"l":11.281,"oc":"#000000"},{"x":13.034,"y":45.75,"w":0.75,"l":11.281,"oc":"#000000"},{"x":24.284,"y":44.25,"w":1.125,"l":4.531,"oc":"#000000"},{"x":24.284,"y":45.75,"w":0.75,"l":4.531,"oc":"#000000"},{"x":28.784,"y":44.25,"w":1.125,"l":3.181,"oc":"#000000"},{"x":28.784,"y":45.75,"w":0.75,"l":3.181,"oc":"#000000"},{"x":31.934,"y":44.25,"w":1.125,"l":4.081,"oc":"#000000"},{"x":31.934,"y":45.75,"w":0.75,"l":4.081,"oc":"#000000"},{"x":5.834,"y":45.75,"w":0.75,"l":18.931,"oc":"#000000"},{"x":5.834,"y":46.5,"w":0.75,"l":18.931,"oc":"#000000"},{"x":24.734,"y":45.75,"w":0.75,"l":11.281,"oc":"#000000"},{"x":24.734,"y":46.5,"w":0.75,"l":11.281,"oc":"#000000"},{"x":24.734,"y":46.5,"w":0.75,"l":11.281,"oc":"#000000"},{"x":2.234,"y":47.25,"w":1.5,"l":33.781,"oc":"#000000"},{"x":20.234,"y":31.5,"w":0.75,"l":1.381,"oc":"#000000"},{"x":23.926,"y":9.75,"w":0.75,"l":1.831,"oc":"#000000"}],"VLines":[{"x":30.15,"y":2.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":2.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":2.969,"w":0.75,"l":0.797,"oc":"#000000"},{"x":30.15,"y":2.969,"w":0.75,"l":0.797,"oc":"#000000"},{"x":34.65,"y":2.969,"w":0.75,"l":0.797,"oc":"#000000"},{"x":28.768,"y":3.75,"w":1.5,"l":1.427,"oc":"#000000"},{"x":27.45,"y":3.75,"w":1.5,"l":1.427,"oc":"#000000"},{"x":30.15,"y":3.734,"w":0.75,"l":2.281,"oc":"#000000"},{"x":28.8,"y":3.734,"w":0.75,"l":2.281,"oc":"#000000"},{"x":34.65,"y":3.734,"w":0.75,"l":2.281,"oc":"#000000"},{"x":30.15,"y":3.734,"w":0.75,"l":2.281,"oc":"#000000"},{"x":34.65,"y":3.734,"w":0.75,"l":2.281,"oc":"#000000"},{"x":1.8,"y":5.562,"w":0.75,"l":12,"oc":"#000000"},{"x":5.4,"y":5.562,"w":0.75,"l":12,"oc":"#000000"},{"x":30.15,"y":5.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":5.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":5.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":5.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":5.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":6.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":6.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":6.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":30.15,"y":6.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":34.65,"y":6.735,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":7.484,"w":0.75,"l":0.789,"oc":"#000000"},{"x":28.8,"y":7.484,"w":0.75,"l":0.789,"oc":"#000000"},{"x":34.65,"y":7.484,"w":0.75,"l":0.789,"oc":"#000000"},{"x":30.15,"y":7.484,"w":0.75,"l":0.789,"oc":"#000000"},{"x":34.65,"y":7.484,"w":0.75,"l":0.789,"oc":"#000000"},{"x":30.15,"y":8.227,"w":0.75,"l":0.789,"oc":"#000000"},{"x":28.8,"y":8.227,"w":0.75,"l":0.789,"oc":"#000000"},{"x":34.65,"y":8.227,"w":0.75,"l":0.789,"oc":"#000000"},{"x":30.15,"y":8.227,"w":0.75,"l":0.789,"oc":"#000000"},{"x":34.65,"y":8.227,"w":0.75,"l":0.789,"oc":"#000000"},{"x":30.15,"y":8.985,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":8.985,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":9,"w":0.75,"l":0.75,"oc":"#000000"},{"x":30.15,"y":9,"w":0.75,"l":0.75,"oc":"#000000"},{"x":34.65,"y":8.985,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":9.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":9.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":9.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":30.15,"y":9.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":34.65,"y":9.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":10.477,"w":0.75,"l":0.789,"oc":"#000000"},{"x":28.8,"y":10.477,"w":0.75,"l":0.789,"oc":"#000000"},{"x":34.65,"y":10.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":30.15,"y":10.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":34.65,"y":10.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":21.6,"y":11.235,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":11.235,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":11.235,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":11.235,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":11.235,"w":0.75,"l":5.281,"oc":"#000000"},{"x":28.8,"y":11.235,"w":0.75,"l":5.281,"oc":"#000000"},{"x":34.65,"y":11.235,"w":0.75,"l":5.289,"oc":"#000000"},{"x":30.15,"y":11.235,"w":0.75,"l":5.289,"oc":"#000000"},{"x":34.65,"y":11.235,"w":0.75,"l":5.289,"oc":"#000000"},{"x":21.6,"y":11.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":11.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":12,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":12,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":12.735,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":12.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":12.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":12.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":13.485,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":13.485,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":13.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":13.5,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":14.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":14.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":14.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":14.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":14.985,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":14.985,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":15,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":15,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":15.735,"w":0.75,"l":0.789,"oc":"#000000"},{"x":22.95,"y":15.735,"w":0.75,"l":0.789,"oc":"#000000"},{"x":28.8,"y":15.735,"w":0.75,"l":0.789,"oc":"#000000"},{"x":27.45,"y":15.735,"w":0.75,"l":0.789,"oc":"#000000"},{"x":28.8,"y":16.484,"w":0.75,"l":0.789,"oc":"#000000"},{"x":30.15,"y":16.486,"w":0.75,"l":0.789,"oc":"#000000"},{"x":34.65,"y":16.484,"w":0.75,"l":0.789,"oc":"#000000"},{"x":28.8,"y":17.227,"w":0.75,"l":0.789,"oc":"#000000"},{"x":30.15,"y":17.227,"w":0.75,"l":0.789,"oc":"#000000"},{"x":34.65,"y":17.227,"w":0.75,"l":0.789,"oc":"#000000"},{"x":28.8,"y":17.985,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":17.985,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":17.985,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":18.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":18.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":18.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":19.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":19.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":19.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":20.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":20.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":20.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":20.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":20.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":20.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":21.734,"w":0.75,"l":0.789,"oc":"#000000"},{"x":30.15,"y":21.734,"w":0.75,"l":0.789,"oc":"#000000"},{"x":34.65,"y":21.734,"w":0.75,"l":0.789,"oc":"#000000"},{"x":28.8,"y":22.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":22.477,"w":0.75,"l":0.789,"oc":"#000000"},{"x":34.65,"y":22.477,"w":0.75,"l":0.789,"oc":"#000000"},{"x":21.6,"y":23.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":23.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":23.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":23.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":23.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":23.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":24,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":24,"w":0.75,"l":0.75,"oc":"#000000"},{"x":30.15,"y":23.234,"w":0.75,"l":8.281,"oc":"#000000"},{"x":28.8,"y":23.234,"w":0.75,"l":8.281,"oc":"#000000"},{"x":34.65,"y":23.234,"w":0.75,"l":8.281,"oc":"#000000"},{"x":30.15,"y":23.234,"w":0.75,"l":8.281,"oc":"#000000"},{"x":34.65,"y":23.234,"w":0.75,"l":8.281,"oc":"#000000"},{"x":1.8,"y":24.681,"w":0.75,"l":2.375,"oc":"#000000"},{"x":5.4,"y":24.681,"w":0.75,"l":2.375,"oc":"#000000"},{"x":21.6,"y":24.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":24.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":24.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":24.75,"w":0.75,"l":0.75,"oc":"#000000"},{"x":15.75,"y":25.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":14.4,"y":25.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":15.75,"y":25.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":21.6,"y":25.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":20.25,"y":25.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":25.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":21.6,"y":25.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":25.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":25.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":25.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":25.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":21.6,"y":26.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":26.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":26.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":26.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":26.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":21.6,"y":26.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":27,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":27,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":27,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":27,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":27.738,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":27.754,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":27.754,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":27.754,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":27.754,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":28.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":28.504,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":28.504,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":28.504,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":28.504,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":29.238,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":29.254,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":29.254,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":29.254,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":29.254,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":29.984,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":30,"w":0.75,"l":0.75,"oc":"#000000"},{"x":22.95,"y":30,"w":0.75,"l":0.75,"oc":"#000000"},{"x":28.8,"y":30,"w":0.75,"l":0.75,"oc":"#000000"},{"x":27.45,"y":30,"w":0.75,"l":0.75,"oc":"#000000"},{"x":21.6,"y":30.734,"w":0.75,"l":0.789,"oc":"#000000"},{"x":27.45,"y":30.734,"w":0.75,"l":0.789,"oc":"#000000"},{"x":22.95,"y":30.734,"w":0.75,"l":0.789,"oc":"#000000"},{"x":28.8,"y":30.734,"w":0.75,"l":0.789,"oc":"#000000"},{"x":27.45,"y":30.734,"w":0.75,"l":0.789,"oc":"#000000"},{"x":28.8,"y":31.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":31.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":31.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":31.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":32.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":32.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":30.15,"y":32.25,"w":0.75,"l":0.75,"oc":"#000000"},{"x":34.65,"y":32.234,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":32.985,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":33,"w":0.75,"l":0.75,"oc":"#000000"},{"x":30.15,"y":33,"w":0.75,"l":0.75,"oc":"#000000"},{"x":34.65,"y":32.985,"w":0.75,"l":0.781,"oc":"#000000"},{"x":11.7,"y":33.812,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":12.6,"y":33.812,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":13.5,"y":33.812,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":14.4,"y":33.812,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":15.3,"y":33.812,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":16.2,"y":33.812,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":17.1,"y":33.812,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":18,"y":33.812,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":18.9,"y":33.812,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":19.8,"y":33.812,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":30.15,"y":33.735,"w":0.75,"l":2.281,"oc":"#000000"},{"x":28.8,"y":33.735,"w":0.75,"l":2.281,"oc":"#000000"},{"x":34.65,"y":33.735,"w":0.75,"l":2.281,"oc":"#000000"},{"x":30.15,"y":33.735,"w":0.75,"l":2.281,"oc":"#000000"},{"x":34.65,"y":33.735,"w":0.75,"l":2.281,"oc":"#000000"},{"x":11.7,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":12.6,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":13.5,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":14.4,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":15.3,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":16.2,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":17.1,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":18,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":18.9,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":19.8,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":20.744,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":21.6,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":22.557,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":23.4,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":24.3,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":25.2,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":26.1,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":27,"y":34.525,"w":0.75,"l":0.688,"oc":"#000000","dsh":1},{"x":22.95,"y":35.326,"w":0.75,"l":0.656,"oc":"#000000"},{"x":21.6,"y":35.326,"w":0.75,"l":0.656,"oc":"#000000"},{"x":27.45,"y":35.326,"w":0.75,"l":0.656,"oc":"#000000"},{"x":22.95,"y":35.326,"w":0.75,"l":0.656,"oc":"#000000"},{"x":28.8,"y":35.326,"w":0.75,"l":0.656,"oc":"#000000"},{"x":27.45,"y":35.326,"w":0.75,"l":0.656,"oc":"#000000"},{"x":28.8,"y":35.985,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":35.985,"w":0.75,"l":0.781,"oc":"#000000"},{"x":30.15,"y":35.985,"w":0.75,"l":0.781,"oc":"#000000"},{"x":34.65,"y":35.985,"w":0.75,"l":0.781,"oc":"#000000"},{"x":21.6,"y":36.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":22.95,"y":36.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":27.45,"y":36.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":28.8,"y":36.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":17.104,"y":41.234,"w":0.75,"l":1.531,"oc":"#000000"},{"x":20.25,"y":41.234,"w":0.75,"l":1.531,"oc":"#000000"},{"x":17.1,"y":41.234,"w":0.75,"l":1.531,"oc":"#000000"},{"x":28.793,"y":41.234,"w":0.75,"l":1.531,"oc":"#000000"},{"x":20.25,"y":41.234,"w":0.75,"l":1.531,"oc":"#000000"},{"x":28.8,"y":41.234,"w":0.75,"l":1.531,"oc":"#000000"},{"x":17.104,"y":42.734,"w":0.75,"l":1.535,"oc":"#000000"},{"x":20.25,"y":42.734,"w":0.75,"l":1.535,"oc":"#000000"},{"x":17.1,"y":42.734,"w":0.75,"l":1.535,"oc":"#000000"},{"x":28.793,"y":42.734,"w":0.75,"l":1.535,"oc":"#000000"},{"x":20.25,"y":42.734,"w":0.75,"l":1.535,"oc":"#000000"},{"x":28.8,"y":42.734,"w":0.75,"l":1.531,"oc":"#000000"},{"x":13.05,"y":44.227,"w":0.75,"l":1.539,"oc":"#000000"},{"x":28.8,"y":44.227,"w":0.75,"l":1.539,"oc":"#000000"},{"x":24.3,"y":44.227,"w":0.75,"l":1.539,"oc":"#000000"},{"x":28.8,"y":44.227,"w":0.75,"l":1.539,"oc":"#000000"},{"x":31.95,"y":44.227,"w":0.75,"l":1.539,"oc":"#000000"},{"x":24.75,"y":45.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":24.75,"y":46.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":24.75,"y":45.734,"w":0.75,"l":0.781,"oc":"#000000"},{"x":24.75,"y":46.484,"w":0.75,"l":0.781,"oc":"#000000"},{"x":21.6,"y":30.734,"w":0.75,"l":0.781,"oc":"#000000"}],"Fills":[{"x":5.4,"y":2.25,"w":30.6,"h":45,"oc":"#dcfffa"},{"x":1.8,"y":1.5,"w":34.65,"h":1.5,"oc":"#dcfffa"},{"x":1.8,"y":47.25,"w":34.65,"h":0.75,"oc":"#dcfffa"},{"x":11.7,"y":33.75,"w":8.1,"h":0.75,"clr":1},{"x":11.7,"y":34.5,"w":15.3,"h":0.687,"clr":1},{"x":30.15,"y":3,"w":4.5,"h":0.75,"clr":1},{"x":28.8,"y":3.75,"w":1.35,"h":2.25,"clr":5},{"x":30.15,"y":3.75,"w":4.5,"h":2.25,"clr":1},{"x":34.65,"y":3.75,"w":1.35,"h":2.25,"clr":1},{"x":1.8,"y":5.25,"w":3.6,"h":12.625,"oc":"#e8ffff"},{"x":2.063,"y":5.375,"w":3.312,"h":12.249,"clr":1},{"x":30.15,"y":6,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":6.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":7.5,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":8.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":9,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":9.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":10.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":11.25,"w":4.5,"h":0.75,"clr":1},{"x":28.8,"y":11.25,"w":1.35,"h":5.25,"clr":5},{"x":30.15,"y":11.25,"w":4.5,"h":5.25,"clr":1},{"x":34.65,"y":11.25,"w":1.35,"h":5.25,"clr":1},{"x":22.95,"y":12,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":12.75,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":13.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":14.25,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":15,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":15.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":16.502,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":17.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":18,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":18.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":19.5,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":20.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":21,"w":4.5,"h":0.75,"clr":1},{"x":24.75,"y":21.813,"w":3.6,"h":0.687,"clr":1},{"x":30.15,"y":21.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":22.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":23.25,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":24,"w":4.5,"h":0.75,"clr":1},{"x":28.8,"y":23.25,"w":1.35,"h":8.25,"clr":5},{"x":30.15,"y":23.25,"w":4.5,"h":8.25,"clr":1},{"x":34.65,"y":23.25,"w":1.35,"h":8.25,"clr":1},{"x":1.8,"y":24.369,"w":3.6,"h":3,"oc":"#e8ffff"},{"x":2.063,"y":24.507,"w":3.312,"h":2.75,"clr":1},{"x":22.95,"y":24.75,"w":4.5,"h":0.75,"clr":1},{"x":15.75,"y":25.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":25.5,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":26.25,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":27,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":27.754,"w":4.5,"h":0.75,"clr":5},{"x":22.95,"y":28.504,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":29.254,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":30,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":30.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":31.5,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":32.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":33,"w":4.5,"h":0.75,"clr":1},{"x":28.8,"y":33.75,"w":1.35,"h":2.25,"clr":5},{"x":30.15,"y":33.75,"w":4.5,"h":2.25,"clr":1},{"x":34.65,"y":33.75,"w":1.35,"h":2.25,"clr":1},{"x":22.95,"y":35.342,"w":4.5,"h":0.625,"clr":1},{"x":30.15,"y":36,"w":4.5,"h":0.75,"clr":1},{"x":22.95,"y":36.75,"w":4.5,"h":0.75,"clr":1},{"x":28.8,"y":36.75,"w":7.2,"h":0.75,"clr":5},{"x":9,"y":38.25,"w":8.1,"h":1.5,"clr":1},{"x":19.35,"y":38.246,"w":5.85,"h":1.5,"clr":1},{"x":31.05,"y":39,"w":4.5,"h":0.75,"clr":1},{"x":5.85,"y":41.25,"w":11.254,"h":1.5,"clr":1},{"x":17.1,"y":41.25,"w":3.15,"h":1.5,"clr":1},{"x":20.25,"y":41.25,"w":8.543,"h":1.5,"clr":1},{"x":28.8,"y":41.25,"w":7.203,"h":1.5,"clr":1},{"x":5.85,"y":42.75,"w":11.254,"h":1.496,"clr":1},{"x":17.1,"y":42.75,"w":3.15,"h":1.496,"clr":1},{"x":20.25,"y":42.75,"w":8.543,"h":1.496,"clr":1},{"x":28.8,"y":42.75,"w":7.2,"h":1.5,"clr":1},{"x":31.5,"y":43.5,"w":4.5,"h":0.75,"clr":1},{"x":5.85,"y":44.25,"w":7.2,"h":1.5,"clr":1},{"x":13.05,"y":44.25,"w":11.25,"h":1.5,"clr":1},{"x":24.3,"y":44.25,"w":4.5,"h":1.5,"clr":1},{"x":28.8,"y":44.25,"w":3.15,"h":1.5,"clr":1},{"x":31.95,"y":44.25,"w":4.05,"h":1.5,"clr":1},{"x":5.85,"y":45.75,"w":18.9,"h":0.75,"clr":1},{"x":5.85,"y":46.5,"w":18.9,"h":0.75,"clr":1},{"x":24.75,"y":45.75,"w":11.25,"h":0.75,"clr":1},{"x":24.75,"y":46.5,"w":11.25,"h":0.75,"clr":1}],"Texts":[{"x":6.746,"y":18.893,"w":380.04,"oc":"#bfbfbf","sw":0.36196875,"A":"left","R":[{"T":"DO NOT FILE","S":-1,"TS":[0,64,1,0]}]},{"x":7.142,"y":14.742,"w":370.26,"oc":"#bfbfbf","sw":0.36196875,"A":"left","R":[{"T":"July 26, 2013","S":-1,"TS":[0,64,1,0]}]},{"x":5.977,"y":10.768,"w":403.32,"oc":"#bfbfbf","sw":0.36196875,"A":"left","R":[{"T":"DRAFT AS OF","S":-1,"TS":[0,64,1,0]}]},{"x":2,"y":1.968,"w":8.134,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Form 1040 (2013) ","S":-1,"TS":[0,9.7,0,0]}]},{"x":34.206,"y":2.009,"w":2.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.333,"y":2.009,"w":0.834,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"2 ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":3.146,"w":4.334,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Tax and ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":3.9859999999999998,"w":3.462,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Credits","S":-1,"TS":[0,13,0,0]}]},{"x":4.164,"y":3.9850000000000003,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,15,0,0]}]},{"x":5.494,"y":2.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"38 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":2.857,"w":20.284,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Amount from line 37 (adjusted gross income) ","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":2.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":2.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":2.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":2.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":2.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":2.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":2.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":2.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":2.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":2.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":2.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":2.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":2.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":2.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":2.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"38 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":3.607,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"39","S":-1,"TS":[0,11,0,0]}]},{"x":6.05,"y":3.607,"w":0.852,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":3.6689999999999996,"w":3.149,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Check ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":4.357,"w":1.074,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"if: ","S":-1,"TS":[0,11,0,0]}]},{"x":8.55,"y":4.037,"w":0.48,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"{","S":-1,"TS":[0,15,0,0]}]},{"x":10.125,"y":3.607,"w":1.871,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"You","S":-1,"TS":[0,11,0,0]}]},{"x":11.06,"y":3.607,"w":15.911,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" were born before January 2, 1949, ","S":-1,"TS":[0,11,0,0]}]},{"x":21.325,"y":3.607,"w":2.556,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Blind.","S":-1,"TS":[0,11,0,0]}]},{"x":10.125,"y":4.357,"w":3.575,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Spouse","S":-1,"TS":[0,11,0,0]}]},{"x":11.912,"y":4.357,"w":15.541,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" was born before January 2, 1949, ","S":-1,"TS":[0,11,0,0]}]},{"x":21.325,"y":4.357,"w":2.556,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Blind.","S":-1,"TS":[0,11,0,0]}]},{"x":22.7,"y":4.024,"w":0.48,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[0,15,0,0]}]},{"x":23.15,"y":3.6689999999999996,"w":6.11,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Total boxes ","S":-1,"TS":[0,10.2,0,0]}]},{"x":23.15,"y":4.357,"w":4.074,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"checked","S":-1,"TS":[0,10.2,0,0]}]},{"x":24.983,"y":4.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.7,0,0]}]},{"x":25.1,"y":4.263,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":25.204,"y":4.263,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":25.85,"y":4.357,"w":1.964,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"39a ","S":-1,"TS":[0,11,0,0]}]},{"x":6.05,"y":5.107,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":5.089,"w":39.338,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"If your spouse itemizes on a separate return or you were a dual-status alien, check here","S":-1,"TS":[0,10.65,0,0]}]},{"x":25.758,"y":5.089,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,8.1,0,0]}]},{"x":25.847,"y":4.995,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":26.875,"y":5.107,"w":2.001,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"39b ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":5.147,"w":4.909,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Standard ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":5.585,"w":5.463,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Deduction ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":6.022,"w":2.611,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"for— ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":6.647,"w":6.611,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"• People who ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":7.084,"w":5.113,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"check any ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":7.521000000000001,"w":5.464,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"box on line ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":7.959,"w":5.095,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"39a or 39b ","S":-1,"TS":[0,10.5,0,0]}]},{"x":4.388,"y":7.959,"w":1.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"or ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":8.396,"w":5.482,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"who can be ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":8.833,"w":6.187,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"claimed as a ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":9.271,"w":5.651,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"dependent, ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":9.708,"w":1.852,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"see ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":10.145,"w":5.742,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"instructions. ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":10.77,"w":5.519,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"• All others: ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":11.395,"w":4.5,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Single or ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":11.832,"w":6.352,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Married filing ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":12.27,"w":5.445,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"separately, ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":12.707,"w":3.336,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"$6,100 ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":13.332,"w":6.352,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Married filing ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":13.769,"w":4.352,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"jointly or ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":14.207,"w":5.001,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Qualifying ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":14.644,"w":5.127,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"widow(er), ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":15.081,"w":4.17,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"$12,200 ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":15.706,"w":4.093,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Head of ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":16.144,"w":5.502,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"household, ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":16.581,"w":3.336,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"$8,950 ","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.494,"y":5.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"40 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":5.857,"w":9.959,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Itemized deductions ","S":-1,"TS":[0,11,0,0]}]},{"x":11.929,"y":5.857,"w":8.242,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"(from Schedule A) ","S":-1,"TS":[0,11,0,0]}]},{"x":16.05,"y":5.857,"w":1.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"or ","S":-1,"TS":[0,11,0,0]}]},{"x":16.689,"y":5.857,"w":2.241,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"your ","S":-1,"TS":[0,11,0,0]}]},{"x":17.81,"y":5.857,"w":9.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"standard deduction ","S":-1,"TS":[0,11,0,0]}]},{"x":22.597,"y":5.857,"w":7.371,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"(see left margin) ","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":5.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":5.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":5.857,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"40","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":6.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"41 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":6.607,"w":12.856,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Subtract line 40 from line 38 ","S":-1,"TS":[0,11,0,0]}]},{"x":14,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":14.75,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":15.5,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":6.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":6.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"41 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":7.356999999999999,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"42 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":7.356999999999999,"w":5.905,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Exemptions.","S":-1,"TS":[0,11,0,0]}]},{"x":9.902,"y":7.356999999999999,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":10.041,"y":7.356999999999999,"w":43.886,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"If line 38 is $150,000 or less, multiply $3,900 by the number on line 6d. Otherwise, see instructions","S":-1,"TS":[0,9.45,0,0]}]},{"x":27.733,"y":7.356999999999999,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.879999999999999,0,0]}]},{"x":28.947,"y":7.356999999999999,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"42 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":8.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"43 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":8.107,"w":8.367,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Taxable income. ","S":-1,"TS":[0,11,0,0]}]},{"x":11.133,"y":8.107,"w":30.64,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Subtract line 42 from line 41. If line 42 is more than line 41, enter -0- ","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":8.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":8.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":8.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"43 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":8.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"44 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":8.857,"w":2.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Tax ","S":-1,"TS":[0,10.2,0,0]}]},{"x":7.975,"y":8.857,"w":16.54,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"(see instructions). Check if any from: ","S":-1,"TS":[0,10.2,0,0]}]},{"x":15.313,"y":8.857,"w":0.852,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11,0,0]}]},{"x":16.115,"y":8.857,"w":6.132,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Form(s) 8814 ","S":-1,"TS":[0,11,0,0]}]},{"x":19.677,"y":8.857,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":20.427,"y":8.857,"w":4.836,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Form 4972","S":-1,"TS":[0,11,0,0]}]},{"x":23.019,"y":8.857,"w":0.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":8.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"44 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":9.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"45 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":9.607,"w":12.124,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Alternative minimum tax ","S":-1,"TS":[0,11,0,0]}]},{"x":13.012,"y":9.607,"w":16.412,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"(see instructions). Attach Form 6251 ","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":9.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":9.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":9.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":9.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":9.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":9.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":9.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":9.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":9.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":9.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"45 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":10.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"46 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":10.357,"w":9.171,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Add lines 44 and 45 ","S":-1,"TS":[0,11,0,0]}]},{"x":11.75,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":12.5,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":13.25,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":14,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":14.75,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":15.5,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.564,"y":10.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.704,"y":10.263,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":28.947,"y":10.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"46 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":11.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"47 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.949,"y":11.107,"w":21.467,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Foreign tax credit. Attach Form 1116 if required ","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":11.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":11.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":11.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":11.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":11.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"47 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":11.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"48 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":11.866,"w":29.304,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Credit for child and dependent care expenses. Attach Form 2441 ","S":-1,"TS":[0,10.5,0,0]}]},{"x":21.747,"y":11.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"48 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":12.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"49 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.949,"y":12.607,"w":19.025,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Education credits from Form 8863, line 19 ","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":12.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":12.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":12.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":12.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":12.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":12.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"49 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":13.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"50 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":13.357,"w":26.081,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Retirement savings contributions credit. Attach Form 8880","S":-1,"TS":[0,11.4,0,0]}]},{"x":21.747,"y":13.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"50 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":14.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"51 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":14.107,"w":22.264,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Child tax credit. Attach Schedule 8812, if required","S":-1,"TS":[0,11.24,0,0]}]},{"x":18.5,"y":14.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.4,0,0]}]},{"x":19.25,"y":14.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.4,0,0]}]},{"x":20,"y":14.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.4,0,0]}]},{"x":21.747,"y":14.107,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"51 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":14.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"52 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.949,"y":14.857,"w":20.134,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Residential energy credits. Attach Form 5695","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":14.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":14.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":14.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":14.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":14.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"52 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":15.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"53 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.967,"y":15.607,"w":11.318,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Other credits from Form: ","S":-1,"TS":[0,9.8,0,0]}]},{"x":11.9,"y":15.607,"w":0.852,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11,0,0]}]},{"x":13.124,"y":15.582,"w":2.502,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"3800 ","S":-1,"TS":[0,11,0,0]}]},{"x":14.6,"y":15.607,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":15.852,"y":15.582,"w":2.502,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"8801 ","S":-1,"TS":[0,11,0,0]}]},{"x":17.3,"y":15.607,"w":0.852,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"c ","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":15.607,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"53","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":16.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"54 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":16.357,"w":18.135,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Add lines 47 through 53. These are your ","S":-1,"TS":[0,11,0,0]}]},{"x":16.017,"y":16.357,"w":5.998,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"total credits ","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":16.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":16.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":16.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":16.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":16.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":16.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":16.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":16.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":16.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":16.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":16.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":16.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":16.357,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"54","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":17.045,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"55 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":17.045,"w":30.64,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Subtract line 54 from line 46. If line 54 is more than line 46, enter -0- ","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":17.045,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":17.045,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":17.045,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":17.045,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":17.045,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":17.045,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.564,"y":17.045,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.704,"y":16.951,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":28.947,"y":17.107,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"55","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":18.138,"w":3.242,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Other ","S":-1,"TS":[0,15,0,0]}]},{"x":2,"y":19.038,"w":3.111,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Taxes ","S":-1,"TS":[0,15,0,0]}]},{"x":5.494,"y":17.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"56 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":17.857,"w":19.023,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Self-employment tax. Attach Schedule SE ","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":17.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":17.857,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"56 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":18.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"57 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":18.607,"w":25.3,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Unreported social security and Medicare tax from Form: ","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":18.607,"w":0.852,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11,0,0]}]},{"x":21.325,"y":18.607,"w":2.502,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"4137 ","S":-1,"TS":[0,11,0,0]}]},{"x":23.6,"y":18.607,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":24.925,"y":18.607,"w":2.502,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"8919 ","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":18.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.5,"y":18.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.947,"y":18.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"57 ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":19.357,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"58 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":19.362,"w":39.916,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Additional tax on IRAs, other qualified retirement plans, etc. Attach Form 5329 if required ","S":-1,"TS":[0,10.7,0,0]}]},{"x":26.75,"y":19.362,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":27.5,"y":19.362,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":28.947,"y":19.357,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"58","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":20.107,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"59","S":-1,"TS":[0,11,0,0]}]},{"x":6.05,"y":20.107,"w":0.852,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11,0,0]}]},{"x":28.803,"y":20.107,"w":1.686,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"59a","S":-1,"TS":[0,11,0,0]}]},{"x":6.05,"y":20.857,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":28.794,"y":20.857,"w":1.723,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"59b","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":20.112,"w":21.413,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Household employment taxes from Schedule H ","S":-1,"TS":[0,10.7,0,0]}]},{"x":17.75,"y":20.112,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":18.5,"y":20.112,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":19.25,"y":20.112,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":20,"y":20.112,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":20.749,"y":20.112,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":21.499,"y":20.112,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":22.249,"y":20.112,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":22.999,"y":20.112,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":23.748,"y":20.112,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":24.498,"y":20.112,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":25.248,"y":20.112,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":25.998,"y":20.112,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":26.748,"y":20.112,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":27.497,"y":20.112,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":6.948,"y":20.862,"w":30.787,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"First-time homebuyer credit repayment. Attach Form 5405 if required","S":-1,"TS":[0,10.7,0,0]}]},{"x":22.247,"y":20.862,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":22.997,"y":20.862,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":23.747,"y":20.862,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":24.497,"y":20.862,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":25.247,"y":20.862,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":25.996,"y":20.862,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":26.746,"y":20.862,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":27.496,"y":20.862,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.7,0,0]}]},{"x":5.494,"y":21.607,"w":1.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"60 ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":21.607,"w":5.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Taxes from:","S":-1,"TS":[0,11,0,0]}]},{"x":10.1,"y":21.607,"w":0.852,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11,0,0]}]},{"x":11.364,"y":21.582,"w":4.836,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Form 8959","S":-1,"TS":[0,10.04,0,0]}]},{"x":13.7,"y":21.607,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":14.955,"y":21.582,"w":4.836,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Form 8960","S":-1,"TS":[0,10.04,0,0]}]},{"x":17.338,"y":21.607,"w":0.852,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"c ","S":-1,"TS":[0,11,0,0]}]},{"x":18.576,"y":21.582,"w":11.594,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Instructions; enter code(s)","S":-1,"TS":[0,10.68,0,0]}]},{"x":28.947,"y":21.607,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"60","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":22.357,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"61","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":22.357,"w":16.598,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Add lines 55 through 60. This is your ","S":-1,"TS":[0,11,0,0]}]},{"x":15.249,"y":22.357,"w":4.166,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"total tax ","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.25,"y":22.357,"w":0.556,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.528,"y":22.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.666,"y":22.263,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":28.947,"y":22.357,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"61","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":23.196,"w":5,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Payments ","S":-1,"TS":[0,13,0,0]}]},{"x":5.494,"y":23.107,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"62","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":23.107,"w":24.914,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Federal income tax withheld from Forms W-2 and 1099 ","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":23.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":23.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":23.107,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"62","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":23.857,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"63","S":-1,"TS":[0,11,0,0]}]},{"x":6.947,"y":23.848,"w":30.458,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"2013 estimated tax payments and amount applied from 2012 return ","S":-1,"TS":[0,9.18091,0,0]}]},{"x":21.747,"y":23.857,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"63","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":24.39,"w":6.242,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"If you have a ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":24.953,"w":4.834,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"qualifying ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":25.515,"w":6.039,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"child, attach ","S":-1,"TS":[0,10.5,0,0]}]},{"x":2,"y":26.078,"w":6.612,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Schedule EIC. ","S":-1,"TS":[0,10.5,0,0]}]},{"x":5.494,"y":24.607,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"64","S":-1,"TS":[0,11,0,0]}]},{"x":6.05,"y":24.607,"w":0.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":24.607,"w":13.051,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Earned income credit (EIC) ","S":-1,"TS":[0,11,0,0]}]},{"x":14,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":14.75,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":15.5,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":24.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.604,"y":24.607,"w":1.964,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"64a ","S":-1,"TS":[0,11,0,0]}]},{"x":6.05,"y":25.357,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":25.357,"w":14.762,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Nontaxable combat pay election ","S":-1,"TS":[0,10.2,0,0]}]},{"x":14.394,"y":25.357,"w":2.001,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"64b ","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":26.107,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"65","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":26.107,"w":22.061,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Additional child tax credit. Attach Schedule 8812 ","S":-1,"TS":[0,10.6,0,0]}]},{"x":17.75,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":18.5,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":19.25,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":20,"y":26.107,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":20.45,"y":26.107,"w":0.834,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" .","S":-1,"TS":[0,10.6,0,0]}]},{"x":21.747,"y":26.107,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"65","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":26.857,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"66","S":-1,"TS":[0,11,0,0]}]},{"x":6.949,"y":26.857,"w":23.1,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"American opportunity credit from Form 8863, line 8 ","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":26.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":26.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":26.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":26.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":26.857,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"66","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":27.611,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"67","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":27.607,"w":4.5,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Reserved ","S":-1,"TS":[0,11.32,0,0]}]},{"x":9.5,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":10.25,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":11,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":11.75,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":12.499,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":13.249,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":13.999,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":14.749,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":15.499,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":16.249,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":16.999,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":17.748,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":18.498,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":19.248,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":19.998,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":20.748,"y":27.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.32,0,0]}]},{"x":21.747,"y":27.611,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"67","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":28.361,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"68","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":28.357,"w":20.299,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Amount paid with request for extension to file","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":28.357,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":28.357,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"68","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":29.111,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"69","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":29.111,"w":22.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Excess social security and tier 1 RRTA tax withheld","S":-1,"TS":[0,10.65,0,0]}]},{"x":17.894,"y":29.111,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.16,0,0]}]},{"x":18.5,"y":29.111,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":19.25,"y":29.111,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":20,"y":29.111,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":20.751,"y":29.111,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":21.747,"y":29.111,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"69","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":29.857,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"70","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":29.857,"w":21.559,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Credit for federal tax on fuels. Attach Form 4136","S":-1,"TS":[0,11.16,0,0]}]},{"x":18.5,"y":29.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":19.25,"y":29.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":20,"y":29.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":20.751,"y":29.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.16,0,0]}]},{"x":21.747,"y":29.857,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"70","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":30.607,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"71","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":30.607,"w":8.724,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Credits from Form: ","S":-1,"TS":[0,9.4,0,0]}]},{"x":10.3,"y":30.607,"w":0.852,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11,0,0]}]},{"x":11.252,"y":30.607,"w":2.502,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"2439 ","S":-1,"TS":[0,11,0,0]}]},{"x":13.25,"y":30.607,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":14.538,"y":30.607,"w":4.222,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Reserved","S":-1,"TS":[0,7.8,0,0]}]},{"x":16.032,"y":30.607,"w":0.852,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"c ","S":-1,"TS":[0,11,0,0]}]},{"x":17.207,"y":30.607,"w":2.502,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"8885 ","S":-1,"TS":[0,11,0,0]}]},{"x":18.65,"y":30.607,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"d ","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":30.607,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"71","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":31.295,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"72","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":31.295,"w":25.64,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Add lines 62, 63, 64a, and 65 through 71. These are your ","S":-1,"TS":[0,11,0,0]}]},{"x":19.77,"y":31.295,"w":7.369,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"total payments ","S":-1,"TS":[0,11,0,0]}]},{"x":23.75,"y":31.295,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":31.295,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":31.295,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":31.295,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":31.295,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.25,"y":31.295,"w":0.556,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.528,"y":31.295,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.666,"y":31.201,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":28.947,"y":31.357,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"72","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":32.134,"w":3.704,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Refund ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":33.697,"w":7.372,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Direct deposit? ","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":34.222,"w":2,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"See ","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":34.747,"w":5.742,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"instructions. ","S":2,"TS":[0,10,0,0]}]},{"x":5.494,"y":32.107,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"73","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":32.107,"w":36.717,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"If line 72 is more than line 61, subtract line 61 from line 72. This is the amount you ","S":-1,"TS":[0,11.16,0,0]}]},{"x":25.676,"y":32.107,"w":4.426,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"overpaid ","S":-1,"TS":[0,11.16,0,0]}]},{"x":28.947,"y":32.107,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"73","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":32.857,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"74","S":-1,"TS":[0,11,0,0]}]},{"x":6.05,"y":32.857,"w":0.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":32.857,"w":12.485,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Amount of line 73 you want ","S":-1,"TS":[0,11,0,0]}]},{"x":13.193,"y":32.857,"w":7.798,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"refunded to you.","S":-1,"TS":[0,11,0,0]}]},{"x":17.091,"y":32.857,"w":16.913,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" If Form 8888 is attached, check here ","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":32.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.624,"y":32.857,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":26.763,"y":32.763,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":28.803,"y":32.857,"w":1.964,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"74a ","S":-1,"TS":[0,11,0,0]}]},{"x":5.188,"y":33.44,"w":1.28,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶ ","S":-1,"TS":[2,9,0,0]}]},{"x":5.188,"y":34.253,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":6.05,"y":33.607,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":33.607,"w":7.466,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Routing number ","S":-1,"TS":[0,11,0,0]}]},{"x":20.135,"y":33.513,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":20.51,"y":33.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":20.615,"y":33.607,"w":0.852,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"c ","S":-1,"TS":[0,10.2,0,0]}]},{"x":20.998,"y":33.607,"w":2.76,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Type: ","S":-1,"TS":[0,10.2,0,0]}]},{"x":23.125,"y":33.607,"w":4.223,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Checking","S":-1,"TS":[0,10.2,0,0]}]},{"x":25.025,"y":33.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":26.275,"y":33.607,"w":3.537,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Savings","S":-1,"TS":[0,10.2,0,0]}]},{"x":6.05,"y":34.353,"w":0.889,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"d ","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":34.357,"w":7.429,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Account number","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":35.104,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"75","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":35.103,"w":12.485,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Amount of line 73 you want ","S":-1,"TS":[0,10.52,0,0]}]},{"x":12.818,"y":35.103,"w":16.387,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"applied to your 2014 estimated tax","S":-1,"TS":[0,10.52,0,0]}]},{"x":20.519,"y":35.103,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":20.658,"y":35.01,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":21.747,"y":35.074,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"75","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":35.771,"w":4.296,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Amount ","S":-1,"TS":[0,12.5,0,0]}]},{"x":2,"y":36.483,"w":4.593,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"You Owe ","S":-1,"TS":[0,12.5,0,0]}]},{"x":5.494,"y":35.795,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"76","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":35.795,"w":8.296,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Amount you owe.","S":-1,"TS":[0,11,0,0]}]},{"x":11.098,"y":35.795,"w":33.174,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" Subtract line 72 from line 61. For details on how to pay, see instructions ","S":-1,"TS":[0,11,0,0]}]},{"x":27.684,"y":35.795,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.824,"y":35.701,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":28.947,"y":35.857,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"76","S":-1,"TS":[0,11,0,0]}]},{"x":5.494,"y":36.607,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"77","S":-1,"TS":[0,11,0,0]}]},{"x":6.95,"y":36.607,"w":17.781,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Estimated tax penalty (see instructions) ","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":36.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":36.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":36.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":36.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":36.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":36.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":20.75,"y":36.607,"w":0.278,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.747,"y":36.607,"w":1.112,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"77","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":37.634,"w":5.797,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Third Party ","S":-1,"TS":[0,12.4,0,0]}]},{"x":2,"y":38.384,"w":4.74,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Designee ","S":-1,"TS":[0,12.4,0,0]}]},{"x":6.05,"y":37.357,"w":40.152,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Do you want to allow another person to discuss this return with the IRS (see instructions)?","S":-1,"TS":[0,11,0,0]}]},{"x":27.625,"y":37.357,"w":2.334,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Yes. ","S":-1,"TS":[0,11,0,0]}]},{"x":28.792,"y":37.357,"w":7.871,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Complete below. ","S":-1,"TS":[0,11,0,0]}]},{"x":34.375,"y":37.357,"w":1.352,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":6.05,"y":38.285,"w":5.501,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Designee’s ","S":2,"TS":[0,10,0,0]}]},{"x":6.05,"y":38.875,"w":3.039,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"name ","S":2,"TS":[0,10,0,0]}]},{"x":7.38,"y":38.781,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":17.158,"y":38.285,"w":3.427,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Phone ","S":2,"TS":[0,10,0,0]}]},{"x":17.158,"y":38.875,"w":1.964,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"no. ","S":2,"TS":[0,10,0,0]}]},{"x":18.017,"y":38.781,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":25.4,"y":38.285,"w":10.167,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Personal identification ","S":2,"TS":[0,10,0,0]}]},{"x":25.4,"y":38.875,"w":10.023,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"number (PIN) ","S":2,"TS":[0,10,0,0]}]},{"x":29.785,"y":38.781,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,9,0,0]}]},{"x":2,"y":39.611,"w":2.667,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Sign ","S":-1,"TS":[0,15,0,0]}]},{"x":2,"y":40.361,"w":2.556,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Here ","S":-1,"TS":[0,15,0,0]}]},{"x":2,"y":41.31,"w":2.797,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Joint r","S":-1,"TS":[0,9.3,0,0]}]},{"x":3.094,"y":41.31,"w":1.741,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"etur","S":-1,"TS":[0,9.3,0,0]}]},{"x":3.787,"y":41.31,"w":3.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"n? See ","S":-1,"TS":[0,9.3,0,0]}]},{"x":2,"y":41.835,"w":6.02,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"instructions. ","S":-1,"TS":[0,9.3,0,0]}]},{"x":2,"y":42.36,"w":7.39,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Keep a copy for ","S":-1,"TS":[0,9.3,0,0]}]},{"x":2,"y":42.885,"w":2.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"your r","S":-1,"TS":[0,9.3,0,0]}]},{"x":3.006,"y":42.885,"w":1.981,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"ecor","S":-1,"TS":[0,9.3,0,0]}]},{"x":3.779,"y":42.885,"w":1.649,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"ds. ","S":-1,"TS":[0,9.3,0,0]}]},{"x":6.05,"y":39.595,"w":71.574,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Under penalties of perjury, I declare that I have examined this return and accompanying schedules and statements, and to the best of my knowledge and belief, ","S":-1,"TS":[0,9.5,0,0]}]},{"x":6.05,"y":40.082,"w":65.693,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"they are true, correct, and complete. Declaration of preparer (other than taxpayer) is based on all information of which preparer has any knowledge.","S":-1,"TS":[0,9.5,0,0]}]},{"x":6.05,"y":41,"w":6.797,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Your signature ","S":2,"TS":[0,10,0,0]}]},{"x":17.1,"y":41,"w":2.371,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Date ","S":2,"TS":[0,10,0,0]}]},{"x":20.25,"y":41,"w":7.668,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Your occupation ","S":2,"TS":[0,10,0,0]}]},{"x":28.8,"y":41,"w":10.468,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Daytime phone number","S":2,"TS":[0,10,0,0]}]},{"x":6.05,"y":42.5,"w":16.151,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Spouse’s signature. If a joint return, ","S":2,"TS":[0,10,0,0]}]},{"x":13.116,"y":42.5,"w":2.445,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"both ","S":2,"TS":[0,10,0,0]}]},{"x":14.185,"y":42.5,"w":4.91,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"must sign. ","S":2,"TS":[0,10,0,0]}]},{"x":5.431,"y":40.996,"w":0.892,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▲","S":-1,"TS":[2,38.9995,0,0],"RA":90}]},{"x":17.1,"y":42.5,"w":2.371,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Date ","S":2,"TS":[0,10,0,0]}]},{"x":20.25,"y":42.5,"w":9.465,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Spouse’s occupation","S":2,"TS":[0,10,0,0]}]},{"x":28.8,"y":42.5,"w":18.318,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"If the IRS sent you an Identity Protection ","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":28.8,"y":42.937,"w":5.834,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"PIN, enter it ","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":28.8,"y":43.375,"w":6.482,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"here (see inst.)","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":2,"y":44.382,"w":2.666,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Paid ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":45.132,"w":4.723,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Preparer ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":45.882,"w":4.556,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Use Only ","S":-1,"TS":[0,13,0,0]}]},{"x":6.037,"y":43.969,"w":12.502,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Print/Type preparer’s name ","S":2,"TS":[0,10,0,0]}]},{"x":13.25,"y":44,"w":9.315,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Preparer’s signature ","S":2,"TS":[0,10,0,0]}]},{"x":24.3,"y":44,"w":2.371,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Date ","S":2,"TS":[0,10,0,0]}]},{"x":28.8,"y":44.337,"w":6.447,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Check if ","S":2,"TS":[0,10,0,0]}]},{"x":28.8,"y":44.775,"w":6.353,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"x":31.950000000000003,"y":43.969,"w":2.481,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" PTIN","S":2,"TS":[0,10,0,0]}]},{"x":6.037,"y":45.625,"w":6.911,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Firm’s name ","S":2,"TS":[0,10,0,0]}]},{"x":9.061,"y":45.562,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":42,"TS":[2,8,0,0]}]},{"x":6.037,"y":46.375,"w":6.909,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Firm’s address ","S":2,"TS":[0,10,0,0]}]},{"x":9.06,"y":46.312,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":42,"TS":[2,8,0,0]}]},{"x":24.75,"y":45.625,"w":5.186,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Firm's EIN ","S":2,"TS":[0,10,0,0]}]},{"x":27.019,"y":45.562,"w":1,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"▶","S":42,"TS":[2,8,0,0]}]},{"x":24.75,"y":46.375,"w":4.835,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Phone no. ","S":2,"TS":[0,10,0,0]}]},{"x":31.844,"y":47.075,"w":2.612,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":32.987,"y":47.075,"w":2.502,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"1040 ","S":-1,"TS":[0,13,0,0]}]},{"x":34.55,"y":47.075,"w":3.02,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"(2013) ","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":2038,"AM":0,"TU":"Page 2. Tax and credits. Line 38. Amount from line 37 (adjusted gross income). Dollars.","x":30.15,"y":3,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N35A","EN":0},"TI":2041,"AM":0,"TU":"Line 39. a. Total Boxes Checked.","x":27.45,"y":3.833,"w":1.318,"h":1.344},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":2045,"AM":0,"TU":"Line 40. Itemized deductions (from Schedule A) or your standard deduction (see instructions). Dollars.","x":30.15,"y":6,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":2046,"AM":0,"TU":"Line 41. Subtract line 40 from line 38. Dollars.","x":30.15,"y":6.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":2047,"AM":0,"TU":"Line 42. Exemptions. If line 38 is $150,000 or less, multiply $3,900 by the number on line 6d. Otherwise, see instructions. Dollars.","x":30.15,"y":7.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TEXT10","EN":0},"TI":2048,"AM":1024,"x":26.648,"y":8.187,"w":2.105,"h":0.833,"V":"Click \"Do the math\" before calculating tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":2049,"AM":0,"TU":"Line 43. Taxable income. Subtract line 42 from line 41. If line 42 is more than line 41, enter zero. Dollars. ","x":30.15,"y":8.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT8814","EN":0},"TI":2051,"AM":0,"TU":"Line 44. C. Form (Enter number).","x":18.803,"y":9.025,"w":1.119,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40FM","EN":0},"TI":2054,"AM":0,"TU":"Line 44. C. Form (Enter number).","x":24.712,"y":9,"w":1.8,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L40T","EN":0},"TI":2055,"AM":0,"x":26.493,"y":9.004,"w":1.119,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40W","EN":0},"TI":2056,"AM":0,"TU":"Line 44. C. Form (Enter number).","x":27.618,"y":8.977,"w":1.119,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":2057,"AM":0,"TU":"Line 44. Dollars.","x":30.15,"y":9,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":2058,"AM":0,"TU":"Line 45. Alternative minimum tax (see instructions). Attach Form 6251. Dollars.","x":30.15,"y":9.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":2059,"AM":0,"TU":"Line 46. Add lines 44 and 45. Dollars.","x":30.15,"y":10.473,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L43","EN":0},"TI":2060,"AM":0,"TU":"Line 47. Foreign tax credit. Attach Form 1116 if required. Dollars.","x":22.95,"y":11.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L44","EN":0},"TI":2061,"AM":0,"TU":"Line 48. Credit for child and dependent care expenses. Attach Form 2441. Dollars.","x":22.95,"y":12,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L46","EN":0},"TI":2062,"AM":0,"TU":"Line 49. Education credits from Form 8863, line 19. Dollars.","x":22.95,"y":12.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RSCCRED","EN":0},"TI":2063,"AM":0,"TU":"Line 50. Retirement savings contributions credit. Attach Form 8880. Dollars.","x":22.95,"y":13.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L47","EN":0},"TI":2064,"AM":0,"TU":"Line 51. Child tax credit. Attach Schedule 8812, if required. Dollars.","x":22.95,"y":14.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RESENRGY","EN":0},"TI":2065,"AM":0,"TU":"Line 52. Residential energy credits. Attach Form 5695. Dollars.","x":22.95,"y":15,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L49FM","EN":0},"TI":2069,"AM":0,"TU":"Line 53. C. Form (Enter number).","x":18.9,"y":15.75,"w":1.8,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L49","EN":0},"TI":2070,"AM":0,"TU":"Line 53. Dollars.","x":22.95,"y":15.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L50","EN":0},"TI":2071,"AM":0,"TU":"Line 54. Add lines 47 through 53. These are your total credits. Dollars.","x":30.15,"y":16.502,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L51","EN":0},"TI":2072,"AM":0,"TU":"Line 55. Subtract line 54 from line 46. If line 54 is more than line 46, enter zero. Dollars. ","x":30.15,"y":17.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L52T","EN":0},"TI":2073,"AM":0,"TU":"Line 53. C. Form (Enter number).","x":16.986,"y":18.151,"w":7.572,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L52","EN":0},"TI":2074,"AM":0,"TU":"Other taxes. Line 56. Self-employment tax. Attach Schedule S E. Dollars.","x":30.15,"y":18,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L53","EN":0},"TI":2077,"AM":0,"TU":"Line 57. Dollars. ","x":30.15,"y":18.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L54W","EN":0},"TI":2078,"AM":0,"TU":"Line 53. C. Form (Enter number).","x":26.379,"y":19.608,"w":2.263,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L54","EN":0},"TI":2079,"AM":0,"TU":"Line 58. Additional tax on I R A s, other qualified retirement plans, etcetera. Attach Form 5329 if required. Dollars.","x":30.15,"y":19.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L56","EN":0},"TI":2080,"AM":0,"TU":"Line 59a. Household employment taxes from Schedule H. Dollars","x":30.15,"y":20.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FTHCR","EN":0},"TI":2081,"AM":0,"TU":"Line 59b. First-time homebuyer credit repayment. Attach Form 5405 if required.\tDollars.","x":30.15,"y":21,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L57T","EN":0},"TI":2085,"AM":0,"TU":"Line 60. Instructions; Enter code(s).","x":25.126,"y":21.858,"w":3.395,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L57W","EN":0},"TI":2086,"AM":0,"TU":"Line 60. Dollars.","x":30.15,"y":21.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L57","EN":0},"TI":2087,"AM":0,"TU":"Line 61. Add lines 55 through 60. This is your total tax. Dollars.","x":30.15,"y":22.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L58","EN":0},"TI":2088,"AM":0,"TU":"Payments. Line 62. Federal income tax withheld from Forms W-2 and 1099. Dollars.","x":22.95,"y":23.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L59W","EN":0},"TI":2089,"AM":0,"TU":"Line 44. C. Form (Enter number).","x":19.234,"y":23.983,"w":1.119,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L59S","EN":0},"TI":2090,"AM":0,"TU":"Line 44. C. Form (Enter number).","x":20.421,"y":24.018,"w":1.119,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L59","EN":0},"TI":2091,"AM":0,"TU":"Line 63. 2013 estimated tax payments and amount applied from 2012 return. Dollars.","x":22.95,"y":24,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L60C","EN":0},"TI":2092,"AM":0,"TU":"Line 53. C. Form (Enter number).","x":14.114,"y":24.835,"w":2.263,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L60","EN":0},"TI":2093,"AM":0,"TU":"Line 64. a. Earned income credit (E I C). If you have a qualifying child, attach Schedule E I C. Dollars.","x":22.95,"y":24.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"NTCOMBAT","EN":0},"TI":2094,"AM":0,"TU":"Line 64. b. Nontaxable combat pay election. Dollars.","x":15.75,"y":25.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L62","EN":0},"TI":2095,"AM":0,"TU":"Line 65. Additional child tax credit. Attach schedule 8812. Dollars.","x":22.95,"y":26.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HOPE","EN":0},"TI":2096,"AM":0,"TU":"Line 66. American opportunity credit from Form 8863, line 8. Dollars.","x":22.95,"y":27,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L63","EN":0},"TI":2097,"AM":0,"TU":"Reserved.","x":22.923,"y":28.462,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L61","EN":0},"TI":2098,"AM":0,"TU":"Line 68. Amount paid with request for extension to file. Dollars.","x":22.923,"y":29.212,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"F4136AMT","EN":0},"TI":2099,"AM":0,"TU":"Line 70. Credit for federal tax on fuels. Attach Form 4136. Dollars.","x":22.95,"y":30,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L64","EN":0},"TI":2103,"AM":0,"TU":"Line 71. Dollars.","x":22.95,"y":30.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L64W","EN":0},"TI":2104,"AM":0,"x":30.176,"y":30.545,"w":1.963,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L64A","EN":0},"TI":2105,"AM":0,"TU":"Line 44. C. Form (Enter number).","x":32.63,"y":30.728,"w":1.963,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L65T","EN":0},"TI":2106,"AM":0,"x":23.704,"y":31.626,"w":2.15,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L65W","EN":0},"TI":2107,"AM":0,"x":26.091,"y":31.622,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L65","EN":0},"TI":2108,"AM":0,"TU":"Line 72. Add lines 62, 63, 64a, and 65 through 71. These are your total payments. Dollars.","x":30.15,"y":31.5,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L66","EN":0},"TI":2109,"AM":0,"TU":"Refund. Line 73. If line 72 is more than line 61, subtract line 61 from line 72. This is the amount you overpaid. Dollars. ","x":30.15,"y":32.25,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L67A","EN":0},"TI":2111,"AM":0,"TU":"Line 74. a. Dollars.","x":30.15,"y":33,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ROUTNO","EN":0},"TI":2112,"AM":0,"x":11.716,"y":33.751,"w":8.039,"h":0.833,"MV":"maxl:9"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ACCNO","EN":0},"TI":2114,"AM":0,"TU":"Account","x":11.679,"y":34.491,"w":15.329,"h":0.833,"MV":"maxl:17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L68","EN":0},"TI":2116,"AM":0,"TU":"Line 75. Amount of line 73 you want applied to your 2014 estimated tax. Dollars.","x":22.95,"y":35.342,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L69","EN":0},"TI":2117,"AM":0,"TU":"Line 76. Amount you owe. Subtract line 72 from line 61. For details on how to pay, see instructions. Dollars.","x":30.15,"y":36,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L70","EN":0},"TI":2118,"AM":0,"TU":"Line 77. Estimated tax penalty (see instructions). Dollars.","x":22.95,"y":36.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESNAM","EN":0},"TI":2121,"AM":0,"x":9.012,"y":38.665,"w":7.893,"h":1.023},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DESPH","EN":0},"TI":2122,"AM":0,"x":19.208,"y":38.658,"w":6.124,"h":1.038},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"DESPIN","EN":0},"TI":2123,"AM":0,"x":30.998,"y":38.938,"w":4.05,"h":0.833,"MV":"99999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":2124,"AM":0,"TU":"Your occupation","x":20.242,"y":41.91,"w":6.964,"h":0.833},{"style":48,"T":{"Name":"phone","TypeInfo":{}},"id":{"Id":"DTPHO","EN":0},"TI":2125,"AM":0,"TU":"Daytime phone number","x":29.037,"y":41.867,"w":6.83,"h":0.896},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SOCC","EN":0},"TI":2126,"AM":0,"TU":"Spouse’s occupation","x":20.41,"y":43.35,"w":6.882,"h":0.905},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"IDTHEFT","EN":0},"TI":2127,"AM":0,"x":31.419,"y":43.436,"w":4.44,"h":0.833,"MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PNAM","EN":0},"TI":2128,"AM":0,"x":9.063,"y":45.007,"w":18.773,"h":1.452}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A1","EN":0},"TI":2039,"AM":0,"TU":"Line 39. a. Check if: You were born before January 2, 1949.","x":9.575,"y":3.813,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A2","EN":0},"TI":2040,"AM":0,"TU":"Line 39. a. Check if: You are Blind.","x":20.825,"y":3.813,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A3","EN":0},"TI":2042,"AM":0,"TU":"Line 39. a. Check if: Spouse was born before January 2, 1949.","x":9.575,"y":4.562,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35A4","EN":0},"TI":2043,"AM":0,"TU":"Line 39. a. Check if: Your spouse is Blind.","x":20.825,"y":4.562,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L35BB","EN":0},"TI":2044,"AM":0,"TU":"Line 39. b. If your spouse itemizes on a separate return or you were a dual-status alien, check here.","x":28.025,"y":5.312,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L40BA","EN":0},"TI":2050,"AM":0,"TU":"Line 44. Tax (see instructions). Check if any tax is from: a. Form(s) 8814.","x":15.825,"y":9.063,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L40BB","EN":0},"TI":2052,"AM":0,"TU":"Line 44. b. Form 4972.","x":20.471,"y":9.063,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX962","EN":0},"TI":2053,"AM":0,"TU":"Line 53. B. Form 8801.","x":24.098,"y":9,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L49BA","EN":0},"TI":2066,"AM":0,"TU":"Line 53. Other credits from: A. Form 3800.","x":12.6,"y":15.75,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L49BC","EN":0},"TI":2067,"AM":0,"TU":"Line 53. B. Form 8801.","x":15.3,"y":15.75,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L49BD","EN":0},"TI":2068,"AM":0,"TU":"Line 53. C. Form (number).","x":18.025,"y":15.75,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F4137BX","EN":0},"TI":2075,"AM":0,"x":20.78,"y":18.787,"w":0.568,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8919BX","EN":0},"TI":2076,"AM":0,"x":24.387,"y":18.765,"w":0.568,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX8959","EN":0},"TI":2082,"AM":0,"x":10.859,"y":21.732,"w":0.67,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX8960","EN":0},"TI":2083,"AM":0,"x":14.502,"y":21.732,"w":0.635,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXOTHTAX","EN":0},"TI":2084,"AM":0,"x":18.144,"y":21.767,"w":0.6,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L64BA","EN":0},"TI":2100,"AM":0,"x":10.929,"y":30.804,"w":0.6,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX885","EN":0},"TI":2101,"AM":0,"x":16.743,"y":30.84,"w":0.6,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L64FM","EN":0},"TI":2102,"AM":0,"x":19.3,"y":30.699,"w":0.775,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F8888","EN":0},"TI":2110,"AM":0,"TU":"Line 74. a. Amount of line 73 you want refunded to you. If Form 8888 is attached, check here.","x":27.575,"y":33,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCS","EN":0},"TI":2113,"AM":0,"TU":"Account type","x":25.768,"y":33.752,"w":0.49,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ACCC","EN":0},"TI":2115,"AM":0,"TU":"Account type","x":22.61,"y":33.833,"w":0.517,"h":0.833,"checked":false}],"id":{"Id":"ACCRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PPDY","EN":0},"TI":2119,"AM":0,"TU":"Preparer discuss with IRS","x":27.156,"y":37.508,"w":0.517,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PPDN","EN":0},"TI":2120,"AM":0,"TU":"Preparer discuss with IRS","x":33.881,"y":37.536,"w":0.517,"h":0.833,"checked":false}],"id":{"Id":"PPDRB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F1040V.json b/test/data/fd/form/F1040V.json index a54ad143..9012f989 100755 --- a/test/data/fd/form/F1040V.json +++ b/test/data/fd/form/F1040V.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.19,"y":5.251,"w":4.5,"l":92.813},{"oc":"#221f1f","x":6.619,"y":11.532,"w":0.75,"l":5.328},{"oc":"#221f1f","x":6.619,"y":9.282,"w":0.75,"l":5.328},{"oc":"#221f1f","x":54.409,"y":23.624,"w":3,"l":44.636},{"oc":"#221f1f","x":6.147,"y":32.251,"w":1.5,"l":9.986},{"oc":"#221f1f","x":16.047,"y":32.251,"w":1.5,"l":82.999},{"dsh":1,"oc":"#221f1f","x":6.147,"y":34.501,"w":1.5,"l":92.899},{"oc":"#221f1f","x":84.066,"y":36.728,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.125,"y":38.251,"w":1.5,"l":2.604},{"oc":"#221f1f","x":6.125,"y":46.501,"w":0.75,"l":2.604},{"oc":"#221f1f","x":8.622,"y":38.251,"w":1.5,"l":24.836},{"oc":"#221f1f","x":8.622,"y":40.501,"w":0.75,"l":24.836},{"oc":"#221f1f","x":33.372,"y":38.251,"w":1.5,"l":22.447},{"oc":"#221f1f","x":33.372,"y":40.501,"w":0.75,"l":22.447},{"oc":"#221f1f","x":55.561,"y":38.251,"w":2.25,"l":1.409},{"oc":"#221f1f","x":55.561,"y":40.501,"w":2.25,"l":1.409},{"oc":"#221f1f","x":56.884,"y":38.251,"w":2.25,"l":22.447},{"oc":"#221f1f","x":56.884,"y":40.501,"w":2.25,"l":22.447},{"oc":"#221f1f","x":79.159,"y":38.251,"w":2.25,"l":14.936},{"oc":"#221f1f","x":79.159,"y":40.501,"w":2.25,"l":14.936},{"oc":"#221f1f","x":93.973,"y":38.251,"w":2.25,"l":5.122},{"oc":"#221f1f","x":93.973,"y":40.501,"w":2.25,"l":5.122},{"oc":"#221f1f","x":8.622,"y":42.001,"w":0.75,"l":44.636},{"oc":"#221f1f","x":53.172,"y":42.001,"w":0.75,"l":45.874},{"oc":"#221f1f","x":8.622,"y":43.501,"w":0.75,"l":44.636},{"oc":"#221f1f","x":53.172,"y":43.501,"w":0.75,"l":45.874},{"oc":"#221f1f","x":8.622,"y":45.001,"w":0.75,"l":37.211},{"oc":"#221f1f","x":45.747,"y":45.001,"w":0.75,"l":7.511},{"oc":"#221f1f","x":53.172,"y":45.001,"w":0.75,"l":45.874},{"oc":"#221f1f","x":8.622,"y":46.501,"w":0.75,"l":44.636},{"oc":"#221f1f","x":53.172,"y":46.501,"w":0.75,"l":31.023},{"oc":"#221f1f","x":84.109,"y":46.501,"w":0.75,"l":14.936}],"VLines":[{"oc":"#221f1f","x":6.19,"y":9.439,"w":0.75,"l":1.938},{"oc":"#221f1f","x":12.377,"y":9.439,"w":0.75,"l":1.938},{"oc":"#221f1f","x":21.04,"y":35.61,"w":1.5,"l":2.656},{"oc":"#221f1f","x":21.04,"y":37.079,"w":1.5,"l":1.188},{"oc":"#221f1f","x":84.152,"y":35.61,"w":1.5,"l":1.133},{"oc":"#221f1f","x":84.152,"y":36.735,"w":1.5,"l":1.531},{"oc":"#221f1f","x":8.665,"y":38.22,"w":1.125,"l":8.297},{"oc":"#221f1f","x":6.19,"y":38.22,"w":1.125,"l":8.297},{"oc":"#221f1f","x":33.415,"y":38.22,"w":0.75,"l":2.297},{"oc":"#221f1f","x":55.69,"y":38.204,"w":2.25,"l":2.344},{"oc":"#221f1f","x":79.202,"y":38.204,"w":2.25,"l":2.344},{"oc":"#221f1f","x":94.052,"y":38.204,"w":0.75,"l":2.344},{"oc":"#221f1f","x":98.966,"y":38.204,"w":2.25,"l":2.344},{"oc":"#221f1f","x":94.016,"y":38.204,"w":0.75,"l":2.344},{"oc":"#221f1f","x":53.215,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":41.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.79,"y":43.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":43.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.215,"y":44.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":44.985,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":9.282,"w":6.188,"h":2.25,"clr":-1},{"x":6.576,"y":9.423,"w":5.414,"h":1.969,"clr":1}],"Texts":[{"oc":"#221f1f","x":6.283,"y":3.5359999999999996,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,43.0001,0,0]}]},{"oc":"#221f1f","x":14.973,"y":3.5359999999999996,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,44.0001,1,0]}]},{"oc":"#221f1f","x":26.46,"y":3.4290000000000003,"w":6.002,"clr":-1,"A":"left","R":[{"T":"Form%201040-V","S":-1,"TS":[0,36.0001,1,0]}]},{"oc":"#221f1f","x":69.052,"y":2.304,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,16.5,0,0]}]},{"oc":"#221f1f","x":69.052,"y":3.316,"w":11.894000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,17.5,1,0]}]},{"oc":"#221f1f","x":5.94,"y":5.536,"w":10.114000000000003,"clr":-1,"A":"left","R":[{"T":"What%20Is%20Form%201040-V%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.94,"y":6.603,"w":23.599,"clr":-1,"A":"left","R":[{"T":"It%20is%20a%20statement%20you%20send%20with%20your%20check%20or%20money%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":7.275,"w":25.357000000000006,"clr":-1,"A":"left","R":[{"T":"order%20for%20any%20balance%20due%20on%20the%20%E2%80%9CAmount%20you%20owe%E2%80%9D%20line%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":7.946999999999999,"w":25.122000000000007,"clr":-1,"A":"left","R":[{"T":"of%20your%202013%20Form%201040%2C%20Form%201040A%2C%20or%20Form%201040EZ.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.275,"y":9.88,"w":1.705,"clr":-1,"A":"left","R":[{"T":"TIP","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":13.674,"y":8.921,"w":26.189999999999998,"clr":-1,"A":"left","R":[{"T":"You%20can%20also%20pay%20your%20taxes%20online%20or%20by%20phone%20either%20by%20a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":13.674,"y":9.53,"w":26.392,"clr":-1,"A":"left","R":[{"T":"direct%20transfer%20from%20your%20bank%20account%20or%20by%20credit%20or%20debit%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":13.674,"y":10.14,"w":25.727000000000004,"clr":-1,"A":"left","R":[{"T":"card.%20Paying%20online%20or%20by%20phone%20is%20convenient%20and%20secure%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":13.674,"y":10.749,"w":25.226000000000006,"clr":-1,"A":"left","R":[{"T":"and%20helps%20make%20sure%20we%20get%20your%20payments%20on%20time.%20For%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":11.374,"w":10.742000000000003,"clr":-1,"A":"left","R":[{"T":"more%20information%2C%20go%20to%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":20.71,"y":11.374,"w":8.700000000000001,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fe-pay.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":12.527,"w":12.781000000000002,"clr":-1,"A":"left","R":[{"T":"How%20To%20Fill%20In%20Form%201040-V","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.94,"y":13.501,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Line%201.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":14.844,"w":2.9080000000000004,"clr":-1,"A":"left","R":[{"T":"return.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":15.704,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Line%202.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":16.376,"w":10.132,"clr":-1,"A":"left","R":[{"T":"second%20on%20your%20return.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":17.235,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Line%203.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":11.797,"y":17.235,"w":20.08,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20you%20are%20paying%20by%20check%20or","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":17.907,"w":5.946,"clr":-1,"A":"left","R":[{"T":"money%20order.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":18.766,"w":3.446,"clr":-1,"A":"left","R":[{"T":"Line%204.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":19.438,"w":15.557000000000007,"clr":-1,"A":"left","R":[{"T":"on%20your%20return.%20Please%20print%20clearly.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":5.536,"w":14.615000000000004,"clr":-1,"A":"left","R":[{"T":"How%20To%20Prepare%20Your%20Payment","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":54.202,"y":6.51,"w":21.246000000000002,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Make%20your%20check%20or%20money%20order%20payable%20to%20%E2%80%9C","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":85.563,"y":6.51,"w":3.389,"clr":-1,"A":"left","R":[{"T":"United%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":54.202,"y":7.182,"w":7.781000000000001,"clr":-1,"A":"left","R":[{"T":"States%20Treasury.","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":67.574,"y":7.182,"w":8.854999999999999,"clr":-1,"A":"left","R":[{"T":"%E2%80%9D%20Do%20not%20send%20cash.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":8.103,"w":23.618,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Make%20sure%20your%20name%20and%20address%20appear%20on%20your%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":8.775,"w":10.095000000000002,"clr":-1,"A":"left","R":[{"T":"check%20or%20money%20order.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":9.697,"w":24.193,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Enter%20your%20daytime%20phone%20number%20and%20your%20SSN%20on%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":10.369,"w":25.578000000000007,"clr":-1,"A":"left","R":[{"T":"your%20check%20or%20money%20order.%20If%20you%20are%20filing%20a%20joint%20return%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":11.041,"w":23.317000000000004,"clr":-1,"A":"left","R":[{"T":"enter%20the%20SSN%20shown%20first%20on%20your%20return.%20Also%20enter%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":11.713,"w":24.865000000000006,"clr":-1,"A":"left","R":[{"T":"%E2%80%9C2013%20Form%201040%2C%E2%80%9D%20%E2%80%9C2013%20Form%201040A%2C%E2%80%9D%20or%20%E2%80%9C2013%20Form%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":12.385,"w":15.687000000000003,"clr":-1,"A":"left","R":[{"T":"1040EZ%2C%E2%80%9D%20whichever%20is%20appropriate.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":13.572,"w":25.583000000000002,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20To%20help%20us%20process%20your%20payment%2C%20enter%20the%20amount%20on%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":14.244,"w":24.376000000000005,"clr":-1,"A":"left","R":[{"T":"the%20right%20side%20of%20your%20check%20like%20this%3A%20%24%20XXX.XX.%20Do%20not%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":14.916,"w":25.486,"clr":-1,"A":"left","R":[{"T":"use%20dashes%20or%20lines%20(for%20example%2C%20do%20not%20enter%20%E2%80%9C%24%20XXX%E2%80%94%E2%80%9D%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":15.588000000000001,"w":4.834,"clr":-1,"A":"left","R":[{"T":"or%20%20%E2%80%9C%24%20XXX%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.511,"y":15.431999999999999,"w":1.036,"clr":-1,"A":"left","R":[{"T":"xx","S":-1,"TS":[0,8.5,0,0]}]},{"oc":"#221f1f","x":63.49,"y":15.588000000000001,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.005,"y":15.588000000000001,"w":1.6677000000000002,"clr":-1,"A":"left","R":[{"T":"100","S":-1,"TS":[0,8.5,0,0]}]},{"oc":"#221f1f","x":65.582,"y":15.588000000000001,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%9D).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":16.753,"w":18.616000000000003,"clr":-1,"A":"left","R":[{"T":"How%20To%20Send%20In%20Your%202013%20Tax%20Return%2C%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":54.202,"y":17.565,"w":12.782,"clr":-1,"A":"left","R":[{"T":"Payment%2C%20and%20Form%201040-V","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":54.202,"y":18.539,"w":19.803,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Detach%20Form%201040-V%20along%20the%20dotted%20line.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":19.46,"w":26.116000000000007,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Do%20not%20staple%20or%20otherwise%20attach%20your%20payment%20or%20Form%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":20.132,"w":24.951999999999998,"clr":-1,"A":"left","R":[{"T":"1040-V%20to%20your%20return%20or%20to%20each%20other.%20Instead%2C%20just%20put%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":20.804,"w":12.300000000000002,"clr":-1,"A":"left","R":[{"T":"them%20loose%20in%20the%20envelope.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":21.726,"w":26.177000000000007,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Mail%20your%202013%20tax%20return%2C%20payment%2C%20and%20Form%201040-V%20to%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.202,"y":22.398,"w":22.895000000000007,"clr":-1,"A":"left","R":[{"T":"the%20address%20shown%20on%20the%20back%20that%20applies%20to%20you.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":32.126,"w":7.484,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2020975C","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.372,"y":32.072,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.514,"y":32.072,"w":3.224,"clr":-1,"A":"left","R":[{"T":"1040-V","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":32.072,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":33.65,"y":33.42,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":34.968,"y":33.483,"w":25.116000000000007,"clr":-1,"A":"left","R":[{"T":"Detach%20Here%20and%20Mail%20With%20Your%20Payment%20and%20Return","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":70.011,"y":33.42,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":6.833,"y":36.001,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0],"RA":90}]},{"oc":"#221f1f","x":7.177,"y":35.947,"w":3.224,"clr":-1,"A":"left","R":[{"T":"1040-V","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":36.873,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,8.940000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":37.305,"w":13.279000000000003,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20(99)","S":-1,"TS":[0,8.940000000000001,0,0]}]},{"oc":"#221f1f","x":42.889,"y":35.726,"w":8.447,"clr":-1,"A":"left","R":[{"T":"Payment%20Voucher","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":31.113,"y":37.014,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":32.144,"y":37.108,"w":30.117,"clr":-1,"A":"left","R":[{"T":"%20Do%20not%20staple%20or%20attach%20this%20voucher%20to%20your%20payment%20or%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.743,"y":35.802,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":37.144,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.829,"y":37.144,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":7.471,"y":43.094,"w":5.89,"clr":-1,"A":"left","R":[{"T":"Print%20or%20type","S":-1,"TS":[0,11,1,0],"RA":90}]},{"oc":"#221f1f","x":9.274,"y":38.126,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":10.277,"y":38.126,"w":15.279000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20(SSN)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":34.024,"y":38.126,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":35.027,"y":38.126,"w":16.094000000000005,"clr":-1,"A":"left","R":[{"T":"If%20a%20joint%20return%2C%20SSN%20shown%20second%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":35.055,"y":38.651,"w":6.279000000000002,"clr":-1,"A":"left","R":[{"T":"on%20your%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.008,"y":38.126,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":57.365,"y":38.126,"w":17.227000000000004,"clr":-1,"A":"left","R":[{"T":"Amount%20you%20are%20paying%20by%20check%20or%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":57.365,"y":38.563,"w":6.613000000000001,"clr":-1,"A":"left","R":[{"T":"money%20order.%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":65.319,"y":38.563,"w":9.132000000000001,"clr":-1,"A":"left","R":[{"T":"Make%20your%20check%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":57.365,"y":39.001,"w":10.91,"clr":-1,"A":"left","R":[{"T":"money%20order%20payable%20to%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.491,"y":39.001,"w":6.906000000000001,"clr":-1,"A":"left","R":[{"T":"'United%20States%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":57.365,"y":39.438,"w":4.462000000000001,"clr":-1,"A":"left","R":[{"T":"Treasury'","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":84.345,"y":38.095,"w":3.092,"clr":-1,"A":"left","R":[{"T":"Dollars","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.487,"y":38.095,"w":2.63,"clr":-1,"A":"left","R":[{"T":"Cents","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.274,"y":40.251,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":10.277,"y":40.251,"w":11.353999999999997,"clr":-1,"A":"left","R":[{"T":"Your%20first%20name%20and%20initial","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.652,"y":40.251,"w":4.669,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.34,"y":41.751,"w":20.282000000000007,"clr":-1,"A":"left","R":[{"T":"If%20a%20joint%20return%2C%20spouse%E2%80%99s%20first%20name%20and%20initial","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.652,"y":41.751,"w":4.669,"clr":-1,"A":"left","R":[{"T":"Last%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.34,"y":43.251,"w":15.560000000000002,"clr":-1,"A":"left","R":[{"T":"Home%20address%20(number%20and%20street)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":46.227,"y":43.251,"w":3.52,"clr":-1,"A":"left","R":[{"T":"Apt.%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.652,"y":43.251,"w":42.983999999999995,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office%2C%20state%2C%20and%20ZIP%20code%20(If%20a%20foreign%20address%2C%20also%20complete%20spaces%20below.)","S":-1,"TS":[0,9.09,0,0]}]},{"oc":"#221f1f","x":10.34,"y":44.751,"w":9.780000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20country%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.652,"y":44.751,"w":13.408000000000003,"clr":-1,"A":"left","R":[{"T":"Foreign%20province%2Fstate%2Fcounty","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.59,"y":44.751,"w":8.908,"clr":-1,"A":"left","R":[{"T":"Foreign%20postal%20code","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":46.376,"w":31.076,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.749,"y":46.376,"w":7.484,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2020975C","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":11.797,"y":13.501,"w":22.465,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20social%20security%20number%20(SSN).%20If%20youare%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":14.173,"w":23.613000000000007,"clr":-1,"A":"left","R":[{"T":"filing%20a%20joint%20return%2C%20enter%20the%20SSN%20shown%20first%20onyour%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":11.797,"y":15.704,"w":22.446,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20filing%20a%20joint%20return%2C%20enter%20the%20SSNshown%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":11.797,"y":18.766,"w":22.188000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20name(s)%20and%20address%20exactly%20asshown%20","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":692,"AM":1024,"x":8.662,"y":39.592,"w":24.75,"h":0.875,"TU":"Line 1. Your social security number (S S N)."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":693,"AM":1024,"x":33.413,"y":39.625,"w":22.275,"h":0.875,"TU":"Line 2. If a joint return, S S N shown second on your return."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT","EN":0},"TI":694,"AM":0,"x":79.2,"y":39.603,"w":14.85,"h":0.897,"TU":"Line 3. Amount you are paying by check or money order. Make your check or money order payable to \"United States Treasury.\" Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":695,"AM":1024,"x":8.662,"y":41.125,"w":81.19,"h":0.875,"TU":"Line 4. Your first name and initial."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNAME","EN":0},"TI":696,"AM":1024,"x":8.662,"y":42.625,"w":81.19,"h":0.875,"TU":"Line 4. If a joint return, spouse’s first name and initial."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":697,"AM":1024,"x":8.662,"y":44.125,"w":37.125,"h":0.875,"TU":"Line 4. Home address (number and street)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":698,"AM":1024,"x":45.788,"y":44.125,"w":7.425,"h":0.875,"TU":"Line 4. Apartment number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CSZ","EN":0},"TI":699,"AM":1024,"x":53.213,"y":44.125,"w":45.788,"h":0.875,"TU":"Line 4. City, town or post office, state, and ZIP code (If a foreign address, also complete spaces below.)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCOUNTRY","EN":0},"TI":700,"AM":1024,"x":8.662,"y":45.625,"w":44.55,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPROV","EN":0},"TI":701,"AM":1024,"x":53.213,"y":45.625,"w":30.938,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPOSTAL","EN":0},"TI":702,"AM":1024,"x":84.15,"y":45.625,"w":14.85,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCANLINE","EN":0},"TI":703,"AM":1024,"x":5.69,"y":47.615,"w":25.781,"h":1.292}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.7","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Payment Voucher","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Adobe Acrobat Pro 10.1.8","CreationDate":"D:20140102050054-08'00'","ModDate":"D:20140124112822-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.251,"y":5.251,"w":4.5,"l":33.75,"oc":"#221f1f"},{"x":2.407,"y":11.532,"w":0.75,"l":1.938,"oc":"#221f1f"},{"x":2.407,"y":9.282,"w":0.75,"l":1.938,"oc":"#221f1f"},{"x":19.785,"y":23.624,"w":3,"l":16.231,"oc":"#221f1f"},{"x":2.235,"y":32.251,"w":1.5,"l":3.631,"oc":"#221f1f"},{"x":5.835,"y":32.251,"w":1.5,"l":30.181,"oc":"#221f1f"},{"x":2.235,"y":34.501,"w":1.5,"l":33.781,"oc":"#221f1f","dsh":1},{"x":30.57,"y":36.728,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":2.227,"y":38.251,"w":1.5,"l":0.947,"oc":"#221f1f"},{"x":2.227,"y":46.501,"w":0.75,"l":0.947,"oc":"#221f1f"},{"x":3.135,"y":38.251,"w":1.5,"l":9.031,"oc":"#221f1f"},{"x":3.135,"y":40.501,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":12.135,"y":38.251,"w":1.5,"l":8.162,"oc":"#221f1f"},{"x":12.135,"y":40.501,"w":0.75,"l":8.162,"oc":"#221f1f"},{"x":20.204,"y":38.251,"w":2.25,"l":0.513,"oc":"#221f1f"},{"x":20.204,"y":40.501,"w":2.25,"l":0.513,"oc":"#221f1f"},{"x":20.685,"y":38.251,"w":2.25,"l":8.162,"oc":"#221f1f"},{"x":20.685,"y":40.501,"w":2.25,"l":8.162,"oc":"#221f1f"},{"x":28.785,"y":38.251,"w":2.25,"l":5.431,"oc":"#221f1f"},{"x":28.785,"y":40.501,"w":2.25,"l":5.431,"oc":"#221f1f"},{"x":34.172,"y":38.251,"w":2.25,"l":1.863,"oc":"#221f1f"},{"x":34.172,"y":40.501,"w":2.25,"l":1.863,"oc":"#221f1f"},{"x":3.135,"y":42.001,"w":0.75,"l":16.231,"oc":"#221f1f"},{"x":19.335,"y":42.001,"w":0.75,"l":16.681,"oc":"#221f1f"},{"x":3.135,"y":43.501,"w":0.75,"l":16.231,"oc":"#221f1f"},{"x":19.335,"y":43.501,"w":0.75,"l":16.681,"oc":"#221f1f"},{"x":3.135,"y":45.001,"w":0.75,"l":13.531,"oc":"#221f1f"},{"x":16.635,"y":45.001,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":19.335,"y":45.001,"w":0.75,"l":16.681,"oc":"#221f1f"},{"x":3.135,"y":46.501,"w":0.75,"l":16.231,"oc":"#221f1f"},{"x":19.335,"y":46.501,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":30.585,"y":46.501,"w":0.75,"l":5.431,"oc":"#221f1f"}],"VLines":[{"x":2.251,"y":9.439,"w":0.75,"l":1.938,"oc":"#221f1f"},{"x":4.501,"y":9.439,"w":0.75,"l":1.938,"oc":"#221f1f"},{"x":7.651,"y":35.61,"w":1.5,"l":2.656,"oc":"#221f1f"},{"x":7.651,"y":37.079,"w":1.5,"l":1.188,"oc":"#221f1f"},{"x":30.601,"y":35.61,"w":1.5,"l":1.133,"oc":"#221f1f"},{"x":30.601,"y":36.735,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":3.151,"y":38.22,"w":1.125,"l":8.297,"oc":"#221f1f"},{"x":2.251,"y":38.22,"w":1.125,"l":8.297,"oc":"#221f1f"},{"x":12.151,"y":38.22,"w":0.75,"l":2.297,"oc":"#221f1f"},{"x":20.251,"y":38.204,"w":2.25,"l":2.344,"oc":"#221f1f"},{"x":28.801,"y":38.204,"w":2.25,"l":2.344,"oc":"#221f1f"},{"x":34.201,"y":38.204,"w":0.75,"l":2.344,"oc":"#221f1f"},{"x":35.987,"y":38.204,"w":2.25,"l":2.344,"oc":"#221f1f"},{"x":34.188,"y":38.204,"w":0.75,"l":2.344,"oc":"#221f1f"},{"x":19.351,"y":40.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.351,"y":41.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.651,"y":43.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.351,"y":43.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.351,"y":44.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":44.985,"w":0.75,"l":1.531,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":9.282,"w":2.25,"h":2.25,"oc":"#221f1f"}],"Texts":[{"x":2.126,"y":3.5359999999999996,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,43.0001,0,0]}]},{"x":5.286,"y":3.5359999999999996,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,44.0001,1,0]}]},{"x":9.463,"y":3.4290000000000003,"w":6.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1040-V","S":-1,"TS":[0,36.0001,1,0]}]},{"x":24.951,"y":2.304,"w":12.54,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,16.5,0,0]}]},{"x":24.951,"y":3.316,"w":11.894,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Internal Revenue Service","S":-1,"TS":[0,17.5,1,0]}]},{"x":2.001,"y":5.536,"w":10.114,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"What Is Form 1040-V ","S":-1,"TS":[0,16,1,0]}]},{"x":2.001,"y":6.603,"w":23.599,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"It is a statement you send with your check or money ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":7.275,"w":25.357,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"order for any balance due on the “Amount you owe” line ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":7.946999999999999,"w":25.122,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of your 2013 Form 1040, Form 1040A, or Form 1040EZ. ","S":-1,"TS":[0,13,0,0]}]},{"x":2.486,"y":9.88,"w":1.705,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"TIP","S":-1,"TS":[0,15,0,0]}]},{"x":4.813,"y":8.921,"w":26.19,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You can also pay your taxes online or by phone either by a ","S":-1,"TS":[0,11,0,0]}]},{"x":4.813,"y":9.53,"w":26.392,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"direct transfer from your bank account or by credit or debit ","S":-1,"TS":[0,11,0,0]}]},{"x":4.813,"y":10.14,"w":25.727,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"card. Paying online or by phone is convenient and secure ","S":-1,"TS":[0,11,0,0]}]},{"x":4.813,"y":10.749,"w":25.226,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and helps make sure we get your payments on time. For ","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":11.374,"w":10.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"more information, go to ","S":-1,"TS":[0,11,0,0]}]},{"x":7.372,"y":11.374,"w":8.7,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"www.irs.gov/e-pay.","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":12.527,"w":12.781,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"How To Fill In Form 1040-V","S":-1,"TS":[0,16,1,0]}]},{"x":2.001,"y":13.501,"w":3.446,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Line 1. ","S":10,"TS":[0,14,1,0]}]},{"x":17.118,"y":13.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":15.358,"y":14.173,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":14.844,"w":2.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"return.","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":15.704,"w":3.446,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Line 2. ","S":10,"TS":[0,14,1,0]}]},{"x":16.146,"y":15.704,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":16.376,"w":10.132,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"second on your return.","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":17.235,"w":3.446,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Line 3. ","S":10,"TS":[0,14,1,0]}]},{"x":4.131,"y":17.235,"w":20.08,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount you are paying by check or","S":-1,"TS":[0,13,0,0]}]},{"x":16.681,"y":17.235,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":17.907,"w":5.946,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"money order.","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":18.766,"w":3.446,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Line 4. ","S":10,"TS":[0,14,1,0]}]},{"x":15.985,"y":18.766,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":19.438,"w":15.557,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on your return. Please print clearly.","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":5.536,"w":14.615,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"How To Prepare Your Payment","S":-1,"TS":[0,16,1,0]}]},{"x":19.551,"y":6.51,"w":21.246,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Make your check or money order payable to “","S":-1,"TS":[0,13,0,0]}]},{"x":30.955,"y":6.51,"w":3.389,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"United ","S":10,"TS":[0,14,1,0]}]},{"x":19.551,"y":7.182,"w":7.781,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"States Treasury.","S":10,"TS":[0,14,1,0]}]},{"x":24.413,"y":7.182,"w":8.855,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"” Do not send cash.","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":8.103,"w":23.618,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Make sure your name and address appear on your ","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":8.775,"w":10.095,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"check or money order.","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":9.697,"w":24.193,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Enter your daytime phone number and your SSN on ","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":10.369,"w":25.578,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"your check or money order. If you are filing a joint return, ","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":11.041,"w":23.317,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"enter the SSN shown first on your return. Also enter ","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":11.713,"w":24.865,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"“2013 Form 1040,” “2013 Form 1040A,” or “2013 Form ","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":12.385,"w":15.687,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1040EZ,” whichever is appropriate.","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":13.572,"w":25.583,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• To help us process your payment, enter the amount on ","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":14.244,"w":24.376,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the right side of your check like this: $ XXX.XX. Do not ","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":14.916,"w":25.486,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"use dashes or lines (for example, do not enter “$ XXX—” ","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":15.588000000000001,"w":4.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or “$ XXX ","S":-1,"TS":[0,13,0,0]}]},{"x":22.572,"y":15.431999999999999,"w":1.036,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"xx","S":-1,"TS":[0,8.5,0,0]}]},{"x":22.928,"y":15.588000000000001,"w":0.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/","S":3,"TS":[0,12,0,0]}]},{"x":23.115,"y":15.588000000000001,"w":1.668,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"100","S":-1,"TS":[0,8.5,0,0]}]},{"x":23.689,"y":15.588000000000001,"w":0.963,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"”).","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":16.753,"w":18.616,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"How To Send In Your 2013 Tax Return, ","S":-1,"TS":[0,16,1,0]}]},{"x":19.551,"y":17.565,"w":12.782,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Payment, and Form 1040-V","S":-1,"TS":[0,16,1,0]}]},{"x":19.551,"y":18.539,"w":19.803,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Detach Form 1040-V along the dotted line.","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":19.46,"w":26.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Do not staple or otherwise attach your payment or Form ","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":20.132,"w":24.952,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1040-V to your return or to each other. Instead, just put ","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":20.804,"w":12.3,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"them loose in the envelope.","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":21.726,"w":26.177,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Mail your 2013 tax return, payment, and Form 1040-V to ","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":22.398,"w":22.895,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the address shown on the back that applies to you.","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":32.126,"w":7.484,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 20975C","S":2,"TS":[0,10,0,0]}]},{"x":31.249,"y":32.072,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":32.391,"y":32.072,"w":3.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1040-V","S":10,"TS":[0,14,1,0]}]},{"x":34.43,"y":32.072,"w":3.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013)","S":2,"TS":[0,10,0,0]}]},{"x":12.077,"y":33.42,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d","S":51,"TS":[0,9,0,0]}]},{"x":12.452,"y":33.483,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":12.556,"y":33.483,"w":25.116,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Detach Here and Mail With Your Payment and Return","S":-1,"TS":[0,11,1,0]}]},{"x":25.195,"y":33.483,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":25.299,"y":33.42,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d","S":51,"TS":[0,9,0,0]}]},{"x":2.326,"y":36.001,"w":2.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0],"RA":90}]},{"x":2.451,"y":35.947,"w":3.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1040-V","S":-1,"TS":[0,28,1,0]}]},{"x":2.001,"y":36.873,"w":12.54,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,8.940000000000001,0,0]}]},{"x":2.001,"y":37.305,"w":13.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99)","S":-1,"TS":[0,8.940000000000001,0,0]}]},{"x":15.437,"y":35.726,"w":8.447,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Payment Voucher","S":11,"TS":[0,18,1,0]}]},{"x":11.155,"y":37.014,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":11.53,"y":37.108,"w":30.117,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Do not staple or attach this voucher to your payment or return.","S":-1,"TS":[0,11,1,0]}]},{"x":31.02,"y":35.802,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.426,"y":37.144,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.506,"y":37.144,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":2.558,"y":43.094,"w":5.89,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Print or type","S":-1,"TS":[0,11,1,0],"RA":90}]},{"x":3.213,"y":38.126,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1 ","S":8,"TS":[0,10,1,0]}]},{"x":3.578,"y":38.126,"w":15.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your social security number (SSN)","S":2,"TS":[0,10,0,0]}]},{"x":12.213,"y":38.126,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":8,"TS":[0,10,1,0]}]},{"x":12.578,"y":38.126,"w":16.094,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If a joint return, SSN shown second ","S":2,"TS":[0,10,0,0]}]},{"x":12.588,"y":38.651,"w":6.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on your return","S":2,"TS":[0,10,0,0]}]},{"x":20.208,"y":38.126,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3","S":8,"TS":[0,10,1,0]}]},{"x":20.701,"y":38.126,"w":17.227,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Amount you are paying by check or ","S":8,"TS":[0,10,1,0]}]},{"x":20.701,"y":38.563,"w":6.613,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"money order. ","S":8,"TS":[0,10,1,0]}]},{"x":23.593,"y":38.563,"w":9.132,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Make your check or ","S":2,"TS":[0,10,0,0]}]},{"x":20.701,"y":39.001,"w":10.91,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"money order payable to ","S":2,"TS":[0,10,0,0]}]},{"x":25.474,"y":39.001,"w":6.906,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"'United States ","S":8,"TS":[0,10,1,0]}]},{"x":20.701,"y":39.438,"w":4.462,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Treasury'","S":8,"TS":[0,10,1,0]}]},{"x":30.512,"y":38.095,"w":3.092,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Dollars","S":2,"TS":[0,10,0,0]}]},{"x":34.2,"y":38.095,"w":2.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cents","S":2,"TS":[0,10,0,0]}]},{"x":3.213,"y":40.251,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":8,"TS":[0,10,1,0]}]},{"x":3.578,"y":40.251,"w":11.354,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your first name and initial","S":2,"TS":[0,10,0,0]}]},{"x":19.351,"y":40.251,"w":4.669,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Last name","S":2,"TS":[0,10,0,0]}]},{"x":3.601,"y":41.751,"w":20.282,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If a joint return, spouse’s first name and initial","S":2,"TS":[0,10,0,0]}]},{"x":19.351,"y":41.751,"w":4.669,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Last name","S":2,"TS":[0,10,0,0]}]},{"x":3.601,"y":43.251,"w":15.56,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Home address (number and street)","S":2,"TS":[0,10,0,0]}]},{"x":16.651,"y":43.251,"w":3.52,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Apt. no.","S":2,"TS":[0,10,0,0]}]},{"x":19.351,"y":43.251,"w":42.984,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"City, town or post office, state, and ZIP code (If a foreign address, also complete spaces below.)","S":-1,"TS":[0,9.09,0,0]}]},{"x":3.601,"y":44.751,"w":9.78,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Foreign country name","S":2,"TS":[0,10,0,0]}]},{"x":19.351,"y":44.751,"w":13.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Foreign province/state/county","S":2,"TS":[0,10,0,0]}]},{"x":30.601,"y":44.751,"w":8.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Foreign postal code","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":46.376,"w":31.076,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see your tax return instructions.","S":2,"TS":[0,10,0,0]}]},{"x":32.477,"y":46.376,"w":7.484,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 20975C","S":2,"TS":[0,10,0,0]}]},{"x":4.131,"y":13.501,"w":22.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter your social security number (SSN). If youare ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":14.173,"w":23.613,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"filing a joint return, enter the SSN shown first onyour ","S":-1,"TS":[0,13,0,0]}]},{"x":4.131,"y":15.704,"w":22.446,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you are filing a joint return, enter the SSNshown ","S":-1,"TS":[0,13,0,0]}]},{"x":4.131,"y":18.766,"w":22.188,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter your name(s) and address exactly asshown ","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":0,"AM":1024,"TU":"Line 1. Your social security number (S S N).","x":3.15,"y":39.592,"w":9,"h":0.875},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSSN","EN":0},"TI":1,"AM":1024,"TU":"Line 2. If a joint return, S S N shown second on your return.","x":12.15,"y":39.625,"w":8.1,"h":0.875},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMT","EN":0},"TI":2,"AM":0,"TU":"Line 3. Amount you are paying by check or money order. Make your check or money order payable to \"United States Treasury.\" Dollars.","x":28.8,"y":39.603,"w":5.4,"h":0.897},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":3,"AM":1024,"TU":"Line 4. Your first name and initial.","x":3.15,"y":41.125,"w":29.524,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SPNAME","EN":0},"TI":4,"AM":1024,"TU":"Line 4. If a joint return, spouse’s first name and initial.","x":3.15,"y":42.625,"w":29.524,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":5,"AM":1024,"TU":"Line 4. Home address (number and street).","x":3.15,"y":44.125,"w":13.5,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":6,"AM":1024,"TU":"Line 4. Apartment number.","x":16.65,"y":44.125,"w":2.7,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CSZ","EN":0},"TI":7,"AM":1024,"TU":"Line 4. City, town or post office, state, and ZIP code (If a foreign address, also complete spaces below.)","x":19.35,"y":44.125,"w":16.65,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FCOUNTRY","EN":0},"TI":8,"AM":1024,"x":3.15,"y":45.625,"w":16.2,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPROV","EN":0},"TI":9,"AM":1024,"x":19.35,"y":45.625,"w":11.25,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FPOSTAL","EN":0},"TI":10,"AM":1024,"x":30.6,"y":45.625,"w":5.4,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"SCANLINE","EN":0},"TI":11,"AM":1024,"x":2.069,"y":47.615,"w":9.375,"h":1.292}],"Boxsets":[]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F1116.json b/test/data/fd/form/F1116.json index ef632542..5d9a4566 100755 --- a/test/data/fd/form/F1116.json +++ b/test/data/fd/form/F1116.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":5.25,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.995,"y":5.25,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.064,"y":3,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.064,"y":5.25,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":6.75,"w":0.75,"l":59.486},{"oc":"#221f1f","x":65.545,"y":6.75,"w":0.75,"l":33.498},{"oc":"#221f1f","x":6.145,"y":10.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":11.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":12.75,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":13.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":45.745,"y":14.25,"w":0.75,"l":37.211},{"oc":"#221f1f","x":45.745,"y":14.246,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.745,"y":14.996,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":14.246,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":14.996,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":14.246,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":15,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":15,"w":0.75,"l":16.173},{"oc":"#221f1f","x":45.745,"y":15.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":15.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":15.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":15,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":20.964,"y":17.997,"w":0.75,"l":23.598},{"dsh":1,"oc":"#221f1f","x":11.064,"y":18.746,"w":0.75,"l":33.498},{"oc":"#221f1f","x":45.745,"y":15.746,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":15.746,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":15.746,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":11.064,"y":19.496,"w":0.75,"l":33.498},{"oc":"#221f1f","x":45.745,"y":19.496,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":19.496,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":19.496,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":19.496,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.745,"y":19.488,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.745,"y":22.488,"w":1.125,"l":12.461},{"oc":"#221f1f","x":58.12,"y":19.488,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":22.488,"w":1.125,"l":12.461},{"oc":"#221f1f","x":70.495,"y":19.488,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":22.488,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.87,"y":19.488,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":22.488,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.114,"y":22.5,"w":1.125,"l":39.686},{"oc":"#221f1f","x":45.745,"y":22.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":58.12,"y":22.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":70.495,"y":22.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.87,"y":22.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":45.745,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.745,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.745,"y":27.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":27.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":27.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.745,"y":28.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":58.12,"y":28.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":70.495,"y":28.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":45.745,"y":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.745,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.745,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.745,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.745,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.745,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.745,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.745,"y":35.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":58.12,"y":35.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":70.495,"y":35.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":45.745,"y":36,"w":1.125,"l":12.461},{"oc":"#221f1f","x":58.12,"y":36,"w":1.125,"l":12.461},{"oc":"#221f1f","x":70.495,"y":36,"w":1.125,"l":12.461},{"oc":"#221f1f","x":86.582,"y":36.746,"w":0.75,"l":12.461},{"oc":"#181616","x":6.188,"y":36.75,"w":1.125,"l":92.836},{"oc":"#221f1f","x":6.145,"y":37.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":38.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":42.75,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":41.25,"w":0.75,"l":14.936},{"oc":"#221f1f","x":8.62,"y":42.75,"w":0.75,"l":14.936},{"oc":"#221f1f","x":23.47,"y":39.75,"w":0.75,"l":75.574},{"oc":"#221f1f","x":23.47,"y":40.5,"w":0.75,"l":31.023},{"oc":"#221f1f","x":23.47,"y":41.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":23.47,"y":42.75,"w":0.75,"l":7.511},{"oc":"#221f1f","x":30.895,"y":42.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":39.557,"y":42.75,"w":0.75,"l":7.511},{"oc":"#221f1f","x":46.982,"y":42.75,"w":0.75,"l":7.511},{"oc":"#221f1f","x":54.407,"y":40.5,"w":0.75,"l":44.636},{"oc":"#221f1f","x":54.407,"y":41.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":54.407,"y":42.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":63.07,"y":42.75,"w":0.75,"l":7.511},{"oc":"#221f1f","x":70.495,"y":42.75,"w":0.75,"l":7.511},{"oc":"#221f1f","x":77.92,"y":42.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":86.582,"y":42.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":42.724,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":42.724,"w":0.75,"l":14.936},{"oc":"#221f1f","x":23.47,"y":42.724,"w":0.75,"l":7.511},{"oc":"#221f1f","x":30.895,"y":42.724,"w":0.75,"l":8.748},{"oc":"#221f1f","x":39.557,"y":42.724,"w":0.75,"l":7.511},{"oc":"#221f1f","x":46.982,"y":42.724,"w":0.75,"l":7.511},{"oc":"#221f1f","x":54.407,"y":42.724,"w":0.75,"l":8.748},{"oc":"#221f1f","x":63.07,"y":42.724,"w":0.75,"l":7.511},{"oc":"#221f1f","x":70.495,"y":42.724,"w":0.75,"l":7.511},{"oc":"#221f1f","x":77.92,"y":42.724,"w":0.75,"l":8.748},{"oc":"#221f1f","x":86.582,"y":42.724,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":43.474,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":43.474,"w":0.75,"l":14.936},{"oc":"#221f1f","x":23.47,"y":43.474,"w":0.75,"l":7.511},{"oc":"#221f1f","x":30.895,"y":43.474,"w":0.75,"l":8.748},{"oc":"#221f1f","x":39.557,"y":43.474,"w":0.75,"l":7.511},{"oc":"#221f1f","x":46.982,"y":43.474,"w":0.75,"l":7.511},{"oc":"#221f1f","x":54.407,"y":43.474,"w":0.75,"l":8.748},{"oc":"#221f1f","x":63.07,"y":43.474,"w":0.75,"l":7.511},{"oc":"#221f1f","x":70.495,"y":43.474,"w":0.75,"l":7.511},{"oc":"#221f1f","x":77.92,"y":43.474,"w":0.75,"l":8.748},{"oc":"#221f1f","x":86.582,"y":43.474,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.144,"y":44.223,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":44.223,"w":0.75,"l":14.936},{"oc":"#221f1f","x":23.47,"y":44.223,"w":0.75,"l":7.511},{"oc":"#221f1f","x":30.895,"y":44.223,"w":0.75,"l":8.748},{"oc":"#221f1f","x":39.557,"y":44.223,"w":0.75,"l":7.511},{"oc":"#221f1f","x":46.982,"y":44.223,"w":0.75,"l":7.511},{"oc":"#221f1f","x":54.407,"y":44.223,"w":0.75,"l":8.748},{"oc":"#221f1f","x":63.07,"y":44.223,"w":0.75,"l":7.511},{"oc":"#221f1f","x":70.495,"y":44.223,"w":0.75,"l":7.511},{"oc":"#221f1f","x":77.92,"y":44.223,"w":0.75,"l":8.748},{"oc":"#221f1f","x":86.582,"y":44.223,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":44.973,"w":1.125,"l":2.561},{"oc":"#221f1f","x":8.62,"y":44.973,"w":1.125,"l":14.936},{"oc":"#221f1f","x":23.47,"y":44.973,"w":1.125,"l":7.511},{"oc":"#221f1f","x":30.895,"y":44.973,"w":1.125,"l":8.748},{"oc":"#221f1f","x":39.557,"y":44.973,"w":1.125,"l":7.511},{"oc":"#221f1f","x":46.982,"y":44.973,"w":1.125,"l":7.511},{"oc":"#221f1f","x":54.407,"y":44.973,"w":1.125,"l":8.748},{"oc":"#221f1f","x":63.07,"y":44.973,"w":1.125,"l":7.511},{"oc":"#221f1f","x":70.495,"y":44.973,"w":1.125,"l":7.511},{"oc":"#221f1f","x":77.92,"y":44.973,"w":1.125,"l":8.748},{"oc":"#221f1f","x":86.582,"y":44.973,"w":1.125,"l":12.461},{"oc":"#221f1f","x":6.145,"y":45.75,"w":0.75,"l":47.111},{"oc":"#221f1f","x":53.17,"y":45.75,"w":0.75,"l":34.736},{"oc":"#221f1f","x":87.82,"y":45.75,"w":0.75,"l":11.223}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":1.531},{"oc":"#221f1f","x":21.038,"y":3.734,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.15,"y":2.984,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.15,"y":3.734,"w":1.5,"l":1.547},{"oc":"#221f1f","x":65.588,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.788,"y":13.481,"w":0.75,"l":0.785},{"oc":"#221f1f","x":45.788,"y":14.231,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":14.231,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":14.231,"w":0.75,"l":0.785},{"oc":"#221f1f","x":82.913,"y":13.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.788,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.788,"y":15.731,"w":0.75,"l":3.035},{"oc":"#221f1f","x":58.163,"y":15.731,"w":0.75,"l":3.035},{"oc":"#221f1f","x":70.538,"y":15.731,"w":0.75,"l":3.035},{"oc":"#221f1f","x":86.625,"y":15.731,"w":0.75,"l":3.035},{"oc":"#221f1f","x":82.913,"y":15.731,"w":0.75,"l":3.035},{"oc":"#221f1f","x":86.625,"y":15.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":45.788,"y":18.731,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":18.731,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":18.731,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":18.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":18.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":18.731,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":18.731,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.788,"y":19.473,"w":0.75,"l":3.039},{"oc":"#221f1f","x":58.163,"y":19.473,"w":0.75,"l":3.039},{"oc":"#221f1f","x":70.538,"y":19.473,"w":0.75,"l":3.039},{"oc":"#221f1f","x":86.625,"y":19.473,"w":0.75,"l":3.039},{"oc":"#221f1f","x":82.913,"y":19.473,"w":0.75,"l":3.039},{"oc":"#221f1f","x":86.625,"y":19.473,"w":0.75,"l":3.031},{"oc":"#221f1f","x":58.163,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":45.788,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.538,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":58.163,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.538,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.788,"y":23.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.163,"y":23.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.538,"y":23.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":23.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.913,"y":23.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.625,"y":23.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.788,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.538,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.163,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.538,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":24.727,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.913,"y":24.727,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.625,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.788,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.163,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.538,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":26.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.913,"y":26.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.625,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.788,"y":27.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":58.163,"y":27.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.538,"y":27.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":27.723,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":27.723,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.788,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":28.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":28.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.788,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":29.227,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":29.227,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.788,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":29.977,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":29.977,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.788,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":30.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":30.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.788,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":31.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":31.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.788,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":32.227,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":32.227,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.788,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.163,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.538,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":32.977,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.913,"y":32.977,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.625,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":45.788,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":34.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":34.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.788,"y":35.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":58.163,"y":35.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.538,"y":35.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":35.227,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":35.227,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":45.788,"y":35.981,"w":0.75,"l":0.781},{"oc":"#221f1f","x":58.163,"y":35.981,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":35.981,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":35.977,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":35.977,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":35.981,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":35.981,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":36.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.662,"y":38.234,"w":0.75,"l":4.531},{"oc":"#221f1f","x":8.662,"y":38.234,"w":0.75,"l":1.519},{"oc":"#221f1f","x":8.662,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.513,"y":38.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.513,"y":39.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.513,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.513,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":30.938,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.6,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.025,"y":40.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":54.45,"y":39.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.113,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.538,"y":41.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":40.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.625,"y":40.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":8.662,"y":42.708,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.513,"y":42.708,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.938,"y":42.708,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.6,"y":42.708,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":42.708,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":42.708,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.112,"y":42.708,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.537,"y":42.708,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":42.708,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":42.708,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.662,"y":43.458,"w":0.75,"l":0.781},{"oc":"#221f1f","x":23.513,"y":43.458,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.938,"y":43.458,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.6,"y":43.458,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":43.458,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":43.458,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.112,"y":43.458,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.537,"y":43.458,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":43.458,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":43.458,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.662,"y":44.208,"w":0.75,"l":0.789},{"oc":"#221f1f","x":23.513,"y":44.208,"w":0.75,"l":0.789},{"oc":"#221f1f","x":30.938,"y":44.208,"w":0.75,"l":0.789},{"oc":"#221f1f","x":39.6,"y":44.208,"w":0.75,"l":0.789},{"oc":"#221f1f","x":47.025,"y":44.208,"w":0.75,"l":0.789},{"oc":"#221f1f","x":54.45,"y":44.208,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.113,"y":44.208,"w":0.75,"l":0.789},{"oc":"#221f1f","x":70.538,"y":44.208,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":44.208,"w":0.75,"l":0.789},{"oc":"#221f1f","x":86.625,"y":44.208,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":44.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.625,"y":44.984,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":12.75,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":15,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":45.788,"y":15.746,"w":12.375,"h":3.004,"clr":-1},{"oc":"#bebfc1","x":58.163,"y":15.746,"w":12.375,"h":3.004,"clr":-1},{"oc":"#bebfc1","x":70.538,"y":15.746,"w":12.375,"h":3.004,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":15.746,"w":3.713,"h":3.004,"clr":-1},{"oc":"#bebfc1","x":45.788,"y":19.488,"w":12.375,"h":3,"clr":-1},{"oc":"#bebfc1","x":58.163,"y":19.488,"w":12.375,"h":3,"clr":-1},{"oc":"#bebfc1","x":70.538,"y":19.488,"w":12.375,"h":3,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":19.488,"w":3.713,"h":3,"clr":-1},{"oc":"#bebfc1","x":45.788,"y":22.5,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":58.163,"y":22.5,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":70.538,"y":22.5,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":22.5,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":23.25,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":45.788,"y":24.75,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":58.163,"y":24.75,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":70.538,"y":24.75,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":24.75,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":26.25,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":27.746,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":28.5,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":29.25,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":30,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":30.75,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":31.5,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":45.788,"y":32.25,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":58.163,"y":32.25,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":70.538,"y":32.25,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":32.25,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":33,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":34.5,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.913,"y":35.25,"w":3.713,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":37.5,"w":6.188,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.571,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.415,"y":2.571,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"1116%20","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.938,"y":3.8369999999999997,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.337,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,8.95,0,0]}]},{"oc":"#221f1f","x":18.418,"y":4.337,"w":1.63,"clr":-1,"A":"left","R":[{"T":"(99)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":42.406,"y":2.1,"w":9.113000000000001,"clr":-1,"A":"left","R":[{"T":"Foreign%20Tax%20Credit%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":42.583,"y":2.961,"w":13.225000000000001,"clr":-1,"A":"left","R":[{"T":"(Individual%2C%20Estate%2C%20or%20Trust)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":37.067,"y":3.46,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":38.098,"y":3.5540000000000003,"w":21.897000000000006,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20Form%201040%2C%201040NR%2C%201041%2C%20or%20990-T.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.271,"y":4.111,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":81.035,"y":4.205,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.741,"y":1.972,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0121%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.857,"y":3.33,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.827,"y":3.33,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":86.306,"y":3.8129999999999997,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.306,"y":4.259,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.284,"y":4.259,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":5,"w":2.927,"clr":-1,"A":"left","R":[{"T":"Name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":7.161,"w":38.48599999999998,"clr":-1,"A":"left","R":[{"T":"Form%201116.%20Report%20all%20amounts%20in%20U.S.%20dollars%20except%20where%20specified%20in%20Part%20II%20below.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.202,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.341,"y":8.207,"w":11.464,"clr":-1,"A":"left","R":[{"T":"Passive%20category%20income%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.952,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.341,"y":8.957,"w":11.501000000000003,"clr":-1,"A":"left","R":[{"T":"General%20category%20income%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.163,"y":8.202,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.566,"y":8.207,"w":9.910000000000004,"clr":-1,"A":"left","R":[{"T":"Section%20901(j)%20income%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.163,"y":8.952,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.566,"y":8.957,"w":16.410000000000004,"clr":-1,"A":"left","R":[{"T":"Certain%20income%20re-sourced%20by%20treaty%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":64.1,"y":8.202,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":67.503,"y":8.207,"w":10.913000000000002,"clr":-1,"A":"left","R":[{"T":"Lump-sum%20distributions%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":10.339,"w":0.889,"clr":-1,"A":"left","R":[{"T":"f%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.313,"y":10.339,"w":13.447000000000005,"clr":-1,"A":"left","R":[{"T":"Resident%20of%20(name%20of%20country)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.113,"y":10.245,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.038,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":3,"TS":[0,12,0,0]}]},{"x":6.836,"y":12.571,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.156,"y":12.571,"w":45.78899999999995,"clr":-1,"A":"left","R":[{"T":"Taxable%20Income%20or%20Loss%20From%20Sources%20Outside%20the%20United%20States%20(for%20Category%20Checked%20Above)%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#181616","x":52.449,"y":13.234,"w":17.393000000000004,"clr":-1,"A":"left","R":[{"T":"Foreign%20Country%20or%20U.S.%20Possession%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#181616","x":51.254,"y":13.978,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#181616","x":63.616,"y":13.978,"w":0.982,"clr":-1,"A":"left","R":[{"T":"B%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#181616","x":75.966,"y":13.984,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#181616","x":89.052,"y":13.307,"w":2.667,"clr":-1,"A":"left","R":[{"T":"Total%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#181616","x":83.537,"y":13.907,"w":10.706000000000005,"clr":-1,"A":"left","R":[{"T":"(Add%20cols.%20A%2C%20B%2C%20and%20C.)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":14.098,"w":0.889,"clr":-1,"A":"left","R":[{"T":"g%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.858,"y":14.189,"w":21.615000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20name%20of%20the%20foreign%20country%20or%20U.S.%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.852,"y":14.848,"w":5.502000000000001,"clr":-1,"A":"left","R":[{"T":"possession","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":18.307,"y":14.848,"w":18.355999999999995,"clr":-1,"A":"left","R":[{"T":"%20...........%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":43.116,"y":14.754,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":7.69,"y":15.594000000000001,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1a","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.857,"y":15.719000000000001,"w":22.150000000000006,"clr":-1,"A":"left","R":[{"T":"Gross%20income%20from%20sources%20within%20country%20shown","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.856,"y":16.407,"w":19.264000000000003,"clr":-1,"A":"left","R":[{"T":"above%20and%20of%20the%20type%20checked%20above%20(see%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.856,"y":17.094,"w":6.001000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%3A%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":83.694,"y":18.598,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"1a","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.413,"y":19.274,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.857,"y":19.349,"w":20.374000000000002,"clr":-1,"A":"left","R":[{"T":"Check%20if%20line%201a%20is%20compensation%20for%20personal%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.852,"y":19.911,"w":16.021000000000004,"clr":-1,"A":"left","R":[{"T":"services%20as%20an%20employee%2C%20your%20total%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.854,"y":20.474,"w":20.67300000000001,"clr":-1,"A":"left","R":[{"T":"compensation%20from%20all%20sources%20is%20%24250%2C000%20or%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.851,"y":21.036,"w":19.246000000000002,"clr":-1,"A":"left","R":[{"T":"more%2C%20and%20you%20used%20an%20alternative%20basis%20to%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.851,"y":21.621,"w":17.225000000000005,"clr":-1,"A":"left","R":[{"T":"determine%20its%20source%20(see%20instructions)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":36.869,"y":21.621,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":38.932,"y":21.621,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":40.628,"y":21.527,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":7.6,"y":23.161,"w":1.112,"clr":-1,"A":"left","R":[{"T":"2%20%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.852,"y":23.848,"w":9.707,"clr":-1,"A":"left","R":[{"T":"1a%20(attach%20statement)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":26.557,"y":23.848,"w":12.707999999999998,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.6,"y":24.661,"w":1.112,"clr":-1,"A":"left","R":[{"T":"3%20%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.858,"y":25.348,"w":3.89,"clr":-1,"A":"left","R":[{"T":"related%3A%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":8.413,"y":26.129,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.857,"y":26.161,"w":22.708000000000002,"clr":-1,"A":"left","R":[{"T":"Certain%20itemized%20deductions%20or%20standard%20deduction","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.857,"y":26.848,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":22.438,"y":26.848,"w":15.531999999999996,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.413,"y":27.598,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.857,"y":27.598,"w":16.376,"clr":-1,"A":"left","R":[{"T":"Other%20deductions%20(attach%20statement)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":34.812,"y":27.598,"w":7.06,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.413,"y":28.348,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.857,"y":28.348,"w":9.189000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%203a%20and%203b%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":24.499,"y":28.348,"w":14.119999999999997,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.413,"y":29.098,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.857,"y":29.098,"w":21.020000000000007,"clr":-1,"A":"left","R":[{"T":"Gross%20foreign%20source%20income%20(see%20instructions)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":43.063,"y":29.098,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.413,"y":29.848,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.857,"y":29.848,"w":21.74300000000001,"clr":-1,"A":"left","R":[{"T":"Gross%20income%20from%20all%20sources%20(see%20instructions)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":43.063,"y":29.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.413,"y":30.598,"w":0.611,"clr":-1,"A":"left","R":[{"T":"f%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.857,"y":30.598,"w":18.68900000000001,"clr":-1,"A":"left","R":[{"T":"Divide%20line%203d%20by%20line%203e%20(see%20instructions)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":38.938,"y":30.598,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":41.001,"y":30.598,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":43.064,"y":30.598,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.413,"y":31.348,"w":0.889,"clr":-1,"A":"left","R":[{"T":"g%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.857,"y":31.348,"w":11.281000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%203c%20by%20line%203f%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":28.624,"y":31.348,"w":11.296,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.6,"y":32.098,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.857,"y":32.098,"w":23.483000000000008,"clr":-1,"A":"left","R":[{"T":"Pro%20rata%20share%20of%20interest%20expense%20(see%20instructions)%3A%20","S":-1,"TS":[0,11.245,0,0]}]},{"oc":"#221f1f","x":8.413,"y":32.879,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.857,"y":32.911,"w":21.503999999999998,"clr":-1,"A":"left","R":[{"T":"Home%20mortgage%20interest%20(use%20the%20Worksheet%20for%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.855,"y":33.598,"w":19.652000000000005,"clr":-1,"A":"left","R":[{"T":"Home%20Mortgage%20Interest%20in%20the%20instructions)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":40.998,"y":33.598,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":43.061,"y":33.598,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":8.413,"y":34.348,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.857,"y":34.348,"w":10.428000000000004,"clr":-1,"A":"left","R":[{"T":"Other%20interest%20expense%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":26.562,"y":34.348,"w":12.707999999999998,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.6,"y":35.098,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.857,"y":35.098,"w":12.964000000000006,"clr":-1,"A":"left","R":[{"T":"Losses%20from%20foreign%20sources%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":30.687,"y":35.098,"w":9.884,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.6,"y":35.782,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":10.857,"y":35.782,"w":13.377,"clr":-1,"A":"left","R":[{"T":"Add%20lines%202%2C%203g%2C%204a%2C%204b%2C%20and%205%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":30.687,"y":35.782,"w":9.884,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":84.113,"y":35.848,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":7.6,"y":36.598,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":36.535,"w":32.065,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%206%20from%20line%201a.%20Enter%20the%20result%20here%20and%20on%20line%2015%2C%20page%202%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":59.563,"y":36.535,"w":15.531999999999996,"clr":-1,"A":"left","R":[{"T":"..........%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":80.246,"y":36.442,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#181616","x":84.113,"y":36.598,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11.5,0,0]}]},{"x":6.582,"y":37.321,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.156,"y":37.321,"w":15.283000000000005,"clr":-1,"A":"left","R":[{"T":"Foreign%20Taxes%20Paid%20or%20Accrued%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":39.35,"y":37.321,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.557,"y":40.937,"w":4.111000000000001,"clr":-1,"A":"left","R":[{"T":"Country%20","S":10,"TS":[0,14,1,0],"RA":90}]},{"oc":"#221f1f","x":11.006,"y":37.944,"w":8.281,"clr":-1,"A":"left","R":[{"T":"Credit%20is%20claimed%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":13.32,"y":38.381,"w":4.724,"clr":-1,"A":"left","R":[{"T":"for%20taxes%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":9.7,"y":38.819,"w":10.482000000000001,"clr":-1,"A":"left","R":[{"T":"(you%20must%20check%20one)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":11.413,"y":39.472,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(h)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":15.838000000000001,"y":39.469,"w":2.278,"clr":-1,"A":"left","R":[{"T":"Paid%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":11.613,"y":40.222,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(i)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":15.838000000000001,"y":40.218,"w":4.019,"clr":-1,"A":"left","R":[{"T":"Accrued%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":12.551,"y":41.085,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(j)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":13.932,"y":41.085,"w":4.593999999999999,"clr":-1,"A":"left","R":[{"T":"Date%20paid%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":12.942,"y":41.61,"w":5.093,"clr":-1,"A":"left","R":[{"T":"or%20accrued%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.429,"y":38.343,"w":14.536,"clr":-1,"A":"left","R":[{"T":"Foreign%20taxes%20paid%20or%20accrued%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":33.707,"y":39.47,"w":8.63,"clr":-1,"A":"left","R":[{"T":"In%20foreign%20currency%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.299,"y":40.219,"w":13.112000000000005,"clr":-1,"A":"left","R":[{"T":"Taxes%20withheld%20at%20source%20on%3A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":23.696,"y":41.34,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(k)%20","S":-1,"TS":[0,9.5,1,0]}]},{"oc":"#221f1f","x":25.309,"y":41.34,"w":4.705,"clr":-1,"A":"left","R":[{"T":"Dividends%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":32.78,"y":41.085,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(l)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":34.138,"y":41.085,"w":2.593,"clr":-1,"A":"left","R":[{"T":"Rents","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":31.587,"y":41.61,"w":5.982000000000001,"clr":-1,"A":"left","R":[{"T":"and%20royalties%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":39.978,"y":41.347,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(m)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":42.115,"y":41.347,"w":3.6300000000000003,"clr":-1,"A":"left","R":[{"T":"Interest%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":48.118,"y":40.234,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(n)%20%20","S":-1,"TS":[0,9.5,1,0]}]},{"oc":"#221f1f","x":50.063,"y":40.234,"w":2.7790000000000004,"clr":-1,"A":"left","R":[{"T":"Other%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":47.26,"y":40.722,"w":6.055,"clr":-1,"A":"left","R":[{"T":"foreign%20taxes%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":48.739,"y":41.209,"w":3.408,"clr":-1,"A":"left","R":[{"T":"paid%20or%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":48.46,"y":41.697,"w":3.908,"clr":-1,"A":"left","R":[{"T":"accrued%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":72.698,"y":39.472,"w":6.556000000000001,"clr":-1,"A":"left","R":[{"T":"In%20U.S.%20dollars%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.236,"y":40.219,"w":13.112000000000005,"clr":-1,"A":"left","R":[{"T":"Taxes%20withheld%20at%20source%20on%3A%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.977,"y":41.347,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(o)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":56.759,"y":41.347,"w":4.705,"clr":-1,"A":"left","R":[{"T":"Dividends%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.3,"y":41.097,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(p)%20","S":-1,"TS":[0,9.5,1,0]}]},{"oc":"#221f1f","x":65.954,"y":41.097,"w":2.593,"clr":-1,"A":"left","R":[{"T":"Rents","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":63.389,"y":41.584,"w":5.982000000000001,"clr":-1,"A":"left","R":[{"T":"and%20royalties%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":71.3,"y":41.34,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(q)%20","S":-1,"TS":[0,9.5,1,0]}]},{"oc":"#221f1f","x":72.955,"y":41.34,"w":3.6300000000000003,"clr":-1,"A":"left","R":[{"T":"Interest%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":79.782,"y":40.185,"w":1.333,"clr":-1,"A":"left","R":[{"T":"(r)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":81.297,"y":40.185,"w":2.7790000000000004,"clr":-1,"A":"left","R":[{"T":"Other%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.569,"y":40.71,"w":6.055,"clr":-1,"A":"left","R":[{"T":"foreign%20taxes%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.161,"y":41.235,"w":3.408,"clr":-1,"A":"left","R":[{"T":"paid%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.86,"y":41.76,"w":3.908,"clr":-1,"A":"left","R":[{"T":"accrued%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.352,"y":40.185,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(s)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":90.045,"y":40.185,"w":5.5920000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20foreign","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.065,"y":40.71,"w":6.093,"clr":-1,"A":"left","R":[{"T":"taxes%20paid%20or%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.582,"y":41.235,"w":8.557,"clr":-1,"A":"left","R":[{"T":"accrued%20(add%20cols.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.819,"y":41.76,"w":6.500000000000002,"clr":-1,"A":"left","R":[{"T":"(o)%20through%20(r))%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.675,"y":42.572,"w":1,"clr":-1,"A":"left","R":[{"T":"A%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.661,"y":43.321,"w":1,"clr":-1,"A":"left","R":[{"T":"B%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":6.634,"y":44.071,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":7.6,"y":44.785,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":44.848,"w":35.95199999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%20A%20through%20C%2C%20column%20(s).%20Enter%20the%20total%20here%20and%20on%20line%209%2C%20page%202","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":61.626,"y":44.848,"w":14.119999999999997,"clr":-1,"A":"left","R":[{"T":"%20........%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":80.246,"y":44.754,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":84.113,"y":44.848,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,11.5,1,0]}]},{"oc":"#221f1f","x":5.938,"y":45.607,"w":26.173000000000002,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":65.786,"y":45.625,"w":7.7620000000000005,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011440U%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.152,"y":45.571,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.294,"y":45.571,"w":2.224,"clr":-1,"A":"left","R":[{"T":"1116","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.117,"y":45.571,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":6.561,"w":63.91899999999991,"clr":-1,"A":"left","R":[{"T":"Use%20a%20separate%20Form%201116%20for%20each%20category%20of%20income%20listed%20below.%20See%20Categories%20of%20Income%20in%20the%20instructions.%20Check%20%20only%20one%20box%20on%20each%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.302,"y":4.205,"w":41.12299999999997,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%201116%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform1116","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.907,"y":22.357,"w":22.676000000000005,"clr":-1,"A":"left","R":[{"T":"Deductions%20and%20losses%20Caution%3A%20(See%20instructions)%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.857,"y":23.161,"w":21.455000000000013,"clr":-1,"A":"left","R":[{"T":"Expenses%20definitely%20related%20to%20the%20income%20on%20line","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.857,"y":24.661,"w":21.28900000000001,"clr":-1,"A":"left","R":[{"T":"Pro%20rata%20share%20of%20other%20deductions%20not%20definitely%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":66.025,"y":4.995,"w":25.846999999999994,"clr":-1,"A":"left","R":[{"T":"Identifying%20number%20%20as%20shown%20on%20page%201%20of%20your%20tax%20return%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.321,"y":11.038,"w":56.377999999999965,"clr":-1,"A":"left","R":[{"T":"If%20you%20paid%20taxes%20to%20only%20one%20foreign%20country%20or%20U.S.%20possession%2C%20use%20column%20A%20in%20Part%20I%20and%20line%20A%20in%20Part%20II.%20If%20you%20paid%20taxes%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.713,"w":50.63499999999995,"clr":-1,"A":"left","R":[{"T":"more%20than%20oneforeign%20country%20or%20U.S.%20possession%2C%20use%20a%20separate%20column%20and%20line%20for%20each%20country%20or%20possession.%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COPY","EN":0},"TI":704,"AM":0,"x":68.576,"y":3.831,"w":15.277,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":705,"AM":1024,"x":6.188,"y":5.875,"w":58.695,"h":0.875,"TU":"Name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":706,"AM":1024,"x":66.998,"y":5.87,"w":32.002,"h":0.88,"TU":"Identifying number as shown on page 1 of your tax return."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RESI","EN":0},"TI":712,"AM":0,"x":30.069,"y":10.5,"w":68.931,"h":0.833,"TU":"Line f. Resident of (name of country)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A234_LJ_1_","EN":0},"TI":713,"AM":0,"x":45.788,"y":15,"w":12.375,"h":0.833,"TU":"Line gA. Enter name of the foreign country or U.S. possession."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A234_LJ_2_","EN":0},"TI":714,"AM":0,"x":58.165,"y":15.006,"w":12.375,"h":0.833,"TU":"Line gB. Enter name of the foreign country or U.S. possession."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A234_LJ_3_","EN":0},"TI":715,"AM":0,"x":70.573,"y":14.972,"w":12.375,"h":0.833,"TU":"Line gC. Enter name of the foreign country or U.S. possession."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1T","EN":0},"TI":716,"AM":0,"x":21.007,"y":17.246,"w":23.512,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A247_L1TT_1_","EN":0},"TI":717,"AM":0,"x":11.107,"y":17.996,"w":33.413,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A247_L1TT_2_","EN":0},"TI":718,"AM":0,"x":10.995,"y":18.777,"w":33.413,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A235_L1_1_","EN":0},"TI":719,"AM":0,"x":45.788,"y":18.746,"w":12.375,"h":0.833,"TU":"Line g1aA. Gross income from sources within country shown above and of the type checked above (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A235_L1_2_","EN":0},"TI":720,"AM":0,"x":58.165,"y":18.753,"w":12.375,"h":0.833,"TU":"Line g1aB. Gross income from sources within country shown above and of the type checked above (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A235_L1_3_","EN":0},"TI":721,"AM":0,"x":70.573,"y":18.765,"w":12.375,"h":0.833,"TU":"Line g1aC. Gross income from sources within country shown above and of the type checked above (see instructions). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1T3","EN":0},"TI":722,"AM":1024,"x":86.625,"y":18.746,"w":12.375,"h":0.833,"TU":"Line 1a Total. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A236_L2_1_","EN":0},"TI":724,"AM":0,"x":45.788,"y":24,"w":12.375,"h":0.833,"TU":"Line 2A. Expenses definitely related to the income on line 1a (attach statement). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A236_L2_2_","EN":0},"TI":725,"AM":0,"x":58.165,"y":24.006,"w":12.375,"h":0.833,"TU":"Line 2B. Expenses definitely related to the income on line 1a (attach statement). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A236_L2_3_","EN":0},"TI":726,"AM":0,"x":70.573,"y":24.018,"w":12.375,"h":0.833,"TU":"Line 2C. Expenses definitely related to the income on line 1a (attach statement)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A237_L3A_1_","EN":0},"TI":727,"AM":0,"x":45.916,"y":27.039,"w":12.119,"h":0.833,"TU":"Line 3aA. Certain itemized deductions or standard deduction (see instructions). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A237_L3A_2_","EN":0},"TI":728,"AM":0,"x":58.422,"y":27.069,"w":12.119,"h":0.833,"TU":"Line 3aB. Certain itemized deductions or standard deduction (see instructions). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A237_L3A_3_","EN":0},"TI":729,"AM":0,"x":70.765,"y":27.058,"w":12.183,"h":0.833,"TU":"Line 3aC. Certain itemized deductions or standard deduction (see instructions). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A238_L3B_1_","EN":0},"TI":730,"AM":0,"x":45.788,"y":27.812,"w":12.183,"h":0.833,"TU":"Line 3bA. Other deductions (attach statement). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A238_L3B_2_","EN":0},"TI":731,"AM":0,"x":58.358,"y":27.819,"w":12.183,"h":0.833,"TU":"Line 3bB. Other deductions (attach statement). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A238_L3B_3_","EN":0},"TI":732,"AM":0,"x":70.701,"y":27.784,"w":12.247,"h":0.833,"TU":"Line 3bC. Other deductions (attach statement)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A239_L3C_1_","EN":0},"TI":733,"AM":1024,"x":45.788,"y":28.563,"w":12.375,"h":0.833,"TU":"Line 3cA. Add lines 3a and 3b. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A239_L3C_2_","EN":0},"TI":734,"AM":1024,"x":58.422,"y":28.569,"w":12.119,"h":0.833,"TU":"Line 3cB. Add lines 3a and 3b. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A239_L3C_3_","EN":0},"TI":735,"AM":1024,"x":70.765,"y":28.534,"w":12.183,"h":0.833,"TU":"Line 3cC. Add lines 3a and 3b."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A240_L3D_1_","EN":0},"TI":736,"AM":0,"x":45.706,"y":29.252,"w":12.375,"h":0.833,"TU":"Line 3dA. Gross foreign source income (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A240_L3D_2_","EN":0},"TI":737,"AM":0,"x":58.34,"y":29.258,"w":12.183,"h":0.833,"TU":"Line 3dB. Gross foreign source income (see instructions). Dollars. Gross foreign source income (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A240_L3D_3_","EN":0},"TI":738,"AM":0,"x":70.812,"y":29.224,"w":12.119,"h":0.833,"TU":"Line 3dC. Gross foreign source income (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3E_1_","EN":0},"TI":739,"AM":0,"x":45.77,"y":30.002,"w":12.311,"h":0.833,"TU":"Line 3eA. Gross income from all sources (see instructions). "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3E_2_","EN":0},"TI":740,"AM":0,"x":58.405,"y":30.008,"w":12.119,"h":0.833,"TU":"Line 3eB. Gross income from all sources (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3E_3_","EN":0},"TI":741,"AM":0,"x":70.748,"y":29.974,"w":12.183,"h":0.833,"TU":"Line 3eC. Gross income from all sources (see instructions). "},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"A241_L3F_1_","EN":0},"TI":742,"AM":1024,"x":45.834,"y":30.775,"w":12.247,"h":0.833,"TU":"Line 3fA. Divide line 3d by 3f. "},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"A241_L3F_2_","EN":0},"TI":743,"AM":1024,"x":58.276,"y":30.805,"w":12.247,"h":0.833,"TU":"Line 3fB. Divide line 3d by 3f. "},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"A241_L3F_3_","EN":0},"TI":744,"AM":1024,"x":70.812,"y":30.724,"w":12.119,"h":0.833,"TU":"Line 3fC. Divide line 3d by 3f. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A242_L3G_1_","EN":0},"TI":745,"AM":1024,"x":45.834,"y":31.464,"w":12.375,"h":0.833,"TU":"Line 3gA. Multiply line 3c by 3f."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A242_L3G_2_","EN":0},"TI":746,"AM":1024,"x":58.34,"y":31.517,"w":12.054,"h":0.833,"TU":"Line 3gB. Multiply line 3c by 3f."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A242_L3G_3_","EN":0},"TI":747,"AM":1024,"x":70.748,"y":31.482,"w":12.054,"h":0.833,"TU":"Line 3gC. Multiply line 3c by 3f."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A243_L4A_1_","EN":0},"TI":748,"AM":0,"x":45.704,"y":33.77,"w":12.375,"h":0.833,"TU":"Line 4aA. Home mortgage interest (use the Worksheet fro the Home Mortgage Interest in the instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A243_L4A_2_","EN":0},"TI":749,"AM":0,"x":58.082,"y":33.777,"w":12.375,"h":0.833,"TU":"Line 4aB. Home mortgage interest (use the Worksheet fro the Home Mortgage Interest in the instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A243_L4A_3_","EN":0},"TI":750,"AM":0,"x":70.49,"y":33.742,"w":12.375,"h":0.833,"TU":"Line 4aC. Home mortgage interest (use the Worksheet fro the Home Mortgage Interest in the instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A244_L4B_1_","EN":0},"TI":751,"AM":0,"x":45.762,"y":34.487,"w":12.375,"h":0.833,"TU":"Line 4bA. Other interest expense."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A244_L4B_2_","EN":0},"TI":752,"AM":0,"x":58.139,"y":34.493,"w":12.375,"h":0.833,"TU":"Line 4bB. Other interest expense."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A244_L4B_3_","EN":0},"TI":753,"AM":0,"x":70.547,"y":34.459,"w":12.375,"h":0.833,"TU":"Line 4bC. Other interest expense."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A246_L5_1_","EN":0},"TI":754,"AM":0,"x":45.762,"y":35.279,"w":12.375,"h":0.833,"TU":"Line 5A. Losses from foreign sources."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A246_L5_2_","EN":0},"TI":755,"AM":0,"x":58.139,"y":35.285,"w":12.375,"h":0.833,"TU":"Line 5B. Losses from foreign sources."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A246_L5_3_","EN":0},"TI":756,"AM":0,"x":70.547,"y":35.251,"w":12.375,"h":0.833,"TU":"Line 5C. Losses from foreign sources."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A245_L6_1_","EN":0},"TI":757,"AM":1024,"x":45.762,"y":35.991,"w":12.375,"h":0.833,"TU":"Line 6A. Add lines 2, 3g, 4a, 4b, and 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A245_L6_2_","EN":0},"TI":758,"AM":1024,"x":58.139,"y":35.974,"w":12.375,"h":0.833,"TU":"Line 6B. Add lines 2, 3g, 4a, 4b, and 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A245_L6_3_","EN":0},"TI":759,"AM":1024,"x":70.547,"y":35.963,"w":12.375,"h":0.833,"TU":"Line 6C. Add lines 2, 3g, 4a, 4b, and 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6ET","EN":0},"TI":760,"AM":1024,"x":86.625,"y":35.996,"w":12.375,"h":0.833,"TU":"Line 6. Add lines 2, 3g, 4a, 4b and 5. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":761,"AM":1024,"x":86.625,"y":36.75,"w":12.375,"h":0.833,"TU":"Line 7, Subtract line 6 from line 1a. Enter the result here and on line 15, page 2. Dollars."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A248_DATE_1_","EN":0},"TI":764,"AM":0,"x":8.662,"y":42.724,"w":14.85,"h":0.833,"TU":"Line A(j). Date paid or accrued.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A249_N_1_","EN":0},"TI":765,"AM":0,"x":23.513,"y":42.724,"w":7.425,"h":0.833,"TU":"Line A(k). Dividends. Foreign currency."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A250_O_1_","EN":0},"TI":766,"AM":0,"x":30.938,"y":42.724,"w":8.663,"h":0.833,"TU":"Line A(l). Rents and royalties. Foreign currency."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A251_P_1_","EN":0},"TI":767,"AM":0,"x":39.6,"y":42.724,"w":7.425,"h":0.833,"TU":"Line A(m). Interest. Foreign currency."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A252_Q_1_","EN":0},"TI":768,"AM":0,"x":47.048,"y":42.721,"w":7.425,"h":0.833,"TU":"Line A(n). Other foreign taxes paid or accrued. Foreign currency."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A253_R_1_","EN":0},"TI":769,"AM":0,"x":54.512,"y":42.724,"w":8.473,"h":0.833,"TU":"Line A(o). Taxes withheld at source on Dividends. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A254_S_1_","EN":0},"TI":770,"AM":0,"x":63.209,"y":42.696,"w":7.39,"h":0.833,"TU":"Line A(p). Taxes withheld at source on Rents and royalties. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A255_INTEREST_1_","EN":0},"TI":771,"AM":0,"x":70.599,"y":42.696,"w":7.425,"h":0.833,"TU":"Line A(q). Taxes withheld at source on Interest. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A256_U_1_","EN":0},"TI":772,"AM":0,"x":78.024,"y":42.696,"w":8.548,"h":0.833,"TU":"Line A(r). Other foreign taxes paid or accrued. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A257_V_1_","EN":0},"TI":773,"AM":1024,"x":86.722,"y":42.724,"w":12.256,"h":0.833,"TU":"Line A(s). Total foreign taxes paid or accrued (add cols. (o) through (r). Dollars."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A248_DATE_2_","EN":0},"TI":774,"AM":0,"x":8.694,"y":43.47,"w":14.85,"h":0.833,"TU":"Line B(j). Date paid or accrued.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A249_N_2_","EN":0},"TI":775,"AM":0,"x":23.544,"y":43.47,"w":7.425,"h":0.833,"TU":"Line B(k). Dividends. Foreign currency."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A250_O_2_","EN":0},"TI":776,"AM":0,"x":30.969,"y":43.47,"w":8.663,"h":0.833,"TU":"Line B(l). Rents and royalties. Foreign currency."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A251_P_2_","EN":0},"TI":777,"AM":0,"x":39.631,"y":43.47,"w":7.425,"h":0.833,"TU":"Line B(m). Interest. Foreign currency."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A252_Q_2_","EN":0},"TI":778,"AM":0,"x":47.079,"y":43.468,"w":7.425,"h":0.833,"TU":"Line B(n). Other foreign taxes paid or accrued. Foreign currency"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A253_R_2_","EN":0},"TI":779,"AM":0,"x":54.543,"y":43.517,"w":8.473,"h":0.833,"TU":"Line B(o). Taxes withheld at source on Dividends. Dollars"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A254_S_2_","EN":0},"TI":780,"AM":0,"x":63.241,"y":43.443,"w":7.39,"h":0.833,"TU":"Line B(p). Taxes withheld at source on Rents and royalties. Dollars"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A255_INTEREST_2_","EN":0},"TI":781,"AM":0,"x":70.631,"y":43.443,"w":7.425,"h":0.833,"TU":"Line B(q). Taxes withheld at source on Interest. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A256_U_2_","EN":0},"TI":782,"AM":0,"x":78.056,"y":43.443,"w":8.548,"h":0.833,"TU":"Line B(r). Other foreign taxes paid or accrued. Dollars"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A257_V_2_","EN":0},"TI":783,"AM":1024,"x":86.753,"y":43.47,"w":12.256,"h":0.833,"TU":"Line B(s). Total foreign taxes paid or accrued (add cols. (o) through (r). Dollar"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A248_DATE_3_","EN":0},"TI":784,"AM":0,"x":8.652,"y":44.225,"w":14.85,"h":0.833,"TU":"Line C(j). Date paid or accrued.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A249_N_3_","EN":0},"TI":785,"AM":0,"x":23.502,"y":44.225,"w":7.425,"h":0.833,"TU":"Line C(k). Dividends. Foreign currency."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A250_O_3_","EN":0},"TI":786,"AM":0,"x":30.927,"y":44.225,"w":8.662,"h":0.833,"TU":"Line C(l). Rents and royalties. Foreign currency."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A251_P_3_","EN":0},"TI":787,"AM":0,"x":39.589,"y":44.248,"w":7.425,"h":0.833,"TU":"Line C(m). Interest. Foreign currency."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A252_Q_3_","EN":0},"TI":788,"AM":0,"x":47.037,"y":44.223,"w":7.425,"h":0.833,"TU":"Line C(n). Other foreign taxes paid or accrued. Foreign currency"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A253_R_3_","EN":0},"TI":789,"AM":0,"x":54.501,"y":44.225,"w":8.473,"h":0.833,"TU":"Line C(o). Taxes withheld at source on Dividends. Dollars"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A254_S_3_","EN":0},"TI":790,"AM":0,"x":63.199,"y":44.198,"w":7.39,"h":0.833,"TU":"Line C(p). Taxes withheld at source on Rents and royalties. Dollars"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A255_INTEREST_3_","EN":0},"TI":791,"AM":0,"x":70.588,"y":44.198,"w":7.425,"h":0.833,"TU":"Line C(q). Taxes withheld at source on Interest. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A256_U_3_","EN":0},"TI":792,"AM":0,"x":78.013,"y":44.198,"w":8.548,"h":0.833,"TU":"Line C(r). Other foreign taxes paid or accrued. Dollars"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A257_V_3_","EN":0},"TI":793,"AM":1024,"x":86.711,"y":44.202,"w":12.256,"h":0.833,"TU":"Line C(s). Total foreign taxes paid or accrued (add cols. (o) through (r). Dollar"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8T","EN":0},"TI":794,"AM":1024,"x":86.625,"y":45,"w":12.375,"h":0.833,"TU":"Line 8. Add lines A through C, column (s). Enter the total here and on line 9, page 2. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOX1","EN":0},"TI":707,"AM":0,"x":7.262,"y":8.287,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOX10","EN":0},"TI":708,"AM":0,"x":34.539,"y":8.256,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOX7","EN":0},"TI":709,"AM":0,"x":65.439,"y":8.276,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOX8","EN":0},"TI":710,"AM":0,"x":7.247,"y":9.058,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOX11","EN":0},"TI":711,"AM":0,"x":34.576,"y":9.051,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"BOXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COMPNX","EN":0},"TI":723,"AM":0,"x":43.145,"y":21.738,"w":1.375,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CBXP","EN":0},"TI":762,"AM":0,"x":13.801,"y":39.632,"w":1.746,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CBXA","EN":0},"TI":763,"AM":0,"x":13.726,"y":40.394,"w":1.746,"h":0.833,"checked":false}],"id":{"Id":"CBXRB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":3,"w":1.5,"l":11.223},{"oc":"#221f1f","x":17.282,"y":3,"w":1.5,"l":81.761},{"oc":"#221f1f","x":6.145,"y":3.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":56.882,"y":5.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":5.25,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.92,"y":3.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":56.882,"y":6.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":60.595,"y":6.75,"w":1.125,"l":17.411},{"oc":"#221f1f","x":56.882,"y":8.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":8.25,"w":0.75,"l":17.411},{"oc":"#221f1f","x":56.882,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":9.75,"w":0.75,"l":17.411},{"oc":"#221f1f","x":56.882,"y":11.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":60.595,"y":11.25,"w":1.125,"l":17.411},{"oc":"#221f1f","x":77.92,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":12.75,"w":0.75,"l":17.411},{"oc":"#221f1f","x":56.882,"y":15,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":15,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.92,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":56.882,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":15.75,"w":0.75,"l":17.411},{"oc":"#221f1f","x":56.882,"y":19.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":19.5,"w":0.75,"l":17.411},{"oc":"#221f1f","x":56.882,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":21.75,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.92,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":24,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.92,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":26.25,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.92,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":28.5,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.92,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":30.75,"w":0.75,"l":17.411},{"oc":"#221f1f","x":6.145,"y":30.75,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":31.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":56.882,"y":32.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":32.25,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.92,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":56.882,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":33,"w":0.75,"l":17.411},{"oc":"#221f1f","x":56.882,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":33.75,"w":0.75,"l":17.411},{"oc":"#221f1f","x":56.882,"y":34.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":60.595,"y":34.5,"w":1.125,"l":17.411},{"oc":"#221f1f","x":77.92,"y":35.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":35.25,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.92,"y":36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":36,"w":0.75,"l":17.411},{"oc":"#221f1f","x":77.92,"y":36.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.665,"y":36.751,"w":1.125,"l":17.378},{"oc":"#221f1f","x":77.92,"y":38.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.665,"y":38.25,"w":0.75,"l":17.378},{"oc":"#221f1f","x":6.145,"y":38.25,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":60.638,"y":3.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":3.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.675,"y":3.734,"w":0.75,"l":7.531},{"oc":"#221f1f","x":77.963,"y":3.734,"w":0.75,"l":7.531},{"oc":"#221f1f","x":60.638,"y":5.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":56.925,"y":5.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":60.638,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":8.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":56.925,"y":8.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":9.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":56.925,"y":9.734,"w":0.75,"l":1.539},{"oc":"#221f1f","x":81.675,"y":11.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":11.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.638,"y":12.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":56.925,"y":12.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.675,"y":12.734,"w":0.75,"l":9.031},{"oc":"#221f1f","x":77.963,"y":12.734,"w":0.75,"l":9.031},{"oc":"#221f1f","x":56.925,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":15.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":56.925,"y":15.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":60.638,"y":19.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":56.925,"y":19.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.675,"y":21.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":77.963,"y":21.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.675,"y":23.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":77.963,"y":23.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.675,"y":26.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":77.963,"y":26.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.675,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":77.963,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":56.925,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":77.963,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":56.925,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.925,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":56.925,"y":33.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":60.638,"y":33.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":35.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":36.735,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":3,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":3.75,"w":3.713,"h":7.5,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":12.75,"w":3.713,"h":9,"clr":-1},{"oc":"#221f1f","x":6.188,"y":30.75,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":31.5,"w":3.713,"h":3,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":8.134000000000002,"clr":-1,"A":"left","R":[{"T":"Form%201116%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.363,"y":2.009,"w":2.8520000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.795,"y":2.009,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.329,"y":2.821,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.156,"y":2.821,"w":9.184,"clr":-1,"A":"left","R":[{"T":"Figuring%20the%20Credit%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.6,"y":3.6609999999999996,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":3.6609999999999996,"w":30.673,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%208.%20These%20are%20your%20total%20foreign%20taxes%20paid%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.883,"y":4.348,"w":26.91099999999999,"clr":-1,"A":"left","R":[{"T":"or%20accrued%20for%20the%20category%20of%20income%20checked%20above%20Part%20I%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":51.31,"y":4.348,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":53.373,"y":4.348,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":58.125,"y":4.348,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":5.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":5.848,"w":23.87300000000001,"clr":-1,"A":"left","R":[{"T":"Carryback%20or%20carryover%20(attach%20detailed%20computation)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":47.187,"y":5.848,"w":5.648,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.719,"y":5.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":7.348000000000001,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":7.348000000000001,"w":8.615,"clr":-1,"A":"left","R":[{"T":"Add%20lines%209%20and%2010%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":24.5,"y":7.348000000000001,"w":21.179999999999993,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.719,"y":7.348000000000001,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":8.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":8.848,"w":19.79800000000001,"clr":-1,"A":"left","R":[{"T":"Reduction%20in%20foreign%20taxes%20(see%20instructions)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":41,"y":8.848,"w":11.296,"clr":-1,"A":"left","R":[{"T":".......%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.719,"y":8.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":60.388,"y":8.848,"w":11.916000000000013,"clr":-1,"A":"left","R":[{"T":"%20(%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":10.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":10.348,"w":26.29900000000001,"clr":-1,"A":"left","R":[{"T":"Taxes%20reclassified%20under%20high%20tax%20kickout%20(see%20instructions)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":51.314,"y":10.348,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":53.377,"y":10.348,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.719,"y":10.348,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":11.848,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":11.848,"w":40.02799999999999,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%2011%2C%2012%2C%20and%2013.%20This%20is%20the%20total%20amount%20of%20foreign%20taxes%20available%20for%20credit%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":69.876,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":71.939,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":74.002,"y":11.848,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":78.757,"y":11.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":12.723,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.888,"y":12.723,"w":31.822,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%207.%20This%20is%20your%20taxable%20income%20or%20(loss)%20from%20","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":10.893,"y":13.411,"w":32.209,"clr":-1,"A":"left","R":[{"T":"sources%20outside%20the%20United%20States%20(before%20adjustments)%20for%20the%20category%20","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":10.897,"y":14.098,"w":22.30000000000001,"clr":-1,"A":"left","R":[{"T":"of%20income%20checked%20above%20Part%20I%20(see%20instructions)%20","S":-1,"TS":[0,11.075,0,0]}]},{"oc":"#221f1f","x":43.063,"y":14.098,"w":8.646,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11.33,0,0]}]},{"oc":"#221f1f","x":57.719,"y":14.098,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":14.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":14.848,"w":18.079000000000008,"clr":-1,"A":"left","R":[{"T":"Adjustments%20to%20line%2015%20(see%20instructions)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":38.937,"y":14.848,"w":11.296,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.719,"y":14.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":15.847999999999999,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":15.847999999999999,"w":29.362000000000005,"clr":-1,"A":"left","R":[{"T":"Combine%20the%20amounts%20on%20lines%2015%20and%2016.%20This%20is%20your%20net%20foreign%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.892,"y":16.536,"w":28.631999999999998,"clr":-1,"A":"left","R":[{"T":"source%20taxable%20income.%20(If%20the%20result%20is%20zero%20or%20less%2C%20you%20have%20no%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.886,"y":17.223,"w":28.911,"clr":-1,"A":"left","R":[{"T":"foreign%20tax%20credit%20for%20the%20category%20of%20income%20you%20checked%20above%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.884,"y":17.91,"w":30.671999999999997,"clr":-1,"A":"left","R":[{"T":"Part%20I.%20Skip%20%20lines%2018%20through%2022.%20However%2C%20if%20you%20are%20filing%20more%20than%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.881,"y":18.598,"w":20.213,"clr":-1,"A":"left","R":[{"T":"one%20Form%20%201116%2C%20you%20must%20complete%20line%2020.)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":40.994,"y":18.598,"w":9.884,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.719,"y":18.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":19.473,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":38.946,"y":20.848,"w":11.296,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.719,"y":20.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.893,"y":22.348,"w":5.704000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.794,"y":23.098,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.893,"y":23.098,"w":28.695,"clr":-1,"A":"left","R":[{"T":"Divide%20line%2017%20by%20line%2018.%20If%20line%2017%20is%20more%20than%20line%2018%2C%20enter%20%E2%80%9C1%E2%80%9D%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":53.38,"y":23.098,"w":15.531999999999996,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":78.757,"y":23.098,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.876,"y":25.254,"w":28.08300000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20G%2C%20line%201a%2C%20or%20the%20total%20of%20Form%20990-T%2C%20lines%2036%20and%2037","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":53.363,"y":25.254,"w":15.531999999999996,"clr":-1,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":78.757,"y":25.348,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.893,"y":26.848,"w":5.613000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.794,"y":27.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.893,"y":27.598,"w":24.380000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2020%20by%20line%2019%20(maximum%20amount%20of%20credit)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":47.193,"y":27.598,"w":19.767999999999994,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":78.757,"y":27.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":28.473,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.877,"y":29.067,"w":44.97499999999998,"clr":-1,"A":"left","R":[{"T":"through%2027%20and%20enter%20this%20amount%20on%20line%2028.%20Otherwise%2C%20complete%20the%20appropriate%20line%20in%20Part%20IV%20(see%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.886,"y":29.755,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":20.373,"y":29.755,"w":39.53599999999998,"clr":-1,"A":"left","R":[{"T":"...........................%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":74.926,"y":29.661,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":78.757,"y":29.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,11.5,0,0]}]},{"x":6.294,"y":30.572,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.156,"y":30.572,"w":21.088000000000005,"clr":-1,"A":"left","R":[{"T":"Summary%20of%20Credits%20From%20Separate%20Parts%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":49.401,"y":30.572,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.788,"y":31.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":31.348,"w":19.983000000000004,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20taxes%20on%20passive%20category%20income%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":41,"y":31.348,"w":9.884,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.719,"y":31.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":32.098,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":32.098,"w":19.890000000000004,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20taxes%20on%20general%20category%20income%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":41,"y":32.098,"w":9.884,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.719,"y":32.098,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":32.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.85,"w":24.798999999999996,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20taxes%20on%20certain%20income%20re-sourced%20by%20treaty%20","S":-1,"TS":[0,11.4,0,0]}]},{"oc":"#221f1f","x":47.188,"y":32.85,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.4,0,0]}]},{"oc":"#221f1f","x":49.251,"y":32.85,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.4,0,0]}]},{"oc":"#221f1f","x":51.314,"y":32.85,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.4,0,0]}]},{"oc":"#221f1f","x":53.377,"y":32.85,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.4,0,0]}]},{"oc":"#221f1f","x":57.719,"y":32.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":33.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":33.598,"w":19.153000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20taxes%20on%20lump-sum%20distributions%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":38.937,"y":33.598,"w":11.296,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":57.719,"y":33.598,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":34.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":34.348,"w":10.949,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2023%20through%2026%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":28.624,"y":34.348,"w":32.475999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":78.757,"y":34.348,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":35.098,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":36.874,"y":35.098,"w":26.82799999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":78.757,"y":35.098,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":35.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":35.848,"w":37.18999999999999,"clr":-1,"A":"left","R":[{"T":"Reduction%20of%20credit%20for%20international%20boycott%20operations.%20See%20instructions%20for%20line%2012%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":65.75,"y":35.848,"w":7.06,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":78.757,"y":35.848,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":36.63,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.899,"y":37.348,"w":35.642999999999994,"clr":-1,"A":"left","R":[{"T":"Form%201040NR%2C%20line%2045%3B%20Form%201041%2C%20Schedule%20G%2C%20line%202a%3B%20or%20Form%20990-T%2C%20line%2040a%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":63.7,"y":37.348,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":65.762,"y":37.348,"w":8.472,"clr":-1,"A":"left","R":[{"T":".....%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":74.926,"y":37.255,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":78.757,"y":37.348,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":88.152,"y":38.071,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.294,"y":38.071,"w":2.224,"clr":-1,"A":"left","R":[{"T":"1116","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.117,"y":38.071,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.887,"y":28.38,"w":41.40699999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2014%20or%20line%2021.%20If%20this%20is%20the%20only%20Form%201116%20you%20are%20filing%2C%20skip%20lines%2023%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.888,"y":26.161,"w":40.46099999999997,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20If%20you%20are%20completing%20line%2020%20for%20separate%20category%20e%20(lump-sum%20distributions)%2C%20see%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.881,"y":24.567,"w":40.40599999999996,"clr":-1,"A":"left","R":[{"T":"amount%20from%20Form%201040NR%2C%20line%2042.%20Estates%20and%20trusts%3A%20Enter%20the%20amount%20from%20Form%201041%2C%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":6.788,"y":23.879,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":23.879,"w":42.07699999999996,"clr":-1,"A":"left","R":[{"T":"Individuals%3A%20Enter%20the%20amount%20from%20Form%201040%2C%20line%2044.%20If%20you%20are%20a%20nonresident%20alien%2C%20enter%20the%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.888,"y":21.661,"w":42.46499999999998,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20If%20you%20figured%20your%20tax%20using%20the%20lower%20rates%20on%20qualified%20dividends%20or%20capital%20gains%2C%20see%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.892,"y":20.161,"w":28.180000000000007,"clr":-1,"A":"left","R":[{"T":"1040NR%2C%20line%2039.%20Estates%20and%20trusts%3A%20Enter%20your%20taxable%20income%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":19.473,"w":28.178,"clr":-1,"A":"left","R":[{"T":"Individuals%3A%20Enter%20the%20amount%20from%20Form%201040%2C%20line%2041%2C%20or%20Form%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":36.661,"w":43.51999999999996,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2029%20from%20line%2028.%20This%20is%20your%20foreign%20tax%20credit.%20Enter%20here%20and%20on%20Form%201040%2C%20line%2047%3B%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.887,"y":35.098,"w":16.563000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20smaller%20of%20line%2020%20or%20line%2027%20","S":-1,"TS":[0,11.5,0,0]}]},{"oc":"#221f1f","x":10.896,"y":20.848,"w":18.726000000000006,"clr":-1,"A":"left","R":[{"T":"without%20the%20deduction%20for%20your%20exemption%20","S":-1,"TS":[0,11.5,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":795,"AM":1024,"x":16.083,"y":2.157,"w":49.889,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":796,"AM":1024,"x":83.913,"y":2.13,"w":10.434,"h":0.858},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":797,"AM":1024,"x":60.638,"y":4.5,"w":17.325,"h":0.833,"TU":"Line 9. Enter the amount from line 8. These are your total foreign taxes paid or accrued for the catagory of income checked above Part I. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":798,"AM":0,"x":60.739,"y":5.996,"w":17.325,"h":0.833,"TU":"Line 10. Carryback or carryover (attach detailed computation). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":799,"AM":1024,"x":60.688,"y":7.507,"w":17.325,"h":0.833,"TU":"Line 11. Add lines 9 and 10. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":800,"AM":0,"x":62.072,"y":8.98,"w":14.376,"h":0.833,"TU":"Line 12. Reduction in foreign taxes (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RECLASS","EN":0},"TI":801,"AM":0,"x":60.648,"y":10.487,"w":17.325,"h":0.833,"TU":"Line 13. Taxes reclassified under high tax kickout (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":802,"AM":1024,"x":81.666,"y":11.978,"w":17.325,"h":0.833,"TU":"Line 14. Combine lines 11, 12 and 13. This is the total amount of foreign taxes available for credit.. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":803,"AM":1024,"x":60.75,"y":14.243,"w":17.325,"h":0.833,"TU":"Line 15. Enter the amount from line 7. This is your taxable income or (loss) from sources outside the United States (before adjustments) for the catagory of income checked above Part I (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":804,"AM":0,"x":60.655,"y":15.025,"w":17.325,"h":0.833,"TU":"Line 16. Adjustments to line 15 (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":805,"AM":1024,"x":60.594,"y":18.785,"w":17.325,"h":0.833,"TU":"Line 17. Combine amounts on lines 15 and 16. This is your net foreign source taxable income. (If the result is zero or less, you have no foreign tax credit for the catagory of income you checked above Part I. Skip lines 18 through 22. However, if you are filing more than on Form 1116, you must complete line 20). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":806,"AM":0,"x":60.695,"y":21.015,"w":17.325,"h":0.833,"TU":"Line 18. Individuals: Enter the amount from Form 1040, line 41 or Form 1040NR, line 39. Dollars."},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":807,"AM":1024,"x":81.651,"y":23.298,"w":17.325,"h":0.833,"TU":"Line 19. Divide line 17 by line 18. If line 17 is more than line 18, enter \"1\"."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":808,"AM":0,"x":81.753,"y":25.528,"w":17.325,"h":0.833,"TU":"Line 20. Individuals: Enter the amount from Form 1040, line 44. If you are a nonresident alien, enter the amount from Form 1040NR, line 42."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":809,"AM":1024,"x":81.706,"y":27.728,"w":17.325,"h":0.833,"TU":"Line 21. Multiply line 20 by line 19 (maximum amount of credit)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":810,"AM":0,"x":81.808,"y":29.959,"w":17.325,"h":0.833,"TU":"Line 22. Enter the smaller of line 14 or line 21. If this is the only Form 1116 you are filing, skip lines 23 through 27 and enter this amount on line 28. Otherwise, complete the appropriate line in Part IV (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":811,"AM":0,"x":60.712,"y":31.536,"w":17.325,"h":0.833,"TU":"Line 23. Credit for taxes on passive catagory income. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":812,"AM":0,"x":60.617,"y":32.318,"w":17.325,"h":0.833,"TU":"Line 24. Credit for taxes on general catagory income. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":813,"AM":0,"x":60.617,"y":33.053,"w":17.325,"h":0.833,"TU":"Line 25. Credit for taxes on certain income re-sourced by treaty. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":814,"AM":0,"x":60.522,"y":33.835,"w":17.325,"h":0.833,"TU":"Line 26. Credit for taxes on lump-sum distributions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":815,"AM":1024,"x":81.784,"y":34.461,"w":17.325,"h":0.833,"TU":"Line 27. Add lines 23 through 26. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31SUB","EN":0},"TI":816,"AM":1024,"x":81.689,"y":35.244,"w":17.325,"h":0.833,"TU":"Line 28. Enter the smaller of line 20 or line 27. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":817,"AM":0,"x":81.764,"y":35.979,"w":17.325,"h":0.833,"TU":"Line 29. Reduction of credit for international boycott operations. See instructions for line 12. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":818,"AM":1024,"x":81.669,"y":37.469,"w":17.325,"h":0.833,"TU":"Line 30. Subtract line 29 from line 28. This is your foreign tax credit. Enter here and on Form 1040, line 47; Form 1040NR, line 45. Dollars."}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.7","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Foreign Tax Credit","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Adobe Acrobat Pro 10.1.8","CreationDate":"D:20131108062648-08'00'","ModDate":"D:20140124153810-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":5.25,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":7.634,"y":5.25,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.569,"y":3,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.569,"y":5.25,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.234,"y":6.75,"w":0.75,"l":21.631,"oc":"#221f1f"},{"x":23.834,"y":6.75,"w":0.75,"l":12.181,"oc":"#221f1f"},{"x":2.234,"y":10.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":11.25,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":12.75,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":13.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":16.634,"y":14.25,"w":0.75,"l":13.531,"oc":"#221f1f"},{"x":16.634,"y":14.246,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":14.996,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":14.246,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":14.996,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":14.246,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":15,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":15,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":16.634,"y":15.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":15.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":15.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":15,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":7.623,"y":17.997,"w":0.75,"l":8.581,"oc":"#221f1f","dsh":1},{"x":4.023,"y":18.746,"w":0.75,"l":12.181,"oc":"#221f1f","dsh":1},{"x":16.634,"y":15.746,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":15.746,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":15.746,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":4.023,"y":19.496,"w":0.75,"l":12.181,"oc":"#221f1f","dsh":1},{"x":16.634,"y":19.496,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":19.496,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":19.496,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":19.496,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":19.488,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":22.488,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":19.488,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":22.488,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":19.488,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":22.488,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":19.488,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":22.488,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.223,"y":22.5,"w":1.125,"l":14.431,"oc":"#221f1f"},{"x":16.634,"y":22.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":22.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":22.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":22.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":16.634,"y":24.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":24.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":24.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":24.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":24.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":24.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":27.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":27.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":27.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":28.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":28.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":28.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":29.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":29.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":29.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":30,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":30,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":30,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":30.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":30.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":30.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":31.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":31.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":31.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":32.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":32.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":32.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":32.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":32.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":32.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":34.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":34.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":34.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":35.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":35.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":35.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":16.634,"y":36,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":21.134,"y":36,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":25.634,"y":36,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":36.746,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.25,"y":36.75,"w":1.125,"l":33.758,"oc":"#181616"},{"x":2.234,"y":37.5,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":38.25,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":42.75,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.134,"y":41.25,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":3.134,"y":42.75,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":8.534,"y":39.75,"w":0.75,"l":27.481,"oc":"#221f1f"},{"x":8.534,"y":40.5,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":8.534,"y":41.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":8.534,"y":42.75,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":11.234,"y":42.75,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":14.384,"y":42.75,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":17.084,"y":42.75,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":19.784,"y":40.5,"w":0.75,"l":16.231,"oc":"#221f1f"},{"x":19.784,"y":41.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.784,"y":42.75,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":22.934,"y":42.75,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":25.634,"y":42.75,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":28.334,"y":42.75,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":31.484,"y":42.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":42.724,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.134,"y":42.724,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":8.534,"y":42.724,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":11.234,"y":42.724,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":14.384,"y":42.724,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":17.084,"y":42.724,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":19.784,"y":42.724,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":22.934,"y":42.724,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":25.634,"y":42.724,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":28.334,"y":42.724,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":31.484,"y":42.724,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":43.474,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.134,"y":43.474,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":8.534,"y":43.474,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":11.234,"y":43.474,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":14.384,"y":43.474,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":17.084,"y":43.474,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":19.784,"y":43.474,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":22.934,"y":43.474,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":25.634,"y":43.474,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":28.334,"y":43.474,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":31.484,"y":43.474,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":44.223,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.134,"y":44.223,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":8.534,"y":44.223,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":11.234,"y":44.223,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":14.384,"y":44.223,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":17.084,"y":44.223,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":19.784,"y":44.223,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":22.934,"y":44.223,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":25.634,"y":44.223,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":28.334,"y":44.223,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":31.484,"y":44.223,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":44.973,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":3.134,"y":44.973,"w":1.125,"l":5.431,"oc":"#221f1f"},{"x":8.534,"y":44.973,"w":1.125,"l":2.731,"oc":"#221f1f"},{"x":11.234,"y":44.973,"w":1.125,"l":3.181,"oc":"#221f1f"},{"x":14.384,"y":44.973,"w":1.125,"l":2.731,"oc":"#221f1f"},{"x":17.084,"y":44.973,"w":1.125,"l":2.731,"oc":"#221f1f"},{"x":19.784,"y":44.973,"w":1.125,"l":3.181,"oc":"#221f1f"},{"x":22.934,"y":44.973,"w":1.125,"l":2.731,"oc":"#221f1f"},{"x":25.634,"y":44.973,"w":1.125,"l":2.731,"oc":"#221f1f"},{"x":28.334,"y":44.973,"w":1.125,"l":3.181,"oc":"#221f1f"},{"x":31.484,"y":44.973,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":45.75,"w":0.75,"l":17.131,"oc":"#221f1f"},{"x":19.334,"y":45.75,"w":0.75,"l":12.631,"oc":"#221f1f"},{"x":31.934,"y":45.75,"w":0.75,"l":4.081,"oc":"#221f1f"}],"VLines":[{"x":7.65,"y":2.234,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":7.65,"y":3.734,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":30.6,"y":2.234,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":2.984,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":30.6,"y":3.734,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":23.85,"y":5.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.65,"y":13.481,"w":0.75,"l":0.785,"oc":"#221f1f"},{"x":16.65,"y":14.231,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":14.231,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":14.231,"w":0.75,"l":0.785,"oc":"#221f1f"},{"x":30.15,"y":13.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.65,"y":14.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":14.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":14.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":14.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":14.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":14.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.65,"y":15.731,"w":0.75,"l":3.035,"oc":"#221f1f"},{"x":21.15,"y":15.731,"w":0.75,"l":3.035,"oc":"#221f1f"},{"x":25.65,"y":15.731,"w":0.75,"l":3.035,"oc":"#221f1f"},{"x":31.5,"y":15.731,"w":0.75,"l":3.035,"oc":"#221f1f"},{"x":30.15,"y":15.731,"w":0.75,"l":3.035,"oc":"#221f1f"},{"x":31.5,"y":15.734,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":16.65,"y":18.731,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":18.731,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":18.731,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":18.727,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":18.727,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":18.731,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":18.731,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.65,"y":19.473,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":21.15,"y":19.473,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":25.65,"y":19.473,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":31.5,"y":19.473,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":30.15,"y":19.473,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":31.5,"y":19.473,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":21.15,"y":22.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":16.65,"y":22.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":25.65,"y":22.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":21.15,"y":22.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":25.65,"y":22.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":22.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":22.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.65,"y":23.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.15,"y":23.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.65,"y":23.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":23.227,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":30.15,"y":23.227,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":31.5,"y":23.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.65,"y":24.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.65,"y":24.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.15,"y":24.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.65,"y":24.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":24.727,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":30.15,"y":24.727,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":31.5,"y":24.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.65,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.15,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.65,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":26.227,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":30.15,"y":26.227,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":31.5,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.65,"y":27.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":21.15,"y":27.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":25.65,"y":27.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":27.723,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":27.723,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":27.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.65,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":28.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":28.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.65,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":29.227,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":29.227,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.65,"y":29.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":29.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":29.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":29.977,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":29.977,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":29.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.65,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":30.727,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":30.727,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.65,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":31.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":31.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.65,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":32.227,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":32.227,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.65,"y":32.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.15,"y":32.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.65,"y":32.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":32.977,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":30.15,"y":32.977,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":31.5,"y":32.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.65,"y":34.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":34.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":34.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":34.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":34.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":34.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.65,"y":35.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":21.15,"y":35.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":25.65,"y":35.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":35.227,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":35.227,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":35.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.65,"y":35.981,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.15,"y":35.981,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":35.981,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":35.977,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":35.977,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":35.981,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":35.981,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":36.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":36.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":3.15,"y":38.234,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":3.15,"y":38.234,"w":0.75,"l":1.519,"oc":"#221f1f"},{"x":3.15,"y":41.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":8.55,"y":38.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":8.55,"y":39.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":8.55,"y":40.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":8.55,"y":41.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":11.25,"y":41.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.4,"y":41.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":17.1,"y":40.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":19.8,"y":39.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.8,"y":40.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.8,"y":41.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.95,"y":41.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.65,"y":41.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.35,"y":40.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":31.5,"y":40.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":3.15,"y":42.708,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":8.55,"y":42.708,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.25,"y":42.708,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.4,"y":42.708,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":42.708,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.8,"y":42.708,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":42.708,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":42.708,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":42.708,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":42.708,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":3.15,"y":43.458,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":8.55,"y":43.458,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.25,"y":43.458,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.4,"y":43.458,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":43.458,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.8,"y":43.458,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.95,"y":43.458,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":43.458,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":43.458,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":43.458,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":3.15,"y":44.208,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":8.55,"y":44.208,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":11.25,"y":44.208,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":14.4,"y":44.208,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":17.1,"y":44.208,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":19.8,"y":44.208,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":22.95,"y":44.208,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":25.65,"y":44.208,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.35,"y":44.208,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":31.5,"y":44.208,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":44.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.5,"y":44.984,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.25,"y":12.75,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":16.65,"y":15.746,"w":4.5,"h":3.004,"oc":"#bebfc1"},{"x":21.15,"y":15.746,"w":4.5,"h":3.004,"oc":"#bebfc1"},{"x":25.65,"y":15.746,"w":4.5,"h":3.004,"oc":"#bebfc1"},{"x":30.15,"y":15.746,"w":1.35,"h":3.004,"oc":"#bebfc1"},{"x":16.65,"y":19.488,"w":4.5,"h":3,"oc":"#bebfc1"},{"x":21.15,"y":19.488,"w":4.5,"h":3,"oc":"#bebfc1"},{"x":25.65,"y":19.488,"w":4.5,"h":3,"oc":"#bebfc1"},{"x":30.15,"y":19.488,"w":1.35,"h":3,"oc":"#bebfc1"},{"x":16.65,"y":22.5,"w":4.5,"h":0.75,"oc":"#bebfc1"},{"x":21.15,"y":22.5,"w":4.5,"h":0.75,"oc":"#bebfc1"},{"x":25.65,"y":22.5,"w":4.5,"h":0.75,"oc":"#bebfc1"},{"x":16.65,"y":24.75,"w":4.5,"h":1.5,"oc":"#bebfc1"},{"x":21.15,"y":24.75,"w":4.5,"h":1.5,"oc":"#bebfc1"},{"x":25.65,"y":24.75,"w":4.5,"h":1.5,"oc":"#bebfc1"},{"x":16.65,"y":32.25,"w":4.5,"h":0.75,"oc":"#bebfc1"},{"x":21.15,"y":32.25,"w":4.5,"h":0.75,"oc":"#bebfc1"},{"x":25.65,"y":32.25,"w":4.5,"h":0.75,"oc":"#bebfc1"},{"x":2.25,"y":37.5,"w":2.25,"h":0.75,"oc":"#221f1f"}],"Texts":[{"x":2,"y":2.571,"w":2.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":3.264,"y":2.571,"w":2.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1116 ","S":-1,"TS":[0,28,1,0]}]},{"x":2,"y":3.8369999999999997,"w":12.54,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,8.95,0,0]}]},{"x":2,"y":4.337,"w":11.371,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service ","S":-1,"TS":[0,8.95,0,0]}]},{"x":6.229,"y":4.337,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":6.538,"y":4.337,"w":1.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(99)","S":2,"TS":[0,10,0,0]}]},{"x":7.252,"y":4.337,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.5,0,0]}]},{"x":15.261,"y":2.1,"w":9.113,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Foreign Tax Credit ","S":11,"TS":[0,18,1,0]}]},{"x":15.326,"y":2.961,"w":13.225,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(Individual, Estate, or Trust)","S":9,"TS":[0,12,1,0]}]},{"x":13.181,"y":3.5540000000000003,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":13.32,"y":3.46,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":13.695,"y":3.5540000000000003,"w":21.897,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Attach to Form 1040, 1040NR, 1041, or 990-T. ","S":-1,"TS":[0,11,1,0]}]},{"x":24.708,"y":3.5540000000000003,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":24.865,"y":3.5540000000000003,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":8.303,"y":4.111,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":29.308,"y":4.205,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":-1,"TS":[0,11,0,0]}]},{"x":31.019,"y":1.972,"w":9.561,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0121 ","S":2,"TS":[0,10,0,0]}]},{"x":31.425,"y":3.33,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.505,"y":3.33,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":31.225,"y":3.8129999999999997,"w":5.447,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.225,"y":4.259,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":34.126,"y":4.259,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"19 ","S":10,"TS":[0,14,1,0]}]},{"x":2,"y":5,"w":2.927,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name ","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":7.161,"w":38.486,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1116. Report all amounts in U.S. dollars except where specified in Part II below. ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":8.202,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":9,"TS":[0,12,1,0]}]},{"x":3.238,"y":8.207,"w":11.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Passive category income ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":8.952,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":3.238,"y":8.957,"w":11.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"General category income ","S":-1,"TS":[0,11,0,0]}]},{"x":11.9,"y":8.202,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c ","S":9,"TS":[0,12,1,0]}]},{"x":13.138,"y":8.207,"w":9.91,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Section 901(j) income ","S":-1,"TS":[0,11,0,0]}]},{"x":11.9,"y":8.952,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d ","S":9,"TS":[0,12,1,0]}]},{"x":13.138,"y":8.957,"w":16.41,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Certain income re-sourced by treaty ","S":-1,"TS":[0,11,0,0]}]},{"x":23.15,"y":8.202,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"e ","S":9,"TS":[0,12,1,0]}]},{"x":24.388,"y":8.207,"w":10.913,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Lump-sum distributions ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":10.339,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"f ","S":3,"TS":[0,12,0,0]}]},{"x":2.5,"y":10.339,"w":13.447,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Resident of (name of country) ","S":3,"TS":[0,12,0,0]}]},{"x":10.064,"y":10.245,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":11.038,"w":2.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Note: ","S":3,"TS":[0,12,0,0]}]},{"x":35.306,"y":11.038,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":5.917,"y":11.713,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.327,"y":12.571,"w":2.833,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I ","S":-1,"TS":[0,13,0,0]}]},{"x":4.625,"y":12.571,"w":45.789,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Taxable Income or Loss From Sources Outside the United States (for Category Checked Above) ","S":10,"TS":[0,14,1,0]}]},{"x":18.913,"y":13.234,"w":17.393,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"Foreign Country or U.S. Possession ","S":-1,"TS":[0,11,1,0]}]},{"x":18.479,"y":13.978,"w":0.963,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"A ","S":-1,"TS":[0,11,0,0]}]},{"x":22.974,"y":13.978,"w":0.982,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"B ","S":-1,"TS":[0,11,0,0]}]},{"x":27.465,"y":13.984,"w":1.019,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"C ","S":-1,"TS":[0,11,0,0]}]},{"x":32.224,"y":13.307,"w":2.667,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"Total ","S":-1,"TS":[0,11,1,0]}]},{"x":30.218,"y":13.907,"w":10.706,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"(Add cols. A, B, and C.) ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":14.098,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"g ","S":-1,"TS":[0,11.5,1,0]}]},{"x":3.7889999999999997,"y":14.189,"w":21.615,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Enter the name of the foreign country or U.S. ","S":-1,"TS":[0,11.5,1,0]}]},{"x":3.787,"y":14.848,"w":5.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"possession","S":-1,"TS":[0,11.5,1,0]}]},{"x":6.498,"y":14.848,"w":18.356,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ........... ","S":-1,"TS":[0,11.5,0,0]}]},{"x":15.519,"y":14.754,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"x":2.637,"y":15.594000000000001,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1a","S":-1,"TS":[0,11.5,1,0]}]},{"x":3.7889999999999997,"y":15.719000000000001,"w":22.15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Gross income from sources within country shown","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.7880000000000003,"y":16.407,"w":19.264,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"above and of the type checked above (see ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.7880000000000003,"y":17.094,"w":6.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions): ","S":-1,"TS":[0,11.5,0,0]}]},{"x":30.275,"y":18.598,"w":1.13,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1a","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":19.274,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11.5,1,0]}]},{"x":3.7889999999999997,"y":19.349,"w":20.374,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check if line 1a is compensation for personal ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.787,"y":19.911,"w":16.021,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"services as an employee, your total ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.7880000000000003,"y":20.474,"w":20.673,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"compensation from all sources is $250,000 or ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.787,"y":21.036,"w":19.246,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"more, and you used an alternative basis to ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.787,"y":21.621,"w":17.225,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"determine its source (see instructions) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":13.248,"y":21.621,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":13.998,"y":21.621,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":14.465,"y":21.621,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":14.615,"y":21.527,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"x":9.831,"y":22.357,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2.605,"y":23.161,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":-1,"TS":[0,11.5,1,0]}]},{"x":2.9,"y":23.848,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.787,"y":23.848,"w":9.707,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1a (attach statement) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":9.498,"y":23.848,"w":12.708,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.605,"y":24.661,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":-1,"TS":[0,11.5,1,0]}]},{"x":2.9,"y":25.348,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.7889999999999997,"y":25.348,"w":3.89,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"related: ","S":-1,"TS":[0,11.5,1,0]}]},{"x":2.9,"y":26.129,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11.5,1,0]}]},{"x":2.9,"y":26.817,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.7889999999999997,"y":26.161,"w":22.708,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Certain itemized deductions or standard deduction","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.7889999999999997,"y":26.848,"w":7.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":8,"y":26.848,"w":15.532,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":27.598,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11.5,1,0]}]},{"x":3.7889999999999997,"y":27.598,"w":16.376,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other deductions (attach statement) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":12.5,"y":27.598,"w":7.06,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":28.348,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c ","S":-1,"TS":[0,11.5,1,0]}]},{"x":3.7889999999999997,"y":28.348,"w":9.189,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 3a and 3b ","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.75,"y":28.348,"w":14.12,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":29.098,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d ","S":-1,"TS":[0,11.5,1,0]}]},{"x":3.7889999999999997,"y":29.098,"w":21.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Gross foreign source income (see instructions) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":15.5,"y":29.098,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":29.848,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"e ","S":-1,"TS":[0,11.5,1,0]}]},{"x":3.7889999999999997,"y":29.848,"w":21.743,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Gross income from all sources (see instructions) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":15.5,"y":29.848,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":30.598,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"f ","S":-1,"TS":[0,11.5,1,0]}]},{"x":3.7889999999999997,"y":30.598,"w":18.689,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Divide line 3d by line 3e (see instructions) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":14,"y":30.598,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":14.75,"y":30.598,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":15.501,"y":30.598,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":31.348,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"g ","S":-1,"TS":[0,11.5,1,0]}]},{"x":3.7889999999999997,"y":31.348,"w":11.281,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 3c by line 3f ","S":-1,"TS":[0,11.5,0,0]}]},{"x":10.25,"y":31.348,"w":11.296,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.605,"y":32.098,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":-1,"TS":[0,11.5,1,0]}]},{"x":3.7889999999999997,"y":32.098,"w":23.483,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Pro rata share of interest expense (see instructions): ","S":-1,"TS":[0,11.245,0,0]}]},{"x":2.9,"y":32.879,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11.5,1,0]}]},{"x":2.9,"y":33.567,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.7889999999999997,"y":32.911,"w":21.504,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Home mortgage interest (use the Worksheet for ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.7880000000000003,"y":33.598,"w":19.652,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Home Mortgage Interest in the instructions) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":14.749,"y":33.598,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":15.499,"y":33.598,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":34.348,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11.5,1,0]}]},{"x":3.7889999999999997,"y":34.348,"w":10.428,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other interest expense ","S":-1,"TS":[0,11.5,0,0]}]},{"x":9.5,"y":34.348,"w":12.708,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.605,"y":35.098,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":-1,"TS":[0,11.5,1,0]}]},{"x":3.7889999999999997,"y":35.098,"w":12.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Losses from foreign sources ","S":-1,"TS":[0,11.5,0,0]}]},{"x":11,"y":35.098,"w":9.884,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.605,"y":35.782,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":-1,"TS":[0,11.5,1,0]}]},{"x":3.7889999999999997,"y":35.782,"w":13.377,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 2, 3g, 4a, 4b, and 5 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":11,"y":35.782,"w":9.884,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"x":30.427,"y":35.848,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.605,"y":36.598,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":36.535,"w":32.065,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 6 from line 1a. Enter the result here and on line 15, page 2 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":21.5,"y":36.535,"w":15.532,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......... ","S":-1,"TS":[0,11.5,0,0]}]},{"x":29.021,"y":36.442,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"x":30.427,"y":36.598,"w":0.834,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"7 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.234,"y":37.321,"w":3.128,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II ","S":-1,"TS":[0,13,0,0]}]},{"x":4.625,"y":37.321,"w":15.283,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Foreign Taxes Paid or Accrued ","S":10,"TS":[0,14,1,0]}]},{"x":14.15,"y":37.321,"w":7.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions) ","S":-1,"TS":[0,13,0,0]}]},{"x":2.589,"y":40.937,"w":4.111,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Country ","S":10,"TS":[0,14,1,0],"RA":90}]},{"x":3.843,"y":37.944,"w":8.281,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Credit is claimed ","S":8,"TS":[0,10,1,0]}]},{"x":4.685,"y":38.381,"w":4.724,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"for taxes ","S":8,"TS":[0,10,1,0]}]},{"x":3.368,"y":38.819,"w":10.482,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(you must check one) ","S":2,"TS":[0,10,0,0]}]},{"x":3.9909999999999997,"y":39.472,"w":1.555,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(h) ","S":8,"TS":[0,10,1,0]}]},{"x":5.6,"y":39.469,"w":2.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Paid ","S":2,"TS":[0,10,0,0]}]},{"x":4.064,"y":40.222,"w":1.222,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(i) ","S":8,"TS":[0,10,1,0]}]},{"x":5.6,"y":40.218,"w":4.019,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Accrued ","S":2,"TS":[0,10,0,0]}]},{"x":4.405,"y":41.085,"w":1.222,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(j) ","S":8,"TS":[0,10,1,0]}]},{"x":4.907,"y":41.085,"w":4.594,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date paid ","S":2,"TS":[0,10,0,0]}]},{"x":6.917,"y":41.085,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":4.547,"y":41.61,"w":5.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or accrued ","S":2,"TS":[0,10,0,0]}]},{"x":18.906,"y":38.343,"w":14.536,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Foreign taxes paid or accrued ","S":2,"TS":[0,10,0,0]}]},{"x":12.098,"y":39.47,"w":8.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"In foreign currency ","S":2,"TS":[0,10,0,0]}]},{"x":9.768,"y":40.219,"w":13.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxes withheld at source on: ","S":2,"TS":[0,10,0,0]}]},{"x":8.458,"y":41.34,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(k) ","S":-1,"TS":[0,9.5,1,0]}]},{"x":9.044,"y":41.34,"w":4.705,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Dividends ","S":-1,"TS":[0,9.5,0,0]}]},{"x":11.761,"y":41.085,"w":1.222,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(l) ","S":8,"TS":[0,10,1,0]}]},{"x":12.255,"y":41.085,"w":2.593,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Rents","S":2,"TS":[0,10,0,0]}]},{"x":13.389,"y":41.085,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":11.327,"y":41.61,"w":5.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and royalties ","S":2,"TS":[0,10,0,0]}]},{"x":14.378,"y":41.347,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(m) ","S":8,"TS":[0,10,1,0]}]},{"x":15.155,"y":41.347,"w":3.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Interest ","S":2,"TS":[0,10,0,0]}]},{"x":17.338,"y":40.234,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(n) ","S":-1,"TS":[0,9.5,1,0]}]},{"x":18.046,"y":40.234,"w":2.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other ","S":-1,"TS":[0,9.5,0,0]}]},{"x":19.175,"y":40.234,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.5,0,0]}]},{"x":17.026,"y":40.722,"w":6.055,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"foreign taxes ","S":-1,"TS":[0,9.5,0,0]}]},{"x":19.486,"y":40.722,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.5,0,0]}]},{"x":17.564,"y":41.209,"w":3.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"paid or ","S":-1,"TS":[0,9.5,0,0]}]},{"x":18.949,"y":41.209,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.5,0,0]}]},{"x":17.463,"y":41.697,"w":3.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"accrued ","S":-1,"TS":[0,9.5,0,0]}]},{"x":26.277,"y":39.472,"w":6.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"In U.S. dollars ","S":2,"TS":[0,10,0,0]}]},{"x":21.018,"y":40.219,"w":13.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxes withheld at source on: ","S":2,"TS":[0,10,0,0]}]},{"x":19.833,"y":41.347,"w":1.555,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(o) ","S":8,"TS":[0,10,1,0]}]},{"x":20.481,"y":41.347,"w":4.705,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Dividends ","S":2,"TS":[0,10,0,0]}]},{"x":23.223,"y":41.097,"w":1.555,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(p) ","S":-1,"TS":[0,9.5,1,0]}]},{"x":23.824,"y":41.097,"w":2.593,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Rents","S":-1,"TS":[0,9.5,0,0]}]},{"x":24.878,"y":41.097,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.5,0,0]}]},{"x":22.892,"y":41.584,"w":5.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and royalties ","S":-1,"TS":[0,9.5,0,0]}]},{"x":25.768,"y":41.34,"w":1.555,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(q) ","S":-1,"TS":[0,9.5,1,0]}]},{"x":26.37,"y":41.34,"w":3.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Interest ","S":-1,"TS":[0,9.5,0,0]}]},{"x":28.853,"y":40.185,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(r) ","S":8,"TS":[0,10,1,0]}]},{"x":29.403,"y":40.185,"w":2.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other ","S":2,"TS":[0,10,0,0]}]},{"x":30.619,"y":40.185,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":28.412,"y":40.71,"w":6.055,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"foreign taxes ","S":2,"TS":[0,10,0,0]}]},{"x":31.061,"y":40.71,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":28.99,"y":41.235,"w":3.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"paid or ","S":2,"TS":[0,10,0,0]}]},{"x":30.481,"y":41.235,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":28.881,"y":41.76,"w":3.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"accrued ","S":2,"TS":[0,10,0,0]}]},{"x":31.969,"y":40.185,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(s) ","S":8,"TS":[0,10,1,0]}]},{"x":32.585,"y":40.185,"w":5.592,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total foreign","S":2,"TS":[0,10,0,0]}]},{"x":35.031,"y":40.185,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":32.228,"y":40.71,"w":6.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"taxes paid or ","S":2,"TS":[0,10,0,0]}]},{"x":31.689,"y":41.235,"w":8.557,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"accrued (add cols. ","S":2,"TS":[0,10,0,0]}]},{"x":32.139,"y":41.76,"w":6.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(o) through (r)) ","S":2,"TS":[0,10,0,0]}]},{"x":2.089,"y":41.725,"w":0.556,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.989,"y":41.719,"w":0.556,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":8.389,"y":41.719,"w":0.556,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":11.089,"y":41.719,"w":0.556,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":14.239,"y":41.719,"w":0.556,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":16.939,"y":41.719,"w":0.556,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":19.639,"y":41.719,"w":0.556,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":22.789,"y":41.719,"w":0.556,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":25.489,"y":41.719,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":28.189,"y":41.719,"w":0.556,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":31.339,"y":41.719,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2.268,"y":42.572,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A ","S":-1,"TS":[0,11.5,1,0]}]},{"x":2.263,"y":43.321,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B ","S":-1,"TS":[0,11.5,1,0]}]},{"x":2.253,"y":44.071,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"C ","S":-1,"TS":[0,11.5,1,0]}]},{"x":2.605,"y":44.785,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":44.848,"w":35.952,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Add lines A through C, column (s). Enter the total here and on line 9, page 2","S":-1,"TS":[0,11.5,1,0]}]},{"x":22.25,"y":44.848,"w":14.12,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ........ ","S":-1,"TS":[0,11.5,0,0]}]},{"x":29.021,"y":44.754,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"x":30.427,"y":44.848,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":-1,"TS":[0,11.5,1,0]}]},{"x":2,"y":45.607,"w":26.173,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see instructions. ","S":-1,"TS":[0,11,1,0]}]},{"x":23.763,"y":45.625,"w":7.762,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11440U ","S":2,"TS":[0,10,0,0]}]},{"x":31.896,"y":45.571,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":33.039,"y":45.571,"w":2.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1116","S":10,"TS":[0,14,1,0]}]},{"x":34.429,"y":45.571,"w":3.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":6.561,"w":63.919,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Use a separate Form 1116 for each category of income listed below. See Categories of Income in the instructions. Check only one box on each ","S":-1,"TS":[0,11,0,0]}]},{"x":8.678,"y":4.205,"w":41.123,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Information about Form 1116 and its separate instructions is at www.irs.gov/form1116","S":-1,"TS":[0,11,1,0]}]},{"x":1.9889999999999999,"y":22.357,"w":22.676,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Deductions and losses Caution: (See instructions): ","S":-1,"TS":[0,11,0,0]}]},{"x":3.7889999999999997,"y":23.161,"w":21.455,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Expenses definitely related to the income on line","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.7889999999999997,"y":24.661,"w":21.289,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Pro rata share of other deductions not definitely ","S":-1,"TS":[0,11.5,0,0]}]},{"x":23.85,"y":4.995,"w":25.847,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Identifying number as shown on page 1 of your tax return ","S":2,"TS":[0,10,0,0]}]},{"x":3.594,"y":11.038,"w":56.378,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you paid taxes to only one foreign country or U.S. possession, use column A in Part I and line A in Part II. If you paid taxes to ","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":11.713,"w":50.635,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"more than oneforeign country or U.S. possession, use a separate column and line for each country or possession. ","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"COPY","EN":0},"TI":1613,"AM":0,"x":24.937,"y":3.831,"w":5.555,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1614,"AM":1024,"TU":"Name","x":2.25,"y":5.875,"w":21.344,"h":0.875},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1615,"AM":1024,"TU":"Identifying number as shown on page 1 of your tax return.","x":24.363,"y":5.87,"w":11.637,"h":0.88},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RESI","EN":0},"TI":1621,"AM":0,"TU":"Line f. Resident of (name of country).","x":10.934,"y":10.5,"w":25.066,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A234_LJ_1_","EN":0},"TI":1622,"AM":0,"TU":"Line gA. Enter name of the foreign country or U.S. possession.","x":16.65,"y":15,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A234_LJ_2_","EN":0},"TI":1623,"AM":0,"TU":"Line gB. Enter name of the foreign country or U.S. possession.","x":21.151,"y":15.006,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A234_LJ_3_","EN":0},"TI":1624,"AM":0,"TU":"Line gC. Enter name of the foreign country or U.S. possession.","x":25.663,"y":14.972,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L1T","EN":0},"TI":1625,"AM":0,"x":7.639,"y":17.246,"w":8.55,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A247_L1TT_1_","EN":0},"TI":1626,"AM":0,"x":4.039,"y":17.996,"w":12.15,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A247_L1TT_2_","EN":0},"TI":1627,"AM":0,"x":3.998,"y":18.777,"w":12.15,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A235_L1_1_","EN":0},"TI":1628,"AM":0,"TU":"Line g1aA. Gross income from sources within country shown above and of the type checked above (see instructions).","x":16.65,"y":18.746,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A235_L1_2_","EN":0},"TI":1629,"AM":0,"TU":"Line g1aB. Gross income from sources within country shown above and of the type checked above (see instructions).","x":21.151,"y":18.753,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A235_L1_3_","EN":0},"TI":1630,"AM":0,"TU":"Line g1aC. Gross income from sources within country shown above and of the type checked above (see instructions). ","x":25.663,"y":18.765,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1T3","EN":0},"TI":1631,"AM":1024,"TU":"Line 1a Total. Dollars.","x":31.5,"y":18.746,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A236_L2_1_","EN":0},"TI":1633,"AM":0,"TU":"Line 2A. Expenses definitely related to the income on line 1a (attach statement). ","x":16.65,"y":24,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A236_L2_2_","EN":0},"TI":1634,"AM":0,"TU":"Line 2B. Expenses definitely related to the income on line 1a (attach statement). ","x":21.151,"y":24.006,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A236_L2_3_","EN":0},"TI":1635,"AM":0,"TU":"Line 2C. Expenses definitely related to the income on line 1a (attach statement).","x":25.663,"y":24.018,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A237_L3A_1_","EN":0},"TI":1636,"AM":0,"TU":"Line 3aA. Certain itemized deductions or standard deduction (see instructions). ","x":16.697,"y":27.039,"w":4.407,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A237_L3A_2_","EN":0},"TI":1637,"AM":0,"TU":"Line 3aB. Certain itemized deductions or standard deduction (see instructions). ","x":21.244,"y":27.069,"w":4.407,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A237_L3A_3_","EN":0},"TI":1638,"AM":0,"TU":"Line 3aC. Certain itemized deductions or standard deduction (see instructions). ","x":25.733,"y":27.058,"w":4.43,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A238_L3B_1_","EN":0},"TI":1639,"AM":0,"TU":"Line 3bA. Other deductions (attach statement). ","x":16.65,"y":27.812,"w":4.43,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A238_L3B_2_","EN":0},"TI":1640,"AM":0,"TU":"Line 3bB. Other deductions (attach statement). ","x":21.221,"y":27.819,"w":4.43,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A238_L3B_3_","EN":0},"TI":1641,"AM":0,"TU":"Line 3bC. Other deductions (attach statement).","x":25.71,"y":27.784,"w":4.453,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A239_L3C_1_","EN":0},"TI":1642,"AM":1024,"TU":"Line 3cA. Add lines 3a and 3b. ","x":16.65,"y":28.563,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A239_L3C_2_","EN":0},"TI":1643,"AM":1024,"TU":"Line 3cB. Add lines 3a and 3b. ","x":21.244,"y":28.569,"w":4.407,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A239_L3C_3_","EN":0},"TI":1644,"AM":1024,"TU":"Line 3cC. Add lines 3a and 3b.","x":25.733,"y":28.534,"w":4.43,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A240_L3D_1_","EN":0},"TI":1645,"AM":0,"TU":"Line 3dA. Gross foreign source income (see instructions).","x":16.62,"y":29.252,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A240_L3D_2_","EN":0},"TI":1646,"AM":0,"TU":"Line 3dB. Gross foreign source income (see instructions). Dollars. Gross foreign source income (see instructions).","x":21.215,"y":29.258,"w":4.43,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A240_L3D_3_","EN":0},"TI":1647,"AM":0,"TU":"Line 3dC. Gross foreign source income (see instructions).","x":25.75,"y":29.224,"w":4.407,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3E_1_","EN":0},"TI":1648,"AM":0,"TU":"Line 3eA. Gross income from all sources (see instructions). ","x":16.644,"y":30.002,"w":4.477,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3E_2_","EN":0},"TI":1649,"AM":0,"TU":"Line 3eB. Gross income from all sources (see instructions).","x":21.238,"y":30.008,"w":4.407,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3E_3_","EN":0},"TI":1650,"AM":0,"TU":"Line 3eC. Gross income from all sources (see instructions). ","x":25.727,"y":29.974,"w":4.43,"h":0.833},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"A241_L3F_1_","EN":0},"TI":1651,"AM":1024,"TU":"Line 3fA. Divide line 3d by 3f. ","x":16.667,"y":30.775,"w":4.453,"h":0.833},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"A241_L3F_2_","EN":0},"TI":1652,"AM":1024,"TU":"Line 3fB. Divide line 3d by 3f. ","x":21.191,"y":30.805,"w":4.453,"h":0.833},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"A241_L3F_3_","EN":0},"TI":1653,"AM":1024,"TU":"Line 3fC. Divide line 3d by 3f. ","x":25.75,"y":30.724,"w":4.407,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A242_L3G_1_","EN":0},"TI":1654,"AM":1024,"TU":"Line 3gA. Multiply line 3c by 3f.","x":16.667,"y":31.464,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A242_L3G_2_","EN":0},"TI":1655,"AM":1024,"TU":"Line 3gB. Multiply line 3c by 3f.","x":21.215,"y":31.517,"w":4.383,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A242_L3G_3_","EN":0},"TI":1656,"AM":1024,"TU":"Line 3gC. Multiply line 3c by 3f.","x":25.727,"y":31.482,"w":4.383,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A243_L4A_1_","EN":0},"TI":1657,"AM":0,"TU":"Line 4aA. Home mortgage interest (use the Worksheet fro the Home Mortgage Interest in the instructions)","x":16.62,"y":33.77,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A243_L4A_2_","EN":0},"TI":1658,"AM":0,"TU":"Line 4aB. Home mortgage interest (use the Worksheet fro the Home Mortgage Interest in the instructions)","x":21.121,"y":33.777,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A243_L4A_3_","EN":0},"TI":1659,"AM":0,"TU":"Line 4aC. Home mortgage interest (use the Worksheet fro the Home Mortgage Interest in the instructions)","x":25.633,"y":33.742,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A244_L4B_1_","EN":0},"TI":1660,"AM":0,"TU":"Line 4bA. Other interest expense.","x":16.641,"y":34.487,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A244_L4B_2_","EN":0},"TI":1661,"AM":0,"TU":"Line 4bB. Other interest expense.","x":21.142,"y":34.493,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A244_L4B_3_","EN":0},"TI":1662,"AM":0,"TU":"Line 4bC. Other interest expense.","x":25.654,"y":34.459,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A246_L5_1_","EN":0},"TI":1663,"AM":0,"TU":"Line 5A. Losses from foreign sources.","x":16.641,"y":35.279,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A246_L5_2_","EN":0},"TI":1664,"AM":0,"TU":"Line 5B. Losses from foreign sources.","x":21.142,"y":35.285,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A246_L5_3_","EN":0},"TI":1665,"AM":0,"TU":"Line 5C. Losses from foreign sources.","x":25.654,"y":35.251,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A245_L6_1_","EN":0},"TI":1666,"AM":1024,"TU":"Line 6A. Add lines 2, 3g, 4a, 4b, and 5.","x":16.641,"y":35.991,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A245_L6_2_","EN":0},"TI":1667,"AM":1024,"TU":"Line 6B. Add lines 2, 3g, 4a, 4b, and 5.","x":21.142,"y":35.974,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A245_L6_3_","EN":0},"TI":1668,"AM":1024,"TU":"Line 6C. Add lines 2, 3g, 4a, 4b, and 5.","x":25.654,"y":35.963,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6ET","EN":0},"TI":1669,"AM":1024,"TU":"Line 6. Add lines 2, 3g, 4a, 4b and 5. Dollars.","x":31.5,"y":35.996,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":1670,"AM":1024,"TU":"Line 7, Subtract line 6 from line 1a. Enter the result here and on line 15, page 2. Dollars.","x":31.5,"y":36.75,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A248_DATE_1_","EN":0},"TI":1673,"AM":0,"TU":"Line A(j). Date paid or accrued.","x":3.15,"y":42.724,"w":5.4,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A249_N_1_","EN":0},"TI":1674,"AM":0,"TU":"Line A(k). Dividends. Foreign currency.","x":8.55,"y":42.724,"w":2.7,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A250_O_1_","EN":0},"TI":1675,"AM":0,"TU":"Line A(l). Rents and royalties. Foreign currency.","x":11.25,"y":42.724,"w":3.15,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A251_P_1_","EN":0},"TI":1676,"AM":0,"TU":"Line A(m). Interest. Foreign currency.","x":14.4,"y":42.724,"w":2.7,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A252_Q_1_","EN":0},"TI":1677,"AM":0,"TU":"Line A(n). Other foreign taxes paid or accrued. Foreign currency.","x":17.108,"y":42.721,"w":2.7,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A253_R_1_","EN":0},"TI":1678,"AM":0,"TU":"Line A(o). Taxes withheld at source on Dividends. Dollars.","x":19.822,"y":42.724,"w":3.081,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A254_S_1_","EN":0},"TI":1679,"AM":0,"TU":"Line A(p). Taxes withheld at source on Rents and royalties. Dollars.","x":22.985,"y":42.696,"w":2.687,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A255_INTEREST_1_","EN":0},"TI":1680,"AM":0,"TU":"Line A(q). Taxes withheld at source on Interest. Dollars.","x":25.672,"y":42.696,"w":2.7,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A256_U_1_","EN":0},"TI":1681,"AM":0,"TU":"Line A(r). Other foreign taxes paid or accrued. Dollars.","x":28.372,"y":42.696,"w":3.108,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A257_V_1_","EN":0},"TI":1682,"AM":1024,"TU":"Line A(s). Total foreign taxes paid or accrued (add cols. (o) through (r). Dollars.","x":31.535,"y":42.724,"w":4.457,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A248_DATE_2_","EN":0},"TI":1683,"AM":0,"TU":"Line B(j). Date paid or accrued.","x":3.161,"y":43.47,"w":5.4,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A249_N_2_","EN":0},"TI":1684,"AM":0,"TU":"Line B(k). Dividends. Foreign currency.","x":8.561,"y":43.47,"w":2.7,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A250_O_2_","EN":0},"TI":1685,"AM":0,"TU":"Line B(l). Rents and royalties. Foreign currency.","x":11.261,"y":43.47,"w":3.15,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A251_P_2_","EN":0},"TI":1686,"AM":0,"TU":"Line B(m). Interest. Foreign currency.","x":14.411,"y":43.47,"w":2.7,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A252_Q_2_","EN":0},"TI":1687,"AM":0,"TU":"Line B(n). Other foreign taxes paid or accrued. Foreign currency","x":17.12,"y":43.468,"w":2.7,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A253_R_2_","EN":0},"TI":1688,"AM":0,"TU":"Line B(o). Taxes withheld at source on Dividends. Dollars","x":19.834,"y":43.517,"w":3.081,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A254_S_2_","EN":0},"TI":1689,"AM":0,"TU":"Line B(p). Taxes withheld at source on Rents and royalties. Dollars","x":22.997,"y":43.443,"w":2.687,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A255_INTEREST_2_","EN":0},"TI":1690,"AM":0,"TU":"Line B(q). Taxes withheld at source on Interest. Dollars.","x":25.684,"y":43.443,"w":2.7,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A256_U_2_","EN":0},"TI":1691,"AM":0,"TU":"Line B(r). Other foreign taxes paid or accrued. Dollars","x":28.384,"y":43.443,"w":3.108,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A257_V_2_","EN":0},"TI":1692,"AM":1024,"TU":"Line B(s). Total foreign taxes paid or accrued (add cols. (o) through (r). Dollar","x":31.547,"y":43.47,"w":4.457,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A248_DATE_3_","EN":0},"TI":1693,"AM":0,"TU":"Line C(j). Date paid or accrued.","x":3.146,"y":44.225,"w":5.4,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A249_N_3_","EN":0},"TI":1694,"AM":0,"TU":"Line C(k). Dividends. Foreign currency.","x":8.546,"y":44.225,"w":2.7,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A250_O_3_","EN":0},"TI":1695,"AM":0,"TU":"Line C(l). Rents and royalties. Foreign currency.","x":11.246,"y":44.225,"w":3.15,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A251_P_3_","EN":0},"TI":1696,"AM":0,"TU":"Line C(m). Interest. Foreign currency.","x":14.396,"y":44.248,"w":2.7,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A252_Q_3_","EN":0},"TI":1697,"AM":0,"TU":"Line C(n). Other foreign taxes paid or accrued. Foreign currency","x":17.104,"y":44.223,"w":2.7,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A253_R_3_","EN":0},"TI":1698,"AM":0,"TU":"Line C(o). Taxes withheld at source on Dividends. Dollars","x":19.819,"y":44.225,"w":3.081,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A254_S_3_","EN":0},"TI":1699,"AM":0,"TU":"Line C(p). Taxes withheld at source on Rents and royalties. Dollars","x":22.981,"y":44.198,"w":2.687,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A255_INTEREST_3_","EN":0},"TI":1700,"AM":0,"TU":"Line C(q). Taxes withheld at source on Interest. Dollars.","x":25.669,"y":44.198,"w":2.7,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A256_U_3_","EN":0},"TI":1701,"AM":0,"TU":"Line C(r). Other foreign taxes paid or accrued. Dollars","x":28.369,"y":44.198,"w":3.108,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A257_V_3_","EN":0},"TI":1702,"AM":1024,"TU":"Line C(s). Total foreign taxes paid or accrued (add cols. (o) through (r). Dollar","x":31.531,"y":44.202,"w":4.457,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8T","EN":0},"TI":1703,"AM":1024,"TU":"Line 8. Add lines A through C, column (s). Enter the total here and on line 9, page 2. Dollars.","x":31.5,"y":45,"w":4.5,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOX1","EN":0},"TI":1616,"AM":0,"TU":"Checkboxes. Categories of Income.","x":2.641,"y":8.287,"w":0.635,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOX10","EN":0},"TI":1617,"AM":0,"TU":"Checkboxes. Categories of Income.","x":12.56,"y":8.256,"w":0.635,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOX7","EN":0},"TI":1618,"AM":0,"TU":"Checkboxes. Categories of Income.","x":23.796,"y":8.276,"w":0.635,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOX8","EN":0},"TI":1619,"AM":0,"TU":"Checkboxes. Categories of Income.","x":2.635,"y":9.058,"w":0.635,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOX11","EN":0},"TI":1620,"AM":0,"TU":"Checkboxes. Categories of Income.","x":12.573,"y":9.051,"w":0.635,"h":0.833,"checked":false}],"id":{"Id":"BOXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"COMPNX","EN":0},"TI":1632,"AM":0,"TU":"Line gb. Check if line 1a is compensation for personal services as an employee, your total compensation from all sources is $250,000 or more, and you used an altnerative basis to determine its source (see instructions).","x":15.689,"y":21.738,"w":0.5,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CBXP","EN":0},"TI":1671,"AM":0,"TU":"Checkboxes. Credit is claimed for taxes.","x":5.019,"y":39.632,"w":0.635,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CBXA","EN":0},"TI":1672,"AM":0,"TU":"Checkboxes. Credit is claimed for taxes.","x":4.991,"y":40.394,"w":0.635,"h":0.833,"checked":false}],"id":{"Id":"CBXRB","EN":0}}]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":3,"w":1.5,"l":4.081,"oc":"#221f1f"},{"x":6.284,"y":3,"w":1.5,"l":29.731,"oc":"#221f1f"},{"x":2.234,"y":3.75,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":20.684,"y":5.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":5.25,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":28.334,"y":3.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":20.684,"y":6.75,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":6.75,"w":1.125,"l":6.331,"oc":"#221f1f"},{"x":20.684,"y":8.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":8.25,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":20.684,"y":9.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":9.75,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":20.684,"y":11.25,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":11.25,"w":1.125,"l":6.331,"oc":"#221f1f"},{"x":28.334,"y":12.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":12.75,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":20.684,"y":15,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":15,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":28.334,"y":12.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":20.684,"y":15.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":15.75,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":20.684,"y":19.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":19.5,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":20.684,"y":21.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":21.75,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":28.334,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":24,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":28.334,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":26.25,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":28.334,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":28.5,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":28.334,"y":30.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":30.75,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":2.234,"y":30.75,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":31.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":20.684,"y":32.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":32.25,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":28.334,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":20.684,"y":33,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":33,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":20.684,"y":33.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":33.75,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":20.684,"y":34.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":34.5,"w":1.125,"l":6.331,"oc":"#221f1f"},{"x":28.334,"y":35.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":35.25,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":28.334,"y":36,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":36,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":28.334,"y":36.75,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":29.696,"y":36.751,"w":1.125,"l":6.319,"oc":"#221f1f"},{"x":28.334,"y":38.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.696,"y":38.25,"w":0.75,"l":6.319,"oc":"#221f1f"},{"x":2.234,"y":38.25,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":22.05,"y":3.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":20.7,"y":3.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.7,"y":3.734,"w":0.75,"l":7.531,"oc":"#221f1f"},{"x":28.35,"y":3.734,"w":0.75,"l":7.531,"oc":"#221f1f"},{"x":22.05,"y":5.234,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":20.7,"y":5.234,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":22.05,"y":6.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":20.7,"y":6.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.05,"y":8.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":20.7,"y":8.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.05,"y":9.734,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":20.7,"y":9.734,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":29.7,"y":11.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.35,"y":11.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.05,"y":12.734,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":20.7,"y":12.734,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.7,"y":12.734,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":28.35,"y":12.734,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":20.7,"y":14.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":14.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":15.735,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":20.7,"y":15.735,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":22.05,"y":19.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":20.7,"y":19.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.7,"y":21.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.35,"y":21.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.7,"y":23.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.35,"y":23.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.7,"y":26.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.35,"y":26.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.7,"y":28.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.35,"y":28.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":20.7,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":31.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":28.35,"y":31.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":20.7,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":20.7,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":20.7,"y":33.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":22.05,"y":33.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.35,"y":34.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":34.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":35.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":35.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":35.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.35,"y":35.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.7,"y":36.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.35,"y":36.735,"w":0.75,"l":1.531,"oc":"#221f1f"}],"Fills":[{"x":2.25,"y":3,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":28.35,"y":3.75,"w":1.35,"h":7.5,"oc":"#bebfc1"},{"x":28.35,"y":12.75,"w":1.35,"h":9,"oc":"#bebfc1"},{"x":2.25,"y":30.75,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":28.35,"y":31.5,"w":1.35,"h":3,"oc":"#bebfc1"}],"Texts":[{"x":2,"y":1.972,"w":8.134,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1116 (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":34.155,"y":2.009,"w":2.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":2.009,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.142,"y":2.821,"w":3.423,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III ","S":-1,"TS":[0,13,0,0]}]},{"x":4.625,"y":2.821,"w":9.184,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Figuring the Credit ","S":-1,"TS":[0,13,0,0]}]},{"x":2.605,"y":3.6609999999999996,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":4.348,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":3.6609999999999996,"w":30.673,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount from line 8. These are your total foreign taxes paid ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.798,"y":4.348,"w":26.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or accrued for the category of income checked above Part I ","S":-1,"TS":[0,11.5,0,0]}]},{"x":18.499,"y":4.348,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":19.249,"y":4.348,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":20.977,"y":4.348,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":5.848,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":5.848,"w":23.873,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Carryback or carryover (attach detailed computation) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":17,"y":5.848,"w":5.648,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11.5,0,0]}]},{"x":20.83,"y":5.848,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":7.348000000000001,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":7.348000000000001,"w":8.615,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 9 and 10 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":8.75,"y":7.348000000000001,"w":21.18,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,11.5,0,0]}]},{"x":20.83,"y":7.348000000000001,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":8.848,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":8.848,"w":19.798,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Reduction in foreign taxes (see instructions) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":14.75,"y":8.848,"w":9.884,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"x":19.749,"y":8.848,"w":1.412,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":20.83,"y":8.848,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":21.8,"y":8.848,"w":11.916,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ( ) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":10.348,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":10.348,"w":26.299,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxes reclassified under high tax kickout (see instructions) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":18.501,"y":10.348,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":19.251,"y":10.348,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":20.83,"y":10.348,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":11.848,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":11.848,"w":40.028,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine lines 11, 12, and 13. This is the total amount of foreign taxes available for credit ","S":-1,"TS":[0,11.5,0,0]}]},{"x":25.25,"y":11.848,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":26,"y":11.848,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":26.751,"y":11.848,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":28.48,"y":11.848,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":12.723,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":13.411,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":14.098,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":12.723,"w":31.822,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount from line 7. This is your taxable income or (loss) from ","S":-1,"TS":[0,11.075,0,0]}]},{"x":3.8019999999999996,"y":13.411,"w":32.209,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"sources outside the United States (before adjustments) for the category ","S":-1,"TS":[0,11.075,0,0]}]},{"x":3.8040000000000003,"y":14.098,"w":22.3,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of income checked above Part I (see instructions) ","S":-1,"TS":[0,11.075,0,0]}]},{"x":15.5,"y":14.098,"w":8.646,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11.33,0,0]}]},{"x":20.83,"y":14.098,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":14.848,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":14.848,"w":18.079,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Adjustments to line 15 (see instructions) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":14,"y":14.848,"w":11.296,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.5,0,0]}]},{"x":20.83,"y":14.848,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":15.847999999999999,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":16.536,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":17.223,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":17.91,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":18.598,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":15.847999999999999,"w":29.362,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine the amounts on lines 15 and 16. This is your net foreign ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8019999999999996,"y":16.536,"w":28.632,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"source taxable income. (If the result is zero or less, you have no ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.7990000000000004,"y":17.223,"w":28.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"foreign tax credit for the category of income you checked above ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.7990000000000004,"y":17.91,"w":30.672,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Part I. Skip lines 18 through 22. However, if you are filing more than ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.798,"y":18.598,"w":20.213,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"one Form 1116, you must complete line 20.) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":14.748,"y":18.598,"w":9.884,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"x":20.83,"y":18.598,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":19.473,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":20.161,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":20.848,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":6.598,"y":20.848,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":14.003,"y":20.848,"w":11.296,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.5,0,0]}]},{"x":20.83,"y":20.848,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8019999999999996,"y":22.348,"w":5.704,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions. ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.311,"y":23.098,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8019999999999996,"y":23.098,"w":28.695,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Divide line 17 by line 18. If line 17 is more than line 18, enter “1” ","S":-1,"TS":[0,11.5,0,0]}]},{"x":19.252,"y":23.098,"w":15.532,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11.5,0,0]}]},{"x":28.48,"y":23.098,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.7960000000000003,"y":25.254,"w":28.083,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule G, line 1a, or the total of Form 990-T, lines 36 and 37","S":-1,"TS":[0,11.5,0,0]}]},{"x":19.246,"y":25.254,"w":15.532,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":-1,"TS":[0,11.5,0,0]}]},{"x":28.48,"y":25.348,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8019999999999996,"y":26.848,"w":5.613,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"instructions. ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.311,"y":27.598,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8019999999999996,"y":27.598,"w":24.38,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 20 by line 19 (maximum amount of credit) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":17.002,"y":27.598,"w":19.768,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11.5,0,0]}]},{"x":28.48,"y":27.598,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":28.473,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":29.161,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.9,"y":29.848,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.7960000000000003,"y":29.067,"w":44.975,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"through 27 and enter this amount on line 28. Otherwise, complete the appropriate line in Part IV (see ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.7990000000000004,"y":29.755,"w":5.723,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions) ","S":-1,"TS":[0,11.5,0,0]}]},{"x":7.249,"y":29.755,"w":38.124,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........................","S":-1,"TS":[0,11.5,0,0]}]},{"x":26.942,"y":29.755,"w":1.412,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":27.087,"y":29.661,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"x":28.48,"y":29.848,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.13,"y":30.572,"w":3.463,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part IV ","S":-1,"TS":[0,13,0,0]}]},{"x":4.625,"y":30.572,"w":21.088,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Summary of Credits From Separate Parts III ","S":-1,"TS":[0,13,0,0]}]},{"x":17.805,"y":30.572,"w":7.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions) ","S":-1,"TS":[0,13,0,0]}]},{"x":2.309,"y":31.348,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":31.348,"w":19.983,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Credit for taxes on passive category income ","S":-1,"TS":[0,11.5,0,0]}]},{"x":14.75,"y":31.348,"w":9.884,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"x":20.83,"y":31.348,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":32.098,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"24 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":32.098,"w":19.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Credit for taxes on general category income ","S":-1,"TS":[0,11.5,0,0]}]},{"x":14.75,"y":32.098,"w":9.884,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11.5,0,0]}]},{"x":20.83,"y":32.098,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"24 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":32.848,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":32.85,"w":24.799,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Credit for taxes on certain income re-sourced by treaty ","S":-1,"TS":[0,11.4,0,0]}]},{"x":17,"y":32.85,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.4,0,0]}]},{"x":17.75,"y":32.85,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.4,0,0]}]},{"x":18.501,"y":32.85,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.4,0,0]}]},{"x":19.251,"y":32.85,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.4,0,0]}]},{"x":20.83,"y":32.848,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":33.598,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"26 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":33.598,"w":19.153,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Credit for taxes on lump-sum distributions ","S":-1,"TS":[0,11.5,0,0]}]},{"x":14,"y":33.598,"w":11.296,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.5,0,0]}]},{"x":20.83,"y":33.598,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"26 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":34.348,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"27 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":34.348,"w":10.949,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 23 through 26 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":10.25,"y":34.348,"w":32.476,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,11.5,0,0]}]},{"x":28.48,"y":34.348,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"27 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":35.098,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"28 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":13.25,"y":35.098,"w":26.828,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":-1,"TS":[0,11.5,0,0]}]},{"x":28.48,"y":35.098,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"28 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":35.848,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"29 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":35.848,"w":37.19,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Reduction of credit for international boycott operations. See instructions for line 12 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":23.75,"y":35.848,"w":7.06,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.5,0,0]}]},{"x":28.48,"y":35.848,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"29 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":36.63,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8040000000000003,"y":37.348,"w":35.643,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040NR, line 45; Form 1041, Schedule G, line 2a; or Form 990-T, line 40a ","S":-1,"TS":[0,11.5,0,0]}]},{"x":23.005,"y":37.348,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.5,0,0]}]},{"x":23.754,"y":37.348,"w":7.06,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.5,0,0]}]},{"x":26.944,"y":37.348,"w":1.412,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.5,0,0]}]},{"x":27.087,"y":37.255,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.5,0,0]}]},{"x":28.48,"y":37.348,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11.5,0,0]}]},{"x":31.896,"y":38.071,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":33.039,"y":38.071,"w":2.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1116","S":-1,"TS":[0,13,0,0]}]},{"x":34.429,"y":38.071,"w":3.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":3.8,"y":28.38,"w":41.407,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Enter the smaller of line 14 or line 21. If this is the only Form 1116 you are filing, skip lines 23 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":26.161,"w":40.461,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Caution: If you are completing line 20 for separate category e (lump-sum distributions), see ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.798,"y":24.567,"w":40.406,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"amount from Form 1040NR, line 42. Estates and trusts: Enter the amount from Form 1041, ","S":-1,"TS":[0,11.5,0,0]}]},{"x":2.309,"y":23.879,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":23.879,"w":42.077,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Individuals: Enter the amount from Form 1040, line 44. If you are a nonresident alien, enter the ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":21.661,"w":42.465,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Caution: If you figured your tax using the lower rates on qualified dividends or capital gains, see ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8019999999999996,"y":20.161,"w":28.18,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1040NR, line 39. Estates and trusts: Enter your taxable income ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":19.473,"w":28.178,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Individuals: Enter the amount from Form 1040, line 41, or Form ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":36.661,"w":43.52,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Subtract line 29 from line 28. This is your foreign tax credit. Enter here and on Form 1040, line 47; ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.8,"y":35.098,"w":16.563,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Enter the smaller of line 20 or line 27 ","S":-1,"TS":[0,11.5,0,0]}]},{"x":3.803,"y":20.848,"w":18.726,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"without the deduction for your exemption ","S":-1,"TS":[0,11.5,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":2466,"AM":1024,"x":5.848,"y":2.157,"w":18.141,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2467,"AM":1024,"x":30.514,"y":2.13,"w":3.794,"h":0.858},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":2468,"AM":1024,"TU":"Line 9. Enter the amount from line 8. These are your total foreign taxes paid or accrued for the catagory of income checked above Part I. Dollars.","x":22.05,"y":4.5,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":2469,"AM":0,"TU":"Line 10. Carryback or carryover (attach detailed computation). Dollars.","x":22.087,"y":5.996,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":2470,"AM":1024,"TU":"Line 11. Add lines 9 and 10. Dollars.","x":22.069,"y":7.507,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":2471,"AM":0,"TU":"Line 12. Reduction in foreign taxes (see instructions). Dollars.","x":22.572,"y":8.98,"w":5.228,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RECLASS","EN":0},"TI":2472,"AM":0,"TU":"Line 13. Taxes reclassified under high tax kickout (see instructions). Dollars.","x":22.054,"y":10.487,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":2473,"AM":1024,"TU":"Line 14. Combine lines 11, 12 and 13. This is the total amount of foreign taxes available for credit.. Dollars.","x":29.697,"y":11.978,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":2474,"AM":1024,"TU":"Line 15. Enter the amount from line 7. This is your taxable income or (loss) from sources outside the United States (before adjustments) for the catagory of income checked above Part I (see instructions). Dollars.","x":22.091,"y":14.243,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":2475,"AM":0,"TU":"Line 16. Adjustments to line 15 (see instructions). Dollars.","x":22.056,"y":15.025,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":2476,"AM":1024,"TU":"Line 17. Combine amounts on lines 15 and 16. This is your net foreign source taxable income. (If the result is zero or less, you have no foreign tax credit for the catagory of income you checked above Part I. Skip lines 18 through 22. However, if you are filing more than on Form 1116, you must complete line 20). Dollars.","x":22.034,"y":18.785,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":2477,"AM":0,"TU":"Line 18. Individuals: Enter the amount from Form 1040, line 41 or Form 1040NR, line 39. Dollars.","x":22.071,"y":21.015,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":2478,"AM":1024,"TU":"Line 19. Divide line 17 by line 18. If line 17 is more than line 18, enter \"1\".","x":29.691,"y":23.298,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":2479,"AM":0,"TU":"Line 20. Individuals: Enter the amount from Form 1040, line 44. If you are a nonresident alien, enter the amount from Form 1040NR, line 42.","x":29.728,"y":25.528,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":2480,"AM":1024,"TU":"Line 21. Multiply line 20 by line 19 (maximum amount of credit).","x":29.711,"y":27.728,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":2481,"AM":0,"TU":"Line 22. Enter the smaller of line 14 or line 21. If this is the only Form 1116 you are filing, skip lines 23 through 27 and enter this amount on line 28. Otherwise, complete the appropriate line in Part IV (see instructions)","x":29.748,"y":29.959,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":2482,"AM":0,"TU":"Line 23. Credit for taxes on passive catagory income. Dollars.","x":22.077,"y":31.536,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":2483,"AM":0,"TU":"Line 24. Credit for taxes on general catagory income. Dollars.","x":22.043,"y":32.318,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":2484,"AM":0,"TU":"Line 25. Credit for taxes on certain income re-sourced by treaty. Dollars.","x":22.043,"y":33.053,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":2485,"AM":0,"TU":"Line 26. Credit for taxes on lump-sum distributions. Dollars.","x":22.008,"y":33.835,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":2486,"AM":1024,"TU":"Line 27. Add lines 23 through 26. Dollars.","x":29.74,"y":34.461,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31SUB","EN":0},"TI":2487,"AM":1024,"TU":"Line 28. Enter the smaller of line 20 or line 27. Dollars.","x":29.705,"y":35.244,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":2488,"AM":0,"TU":"Line 29. Reduction of credit for international boycott operations. See instructions for line 12. ","x":29.733,"y":35.979,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":2489,"AM":1024,"TU":"Line 30. Subtract line 29 from line 28. This is your foreign tax credit. Enter here and on Form 1040, line 47; Form 1040NR, line 45. Dollars.","x":29.698,"y":37.469,"w":6.3,"h":0.833}],"Boxsets":[]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F1310.json b/test/data/fd/form/F1310.json index 3c78ad5e..b1f9327e 100755 --- a/test/data/fd/form/F1310.json +++ b/test/data/fd/form/F1310.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.501,"HLines":[{"oc":"#2b2e34","x":88.411,"y":25.077,"w":0.747,"l":9.986},{"oc":"#2b2e34","x":88.411,"y":23.575,"w":0.747,"l":9.986},{"oc":"#2b2e34","x":21.634,"y":-6.593,"w":0.747,"l":47.316},{"oc":"#2b2e34","x":21.651,"y":-5.84,"w":0.747,"l":47.299},{"oc":"#2b2e34","x":8.045,"y":-6.967,"w":0.747,"l":11.952},{"oc":"#2b2e34","x":18.683,"y":-8.467,"w":0.747,"l":1.712},{"oc":"#2b2e34","x":18.683,"y":-9.089,"w":0.747,"l":1.712},{"oc":"#2b2e34","x":70.446,"y":-9.217,"w":0.747,"l":27.911},{"oc":"#2b2e34","x":70.446,"y":-5.84,"w":0.747,"l":27.911},{"oc":"#2b2e34","x":70.446,"y":-7.717,"w":0.747,"l":27.911},{"oc":"#2b2e34","x":70.446,"y":-10.34,"w":0.747,"l":27.911},{"oc":"#2b2e34","x":21.634,"y":-10.34,"w":0.747,"l":47.316},{"oc":"#2b2e34","x":21.651,"y":-9.586,"w":0.747,"l":47.299},{"oc":"#2b2e34","x":84.743,"y":4.078,"w":0.747,"l":13.601},{"oc":"#2b2e34","x":7.97,"y":5.578,"w":1.494,"l":90.373},{"oc":"#2b2e34","x":7.97,"y":7.828,"w":1.1955,"l":90.373},{"oc":"#2b2e34","x":12.968,"y":9.328,"w":0.747,"l":85.375},{"oc":"#2b2e34","x":12.968,"y":10.828,"w":0.747,"l":85.375},{"oc":"#2b2e34","x":12.968,"y":12.328,"w":0.747,"l":85.375},{"oc":"#2b2e34","x":7.97,"y":13.828,"w":1.1955,"l":90.373},{"oc":"#2b2e34","x":7.97,"y":15.328,"w":0.747,"l":90.373},{"oc":"#2b2e34","x":7.97,"y":19.078,"w":1.1955,"l":90.373},{"oc":"#2b2e34","x":7.97,"y":20.577,"w":0.747,"l":90.373},{"dsh":1,"oc":"#2b2e34","x":32.631,"y":22.077,"w":1.494,"l":54.885},{"dsh":1,"oc":"#2b2e34","x":67.548,"y":22.827,"w":1.494,"l":19.968},{"dsh":1,"oc":"#2b2e34","x":49.063,"y":25.827,"w":1.494,"l":38.453},{"oc":"#2b2e34","x":7.97,"y":27.327,"w":1.1955,"l":90.373},{"oc":"#2b2e34","x":7.97,"y":28.828,"w":0.747,"l":90.373},{"oc":"#2b2e34","x":7.97,"y":46.772,"w":1.494,"l":90.373},{"oc":"#2b2e34","x":7.97,"y":31.828,"w":1.1955,"l":90.373},{"dsh":1,"oc":"#2b2e34","x":47.009,"y":23.559,"w":1.494,"l":40.507},{"oc":"#2b2e34","x":88.454,"y":25.827,"w":0.747,"l":9.9},{"oc":"#2b2e34","x":88.454,"y":21.327,"w":0.747,"l":9.9},{"oc":"#2b2e34","x":88.454,"y":22.077,"w":0.747,"l":9.9},{"oc":"#2b2e34","x":88.454,"y":22.827,"w":0.747,"l":9.9},{"oc":"#2b2e34","x":88.454,"y":23.577,"w":0.747,"l":9.9}],"VLines":[{"oc":"#2b2e34","x":98.354,"y":23.575,"w":0.747,"l":1.502},{"oc":"#2b2e34","x":88.454,"y":23.575,"w":0.747,"l":1.502},{"oc":"#2b2e34","x":20.395,"y":-9.089,"w":0.747,"l":0.622},{"oc":"#2b2e34","x":18.683,"y":-9.089,"w":0.747,"l":0.622},{"oc":"#2b2e34","x":89.01,"y":-10.34,"w":0.747,"l":4.499},{"oc":"#2b2e34","x":81.017,"y":-10.34,"w":0.747,"l":4.499},{"oc":"#2b2e34","x":70.446,"y":-10.34,"w":0.747,"l":4.499},{"oc":"#2b2e34","x":21.631,"y":2.578,"w":1.494,"l":3},{"oc":"#2b2e34","x":84.743,"y":2.578,"w":1.494,"l":3},{"oc":"#2b2e34","x":77.318,"y":7.828,"w":0.747,"l":1.5},{"oc":"#2b2e34","x":62.468,"y":7.828,"w":0.747,"l":1.5},{"oc":"#2b2e34","x":12.968,"y":7.828,"w":0.747,"l":6},{"dsh":1,"oc":"#2b2e34","x":84.743,"y":8.582,"w":0.747,"l":0.622},{"dsh":1,"oc":"#2b2e34","x":89.693,"y":8.582,"w":0.747,"l":0.622},{"oc":"#2b2e34","x":89.691,"y":10.828,"w":0.747,"l":1.5},{"oc":"#2b2e34","x":77.318,"y":9.328,"w":0.747,"l":1.5},{"dsh":1,"oc":"#2b2e34","x":84.743,"y":10.081,"w":0.747,"l":0.622},{"dsh":1,"oc":"#2b2e34","x":89.693,"y":10.081,"w":0.747,"l":0.622},{"oc":"#2b2e34","x":88.454,"y":20.577,"w":0.747,"l":5.25},{"oc":"#2b2e34","x":93.404,"y":20.577,"w":0.747,"l":5.25}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#c4c5c7","x":88.454,"y":23.575,"w":9.9,"h":1.503,"clr":-1},{"oc":"#2b2e34","x":7.97,"y":14.202,"w":5.734,"h":0.75,"clr":-1},{"oc":"#2b2e34","x":7.97,"y":19.451,"w":6.051,"h":0.75,"clr":-1},{"oc":"#2b2e34","x":7.97,"y":27.701,"w":6.538,"h":0.75,"clr":-1},{"x":-4.042,"y":50.443,"w":1.896,"h":0.689,"clr":0}],"Texts":[{"x":82.333,"y":12.088,"w":14.01,"clr":0,"A":"left","R":[{"T":"State","S":51,"TS":[0,9,0,0]}]},{"oc":"#2b2e34","x":86.508,"y":6.78,"w":0.5558000000000001,"clr":-1,"A":"left","R":[{"T":"%2C%20","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":67.057,"y":-11.23,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,17.9419,1,0]}]},{"oc":"#2b2e34","x":21.384,"y":-10.521,"w":11.1639,"clr":-1,"A":"left","R":[{"T":"I.R.S.%20SPECIFICATIONS","S":-1,"TS":[0,10.9668,1,0]}]},{"oc":"#2b2e34","x":43.902,"y":-10.483,"w":17.848100000000002,"clr":-1,"A":"left","R":[{"T":"TO%20BE%20REMOVED%20BEFORE%20PRINTING","S":-1,"TS":[0,10.9668,1,0]}]},{"oc":"#2b2e34","x":21.384,"y":-6.736,"w":33.62059999999999,"clr":-1,"A":"left","R":[{"T":"DO%20NOT%20PRINT%20%E2%80%94%20DO%20NOT%20PRINT%20%E2%80%94%20DO%20NOT%20PRINT%20%E2%80%94%20DO%20NOT%20PRINT","S":-1,"TS":[0,10.9668,1,0]}]},{"oc":"#2b2e34","x":7.795,"y":-10.71,"w":6.370700000000001,"clr":-1,"A":"left","R":[{"T":"TLS%2C%20have%20you","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":7.795,"y":-10.212,"w":7.2963,"clr":-1,"A":"left","R":[{"T":"transmitted%20all%20R","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":7.795,"y":-9.714,"w":7.0901000000000005,"clr":-1,"A":"left","R":[{"T":"text%20files%20for%20this","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":7.795,"y":-9.217,"w":6.296700000000001,"clr":-1,"A":"left","R":[{"T":"cycle%20update%3F","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":12.011,"y":-7.309,"w":2.0926,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,9.971,0,0]}]},{"oc":"#2b2e34","x":70.781,"y":-10.304,"w":2.8514,"clr":-1,"A":"left","R":[{"T":"Action","S":-1,"TS":[0,12.9585,0,0]}]},{"oc":"#2b2e34","x":70.781,"y":-7.455,"w":6.720600000000001,"clr":-1,"A":"left","R":[{"T":"Revised%20proofs","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":70.781,"y":-6.833,"w":4.5009999999999994,"clr":-1,"A":"left","R":[{"T":"requested","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":82.966,"y":-10.304,"w":2.0926,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,12.9585,0,0]}]},{"oc":"#2b2e34","x":89.762,"y":-10.304,"w":4.2771,"clr":-1,"A":"left","R":[{"T":"Signature","S":-1,"TS":[0,12.9585,0,0]}]},{"oc":"#2b2e34","x":70.781,"y":-9.037,"w":5.445700000000001,"clr":-1,"A":"left","R":[{"T":"O.K.%20to%20print","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":21.37,"y":-9.878,"w":14.0146,"clr":-1,"A":"left","R":[{"T":"INSTRUCTIONS%20TO%20PRINTERS","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":21.37,"y":-9.38,"w":11.427800000000001,"clr":-1,"A":"left","R":[{"T":"FORM%201310%2C%20PAGE%201%20of%202","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":21.37,"y":-8.882,"w":7.1288,"clr":-1,"A":"left","R":[{"T":"MARGINS%3A%20TOP","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":31.681,"y":-9.032,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,7.5411,0,0]}]},{"oc":"#2b2e34","x":32.104,"y":-8.882,"w":0.167,"clr":-1,"A":"left","R":[{"T":"%E2%81%84","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":32.35,"y":-8.883,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,7.5411,0,0]}]},{"oc":"#2b2e34","x":33.004,"y":-8.882,"w":7.775599999999999,"clr":-1,"A":"left","R":[{"T":"%22%20CENTER%20SIDES","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":46.016,"y":-8.882,"w":10.905000000000001,"clr":-1,"A":"left","R":[{"T":"PRINTS%3A%20HEAD%20to%20HEAD","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":21.371,"y":-8.385,"w":16.181900000000002,"clr":-1,"A":"left","R":[{"T":"PAPER%3A%20WHITE%2C%20WRITING%2C%20SUB.%2020%20","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":46.008,"y":-8.385,"w":5.481,"clr":-1,"A":"left","R":[{"T":"INK%3A%20BLACK","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":21.371,"y":-7.887,"w":9.780100000000001,"clr":-1,"A":"left","R":[{"T":"FLAT%20SIZE%3A%20216mm%20(8","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":35.017,"y":-8.036,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,7.5411,0,0]}]},{"oc":"#2b2e34","x":35.44,"y":-7.887,"w":0.167,"clr":-1,"A":"left","R":[{"T":"%E2%81%84","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":35.686,"y":-7.887,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,7.5411,0,0]}]},{"oc":"#2b2e34","x":36.34,"y":-7.887,"w":7.465400000000001,"clr":-1,"A":"left","R":[{"T":"%22)%20x%20279mm%20(11%22)","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":21.371,"y":-7.389,"w":9.6833,"clr":-1,"A":"left","R":[{"T":"PERFORATE%3A%20(NONE)","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":85.434,"y":2.735,"w":9.286400000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":-1,"TS":[0,9.971,0,0]}]},{"oc":"#2b2e34","x":36.263,"y":2.433,"w":13.4456,"clr":-1,"A":"left","R":[{"T":"Statement%20of%20Person%20Claiming","S":-1,"TS":[0,16.9419,0,0]}]},{"oc":"#2b2e34","x":34.358,"y":3.3659999999999997,"w":15.066000000000006,"clr":-1,"A":"left","R":[{"T":"Refund%20Due%20a%20Deceased%20Taxpayer","S":-1,"TS":[0,16.9419,0,0]}]},{"oc":"#2b2e34","x":11.737,"y":2.905,"w":2,"clr":-1,"A":"left","R":[{"T":"1310","S":-1,"TS":[3,27.9004,1,0]}]},{"oc":"#2b2e34","x":7.72,"y":2.904,"w":2.3152,"clr":-1,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,9.971,0,0]}]},{"oc":"#2b2e34","x":7.72,"y":3.6289999999999996,"w":9.951000000000002,"clr":-1,"A":"left","R":[{"T":"(Rev.%20November%202005)","S":-1,"TS":[0,9.971,0,0]}]},{"oc":"#2b2e34","x":86.142,"y":4.143,"w":5.202999999999999,"clr":-1,"A":"left","R":[{"T":"Attachment","S":-1,"TS":[0,9.971,0,0]}]},{"oc":"#2b2e34","x":86.142,"y":4.641,"w":6.3554,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.","S":-1,"TS":[0,9.971,0,0]}]},{"oc":"#2b2e34","x":94.53,"y":4.642,"w":1.1274000000000002,"clr":-1,"A":"left","R":[{"T":"87","S":-1,"TS":[0,13.9585,1,0]}]},{"oc":"#2b2e34","x":7.72,"y":4.206,"w":12.275000000000002,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury","S":-1,"TS":[0,8.975100000000001,0,0]}]},{"oc":"#2b2e34","x":7.72,"y":4.642,"w":11.104999999999999,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,8.975100000000001,0,0]}]},{"oc":"#2b2e34","x":39.631,"y":4.548,"w":1,"clr":-1,"A":"left","R":[{"T":"%01","S":-1,"TS":[2,8.975100000000001,0,0]}]},{"oc":"#2b2e34","x":41.343,"y":4.642,"w":17.291500000000003,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20below%20and%20on%20back.","S":-1,"TS":[0,10.9668,1,0]}]},{"oc":"#2b2e34","x":7.72,"y":5.689,"w":16.565499999999997,"clr":-1,"A":"left","R":[{"T":"Tax%20year%20decedent%20was%20due%20a%20refund%3A","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":7.72,"y":6.78,"w":6.220700000000002,"clr":-1,"A":"left","R":[{"T":"Calendar%20year","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":23.761,"y":6.78,"w":12.554099999999998,"clr":-1,"A":"left","R":[{"T":"%2C%20or%20other%20tax%20year%20beginning","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":58.722,"y":6.78,"w":0.5558000000000001,"clr":-1,"A":"left","R":[{"T":"%2C%20","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":65.771,"y":6.78,"w":5.556800000000001,"clr":-1,"A":"left","R":[{"T":"%2C%20and%20ending","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":78.305,"y":7.579000000000001,"w":16.522599999999997,"clr":-1,"A":"left","R":[{"T":"Decedent%E2%80%99s%20social%20security%20number","S":-1,"TS":[0,9.971,1,0]}]},{"oc":"#2b2e34","x":13.955,"y":7.579000000000001,"w":8.2832,"clr":-1,"A":"left","R":[{"T":"Name%20of%20decedent","S":-1,"TS":[0,9.971,0,0]}]},{"oc":"#2b2e34","x":63.455,"y":7.579000000000001,"w":6.0596,"clr":-1,"A":"left","R":[{"T":"Date%20of%20death","S":-1,"TS":[0,9.971,0,0]}]},{"oc":"#2b2e34","x":13.956,"y":9.079,"w":14.324000000000002,"clr":-1,"A":"left","R":[{"T":"Name%20of%20person%20claiming%20refund","S":-1,"TS":[0,9.971,0,0]}]},{"oc":"#2b2e34","x":13.956,"y":10.579,"w":33.893999999999984,"clr":-1,"A":"left","R":[{"T":"Home%20address%20(number%20and%20street).%20If%20you%20have%20a%20P.O.%20box%2C%20see%20instructions.","S":-1,"TS":[0,9.971,0,0]}]},{"oc":"#2b2e34","x":13.956,"y":12.079,"w":41.39419999999996,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office%2C%20state%2C%20and%20ZIP%20code.%20If%20you%20have%20a%20foreign%20address%2C%20see%20instructions.","S":-1,"TS":[0,9.971,0,0]}]},{"oc":"#2b2e34","x":16.734,"y":14.054,"w":16.5485,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box%20that%20applies%20to%20you.%20","S":-1,"TS":[0,13.9585,1,0]}]},{"oc":"#2b2e34","x":45.711,"y":14.054,"w":9.471,"clr":-1,"A":"left","R":[{"T":"Check%20only%20one%20box.%20","S":-1,"TS":[0,12.9585,0,0]}]},{"oc":"#2b2e34","x":62.348,"y":14.054,"w":16.485500000000002,"clr":-1,"A":"left","R":[{"T":"Be%20sure%20to%20complete%20Part%20III%20below.","S":-1,"TS":[0,13.9585,1,0]}]},{"oc":"#2b2e34","x":12.85,"y":15.328,"w":33.9082,"clr":-1,"A":"left","R":[{"T":"Surviving%20spouse%20requesting%20reissuance%20of%20a%20refund%20check%20(see%20instructions).","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":7.797000000000001,"y":15.329999999999998,"w":0.685,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11.9627,1,0]}]},{"oc":"#2b2e34","x":7.782,"y":16.077,"w":0.704,"clr":-1,"A":"left","R":[{"T":"B","S":-1,"TS":[0,11.9627,1,0]}]},{"oc":"#2b2e34","x":12.85,"y":16.078,"w":54.28340000000007,"clr":-1,"A":"left","R":[{"T":"Court-appointed%20or%20certified%20personal%20representative%20(defined%20below).%20Attach%20a%20court%20certificate%20showing%20your%20appointment%2C","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":12.85,"y":16.762,"w":17.933100000000003,"clr":-1,"A":"left","R":[{"T":"unless%20previously%20filed%20(see%20instructions).","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":16.734,"y":19.3,"w":30.090900000000005,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20only%20if%20you%20checked%20the%20box%20on%20line%20C%20above.","S":-1,"TS":[0,13.9585,1,0]}]},{"oc":"#2b2e34","x":10.243,"y":21.327,"w":13.362999999999998,"clr":-1,"A":"left","R":[{"T":"Did%20the%20decedent%20leave%20a%20will%3F","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":7.997,"y":21.327,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11.9627,1,0]}]},{"oc":"#2b2e34","x":7.997,"y":22.077,"w":1.1308,"clr":-1,"A":"left","R":[{"T":"2a","S":-1,"TS":[0,11.9627,1,0]}]},{"oc":"#2b2e34","x":10.243,"y":22.077,"w":35.5753,"clr":-1,"A":"left","R":[{"T":"Has%20a%20court%20appointed%20a%20personal%20representative%20for%20the%20estate%20of%20the%20decedent%3F","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":7.997,"y":24.455,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11.9627,1,0]}]},{"oc":"#2b2e34","x":10.243,"y":24.455,"w":48.69800000000005,"clr":-1,"A":"left","R":[{"T":"As%20the%20person%20claiming%20the%20refund%20for%20the%20decedent%E2%80%99s%20estate%2C%20will%20you%20pay%20out%20the%20refund%20according%20to%20the%20laws","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":10.243,"y":25.077,"w":23.87509999999999,"clr":-1,"A":"left","R":[{"T":"of%20the%20state%20where%20the%20decedent%20was%20a%20legal%20resident%3F","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":16.734,"y":27.551,"w":28.527900000000002,"clr":-1,"A":"left","R":[{"T":"Signature%20and%20verification.%20All%20filers%20must%20complete%20this%20part.","S":-1,"TS":[0,13.9585,1,0]}]},{"oc":"#2b2e34","x":7.768000000000001,"y":28.579,"w":64.14630000000007,"clr":-1,"A":"left","R":[{"T":"I%20request%20a%20refund%20of%20taxes%20overpaid%20by%20or%20on%20behalf%20of%20the%20decedent.%20Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20claim%2C%20and%20to","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":7.768000000000001,"y":29.108,"w":30.99989999999999,"clr":-1,"A":"left","R":[{"T":"the%20best%20of%20my%20knowledge%20and%20belief%2C%20it%20is%20true%2C%20correct%2C%20and%20complete.","S":-1,"TS":[0,10.9668,0,0]}]},{"oc":"#2b2e34","x":7.776,"y":30.798,"w":17.0855,"clr":-1,"A":"left","R":[{"T":"Signature%20of%20person%20claiming%20refund","S":-1,"TS":[0,10.9668,1,0]}]},{"oc":"#2b2e34","x":77.079,"y":30.798,"w":2.2266,"clr":-1,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,10.9668,1,0]}]},{"oc":"#2b2e34","x":82.179,"y":46.657,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,9.971,0,0]}]},{"oc":"#2b2e34","x":85.66,"y":46.657,"w":2.2236000000000002,"clr":-1,"A":"left","R":[{"T":"1310","S":-1,"TS":[0,13.9585,1,0]}]},{"oc":"#2b2e34","x":90.152,"y":46.657,"w":6.523800000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%2011-2005)","S":-1,"TS":[0,9.971,0,0]}]},{"x":8.302,"y":14.051,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13.9585,1,0]}]},{"x":8.203,"y":19.3,"w":2.8507000000000007,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13.9585,1,0]}]},{"oc":"#2b2e34","x":61.996,"y":46.657,"w":7.450000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011566B","S":-1,"TS":[0,9.971,0,0]}]},{"x":8.234,"y":27.551,"w":3.1466,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13.9585,1,0]}]},{"oc":"#2b2e34","x":7.717,"y":9.371,"w":3.184,"clr":-1,"A":"left","R":[{"T":"Please","S":-1,"TS":[0,10.9668,1,0]}]},{"oc":"#2b2e34","x":8.389,"y":9.962,"w":2.2025,"clr":-1,"A":"left","R":[{"T":"print","S":-1,"TS":[0,10.9668,1,0]}]},{"oc":"#2b2e34","x":9.212,"y":10.553,"w":1.0002,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,10.9668,1,0]}]},{"oc":"#2b2e34","x":8.488,"y":11.144,"w":2.0564,"clr":-1,"A":"left","R":[{"T":"type","S":-1,"TS":[0,10.9668,1,0]}]},{"oc":"#2b2e34","x":12.85,"y":17.577,"w":3.7016,"clr":-1,"A":"left","R":[{"T":"Person%2C%20","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":18.673,"y":17.577,"w":2.7952,"clr":-1,"A":"left","R":[{"T":"other%20","S":-1,"TS":[0,11.9627,1,0]}]},{"oc":"#2b2e34","x":23.063,"y":17.577,"w":42.12660000000003,"clr":-1,"A":"left","R":[{"T":"than%20A%20or%20B%2C%20claiming%20refund%20for%20the%20decedent%E2%80%99s%20estate%20(see%20instructions).%20Also%2C%20complete%20Part%20II.","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":7.72,"y":17.579,"w":0.741,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,11.9627,1,0]}]},{"oc":"#2b2e34","x":32.003,"y":30.722,"w":1,"clr":-1,"A":"left","R":[{"T":"%01","S":-1,"TS":[2,8.975100000000001,0,0]}]},{"oc":"#2b2e34","x":90.679,"y":10.579,"w":3.5216000000000003,"clr":-1,"A":"left","R":[{"T":"Apt.%20no.","S":-1,"TS":[0,9.971,0,0]}]},{"oc":"#2b2e34","x":10.243,"y":22.809,"w":7.3652,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":21.89,"y":22.809,"w":2.5495,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CNo%E2%80%9D%20","S":-1,"TS":[0,11.9627,1,0]}]},{"oc":"#2b2e34","x":25.91,"y":22.809,"w":12.938300000000003,"clr":-1,"A":"left","R":[{"T":"to%202a%2C%20will%20one%20be%20appointed%3F","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":10.241,"y":25.83,"w":7.3652,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":21.333,"y":25.83,"w":2.5495,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CNo%E2%80%9D%20","S":-1,"TS":[0,11.9627,1,0]}]},{"oc":"#2b2e34","x":25.168,"y":25.83,"w":41.13270000000001,"clr":-1,"A":"left","R":[{"T":"to%203%2C%20a%20refund%20cannot%20be%20made%20until%20you%20submit%20a%20court%20certificate%20showing%20your%20appointment","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":10.241,"y":26.453,"w":45.90050000000005,"clr":-1,"A":"left","R":[{"T":"as%20personal%20representative%20or%20other%20evidence%20that%20you%20are%20entitled%20under%20state%20law%20to%20receive%20the%20refund.","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":81.284,"y":30.735,"w":1,"clr":-1,"A":"left","R":[{"T":"%01","S":-1,"TS":[2,8.975100000000001,0,0]}]},{"oc":"#2b2e34","x":7.72,"y":46.657,"w":31.2357,"clr":-1,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20page%202.","S":-1,"TS":[0,10.9668,1,0]}]},{"oc":"#2b2e34","x":10.157,"y":23.587,"w":7.3652,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":21.804,"y":23.587,"w":2.9760000000000004,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CYes%E2%80%9D%20","S":-1,"TS":[0,11.9627,1,0]}]},{"oc":"#2b2e34","x":26.348,"y":23.587,"w":28.227199999999993,"clr":-1,"A":"left","R":[{"T":"to%202a%20or%202b%2C%20the%20personal%20representative%20must%20file%20for%20the%20refund.","S":-1,"TS":[0,11.9627,0,0]}]},{"oc":"#2b2e34","x":89.379,"y":20.452,"w":1.5113000000000003,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11.9627,1,0]}]},{"oc":"#2b2e34","x":94.452,"y":20.452,"w":1.1742,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11.9627,1,0]}]},{"oc":"#2b2e34","x":8.799,"y":22.824,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11.9627,1,0]}]},{"oc":"#2b2e34","x":78.305,"y":9.078,"w":13.3734,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[0,9.971,1,0]}]},{"oc":"#2b2e34","x":67.361,"y":8.453,"w":4.3244,"clr":-1,"A":"left","R":[{"T":"%2F%2F","S":-1,"TS":[0,11.9627,0,0]}]},{"x":91.944,"y":12.051,"w":9.335999999999999,"clr":0,"A":"left","R":[{"T":"ZIP","S":51,"TS":[0,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"CALY","EN":0},"TI":819,"AM":0,"x":17.219,"y":6.9,"w":6.68,"h":0.833,"TU":"Calendar year.","MV":"yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YRB","EN":0},"TI":820,"AM":0,"x":41.851,"y":6.935,"w":16.722,"h":0.833,"TU":"Other tax year beginning month.","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YR1","EN":0},"TI":821,"AM":0,"x":59.431,"y":6.965,"w":6.241,"h":0.833,"TU":"Beginning Tax Year.","MV":"yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YEND","EN":0},"TI":822,"AM":0,"x":75.041,"y":6.922,"w":10.059,"h":0.833,"TU":"Ending tax month.","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YR","EN":0},"TI":823,"AM":0,"x":87.955,"y":6.895,"w":7.065,"h":0.833,"TU":"Ending tax year.","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":824,"AM":0,"x":13.117,"y":8.496,"w":48.655,"h":0.833,"TU":"Name of decedent"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DTHD","EN":0},"TI":825,"AM":0,"x":62.997,"y":8.485,"w":13.787,"h":0.833,"TU":"Date of death","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DSSN","EN":0},"TI":826,"AM":0,"x":77.468,"y":8.524,"w":20.886,"h":0.833,"TU":"Decedent’s social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAM","EN":0},"TI":827,"AM":0,"x":13.117,"y":10.02,"w":63.825,"h":0.833,"TU":"Name of person claiming refund"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN","EN":0},"TI":828,"AM":0,"x":77.852,"y":9.989,"w":20.426,"h":0.833,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":829,"AM":0,"x":13.267,"y":11.496,"w":75.688,"h":0.833,"TU":"Home address (number and street). If you have a P.O. box, see instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APTN","EN":0},"TI":830,"AM":0,"x":89.843,"y":11.473,"w":8.436,"h":0.843,"TU":"Apt. no."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":831,"AM":0,"x":13.117,"y":12.95,"w":63.782,"h":0.858,"TU":"City, town or post office. If you have a foreign address, see instructions."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STAT","EN":0},"TI":832,"AM":0,"x":78.299,"y":12.887,"w":8.139,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":833,"AM":0,"x":88.114,"y":12.901,"w":10.062,"h":0.889,"TU":"Zip code."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DATE","EN":0},"TI":845,"AM":0,"x":83.374,"y":30.9,"w":15,"h":0.833,"TU":"Date.","MV":"mm/dd/yyyy"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXA","EN":0},"TI":834,"AM":0,"x":10.107,"y":15.339,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXB","EN":0},"TI":835,"AM":0,"x":10.058,"y":16.069,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXC","EN":0},"TI":836,"AM":0,"x":10.037,"y":17.559,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"BOXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1Y","EN":0},"TI":837,"AM":0,"x":88.568,"y":21.273,"w":4.666,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1N","EN":0},"TI":838,"AM":0,"x":93.497,"y":21.269,"w":4.666,"h":0.833,"checked":false}],"id":{"Id":"L1RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2AY","EN":0},"TI":839,"AM":0,"x":88.556,"y":22.031,"w":4.666,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2AN","EN":0},"TI":840,"AM":0,"x":93.572,"y":22.004,"w":4.666,"h":0.833,"checked":false}],"id":{"Id":"L2ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2BY","EN":0},"TI":841,"AM":0,"x":88.611,"y":22.732,"w":4.666,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2BN","EN":0},"TI":842,"AM":0,"x":93.572,"y":22.739,"w":4.666,"h":0.833,"checked":false}],"id":{"Id":"L2BRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3Y","EN":0},"TI":843,"AM":0,"x":88.516,"y":24.984,"w":4.666,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3N","EN":0},"TI":844,"AM":0,"x":93.497,"y":24.999,"w":4.666,"h":0.833,"checked":false}],"id":{"Id":"L3RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"CreationDate":"D:20130923133445-07'00'","ModDate":"D:20131217120016-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.501,"HLines":[{"x":32.149,"y":25.077,"w":0.747,"l":3.631,"oc":"#2b2e34"},{"x":32.149,"y":23.575,"w":0.747,"l":3.631,"oc":"#2b2e34"},{"x":7.867,"y":-6.593,"w":0.747,"l":17.206,"oc":"#2b2e34"},{"x":7.873,"y":-5.84,"w":0.747,"l":17.2,"oc":"#2b2e34"},{"x":2.926,"y":-6.967,"w":0.747,"l":4.346,"oc":"#2b2e34"},{"x":6.794,"y":-8.467,"w":0.747,"l":0.622,"oc":"#2b2e34"},{"x":6.794,"y":-9.089,"w":0.747,"l":0.622,"oc":"#2b2e34"},{"x":25.617,"y":-9.217,"w":0.747,"l":10.15,"oc":"#2b2e34"},{"x":25.617,"y":-5.84,"w":0.747,"l":10.15,"oc":"#2b2e34"},{"x":25.617,"y":-7.717,"w":0.747,"l":10.15,"oc":"#2b2e34"},{"x":25.617,"y":-10.34,"w":0.747,"l":10.15,"oc":"#2b2e34"},{"x":7.867,"y":-10.34,"w":0.747,"l":17.206,"oc":"#2b2e34"},{"x":7.873,"y":-9.586,"w":0.747,"l":17.2,"oc":"#2b2e34"},{"x":30.816,"y":4.078,"w":0.747,"l":4.946,"oc":"#2b2e34"},{"x":2.898,"y":5.578,"w":1.494,"l":32.863,"oc":"#2b2e34"},{"x":2.898,"y":7.828,"w":1.196,"l":32.863,"oc":"#2b2e34"},{"x":4.716,"y":9.328,"w":0.747,"l":31.046,"oc":"#2b2e34"},{"x":4.716,"y":10.828,"w":0.747,"l":31.046,"oc":"#2b2e34"},{"x":4.716,"y":12.328,"w":0.747,"l":31.046,"oc":"#2b2e34"},{"x":2.898,"y":13.828,"w":1.196,"l":32.863,"oc":"#2b2e34"},{"x":2.898,"y":15.328,"w":0.747,"l":32.863,"oc":"#2b2e34"},{"x":2.898,"y":19.078,"w":1.196,"l":32.863,"oc":"#2b2e34"},{"x":2.898,"y":20.577,"w":0.747,"l":32.863,"oc":"#2b2e34"},{"x":11.866,"y":22.077,"w":1.494,"l":19.958,"oc":"#2b2e34","dsh":1},{"x":24.563,"y":22.827,"w":1.494,"l":7.261,"oc":"#2b2e34","dsh":1},{"x":17.841,"y":25.827,"w":1.494,"l":13.983,"oc":"#2b2e34","dsh":1},{"x":2.898,"y":27.327,"w":1.196,"l":32.863,"oc":"#2b2e34"},{"x":2.898,"y":28.828,"w":0.747,"l":32.863,"oc":"#2b2e34"},{"x":2.898,"y":46.772,"w":1.494,"l":32.863,"oc":"#2b2e34"},{"x":2.898,"y":31.828,"w":1.196,"l":32.863,"oc":"#2b2e34"},{"x":17.094,"y":23.559,"w":1.494,"l":14.73,"oc":"#2b2e34","dsh":1},{"x":32.165,"y":25.827,"w":0.747,"l":3.6,"oc":"#2b2e34"},{"x":32.165,"y":21.327,"w":0.747,"l":3.6,"oc":"#2b2e34"},{"x":32.165,"y":22.077,"w":0.747,"l":3.6,"oc":"#2b2e34"},{"x":32.165,"y":22.827,"w":0.747,"l":3.6,"oc":"#2b2e34"},{"x":32.165,"y":23.577,"w":0.747,"l":3.6,"oc":"#2b2e34"}],"VLines":[{"x":35.765,"y":23.575,"w":0.747,"l":1.502,"oc":"#2b2e34"},{"x":32.165,"y":23.575,"w":0.747,"l":1.502,"oc":"#2b2e34"},{"x":7.416,"y":-9.089,"w":0.747,"l":0.622,"oc":"#2b2e34"},{"x":6.794,"y":-9.089,"w":0.747,"l":0.622,"oc":"#2b2e34"},{"x":32.367,"y":-10.34,"w":0.747,"l":4.499,"oc":"#2b2e34"},{"x":29.461,"y":-10.34,"w":0.747,"l":4.499,"oc":"#2b2e34"},{"x":25.617,"y":-10.34,"w":0.747,"l":4.499,"oc":"#2b2e34"},{"x":7.866,"y":2.578,"w":1.494,"l":3,"oc":"#2b2e34"},{"x":30.816,"y":2.578,"w":1.494,"l":3,"oc":"#2b2e34"},{"x":28.116,"y":7.828,"w":0.747,"l":1.5,"oc":"#2b2e34"},{"x":22.716,"y":7.828,"w":0.747,"l":1.5,"oc":"#2b2e34"},{"x":4.716,"y":7.828,"w":0.747,"l":6,"oc":"#2b2e34"},{"x":30.816,"y":8.582,"w":0.747,"l":0.622,"oc":"#2b2e34","dsh":1},{"x":32.616,"y":8.582,"w":0.747,"l":0.622,"oc":"#2b2e34","dsh":1},{"x":32.615,"y":10.828,"w":0.747,"l":1.5,"oc":"#2b2e34"},{"x":28.116,"y":9.328,"w":0.747,"l":1.5,"oc":"#2b2e34"},{"x":30.816,"y":10.081,"w":0.747,"l":0.622,"oc":"#2b2e34","dsh":1},{"x":32.616,"y":10.081,"w":0.747,"l":0.622,"oc":"#2b2e34","dsh":1},{"x":32.165,"y":20.577,"w":0.747,"l":5.25,"oc":"#2b2e34"},{"x":33.965,"y":20.577,"w":0.747,"l":5.25,"oc":"#2b2e34"}],"Fills":[{"x":32.165,"y":23.575,"w":3.6,"h":1.503,"oc":"#c4c5c7"},{"x":2.898,"y":14.202,"w":2.085,"h":0.75,"oc":"#2b2e34"},{"x":2.898,"y":19.451,"w":2.2,"h":0.75,"oc":"#2b2e34"},{"x":2.898,"y":27.701,"w":2.378,"h":0.75,"oc":"#2b2e34"}],"Texts":[{"x":29.78,"y":12.088,"w":14.01,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"State","S":51,"TS":[0,9,0,0]}]},{"x":31.298,"y":6.78,"w":0.556,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":", ","S":-1,"TS":[0,10.9668,0,0]}]},{"x":31.887999999999998,"y":6.78,"w":0.278,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,10.9668,0,0]}]},{"x":24.225,"y":-11.23,"w":0.556,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"3","S":-1,"TS":[0,17.9419,1,0]}]},{"x":7.617,"y":-10.521,"w":11.164,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"I.R.S. SPECIFICATIONS","S":-1,"TS":[0,10.9668,1,0]}]},{"x":15.805,"y":-10.483,"w":17.848,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"TO BE REMOVED BEFORE PRINTING","S":-1,"TS":[0,10.9668,1,0]}]},{"x":7.617,"y":-6.736,"w":33.621,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"DO NOT PRINT — DO NOT PRINT — DO NOT PRINT — DO NOT PRINT","S":-1,"TS":[0,10.9668,1,0]}]},{"x":2.676,"y":-10.71,"w":6.371,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"TLS, have you","S":-1,"TS":[0,10.9668,0,0]}]},{"x":2.676,"y":-10.212,"w":7.296,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"transmitted all R","S":-1,"TS":[0,10.9668,0,0]}]},{"x":2.676,"y":-9.714,"w":7.09,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"text files for this","S":-1,"TS":[0,10.9668,0,0]}]},{"x":2.676,"y":-9.217,"w":6.297,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"cycle update?","S":-1,"TS":[0,10.9668,0,0]}]},{"x":4.209,"y":-7.309,"w":2.093,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,9.971,0,0]}]},{"x":25.58,"y":-10.304,"w":2.851,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Action","S":-1,"TS":[0,12.9585,0,0]}]},{"x":25.58,"y":-7.455,"w":6.721,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Revised proofs","S":-1,"TS":[0,10.9668,0,0]}]},{"x":25.58,"y":-6.833,"w":4.501,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"requested","S":-1,"TS":[0,10.9668,0,0]}]},{"x":30.01,"y":-10.304,"w":2.093,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,12.9585,0,0]}]},{"x":32.482,"y":-10.304,"w":4.277,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Signature","S":-1,"TS":[0,12.9585,0,0]}]},{"x":25.58,"y":-9.037,"w":5.446,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"O.K. to print","S":-1,"TS":[0,10.9668,0,0]}]},{"x":7.612,"y":-9.878,"w":14.015,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"INSTRUCTIONS TO PRINTERS","S":-1,"TS":[0,10.9668,0,0]}]},{"x":7.612,"y":-9.38,"w":11.428,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"FORM 1310, PAGE 1 of 2","S":-1,"TS":[0,10.9668,0,0]}]},{"x":7.612,"y":-8.882,"w":7.129,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"MARGINS: TOP","S":-1,"TS":[0,10.9668,0,0]}]},{"x":11.361,"y":-9.032,"w":0.556,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"1","S":-1,"TS":[0,7.5411,0,0]}]},{"x":11.515,"y":-8.882,"w":0.167,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"⁄","S":-1,"TS":[0,10.9668,0,0]}]},{"x":11.605,"y":-8.883,"w":0.556,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"2","S":-1,"TS":[0,7.5411,0,0]}]},{"x":11.842,"y":-8.882,"w":7.776,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"\" CENTER SIDES","S":-1,"TS":[0,10.9668,0,0]}]},{"x":16.574,"y":-8.882,"w":10.905,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"PRINTS: HEAD to HEAD","S":-1,"TS":[0,10.9668,0,0]}]},{"x":7.612,"y":-8.385,"w":16.182,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"PAPER: WHITE, WRITING, SUB. 20 ","S":-1,"TS":[0,10.9668,0,0]}]},{"x":16.571,"y":-8.385,"w":5.481,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"INK: BLACK","S":-1,"TS":[0,10.9668,0,0]}]},{"x":7.612,"y":-7.887,"w":9.78,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"FLAT SIZE: 216mm (8","S":-1,"TS":[0,10.9668,0,0]}]},{"x":12.574,"y":-8.036,"w":0.556,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"1","S":-1,"TS":[0,7.5411,0,0]}]},{"x":12.728,"y":-7.887,"w":0.167,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"⁄","S":-1,"TS":[0,10.9668,0,0]}]},{"x":12.818,"y":-7.887,"w":0.556,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"2","S":-1,"TS":[0,7.5411,0,0]}]},{"x":13.056,"y":-7.887,"w":7.465,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"\") x 279mm (11\")","S":-1,"TS":[0,10.9668,0,0]}]},{"x":7.612,"y":-7.389,"w":9.683,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"PERFORATE: (NONE)","S":-1,"TS":[0,10.9668,0,0]}]},{"x":30.908,"y":2.735,"w":9.286,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":-1,"TS":[0,9.971,0,0]}]},{"x":13.028,"y":2.433,"w":13.446,"oc":"#2b2e34","sw":0.390625,"A":"left","R":[{"T":"Statement of Person Claiming","S":-1,"TS":[0,16.9419,0,0]}]},{"x":12.335,"y":3.3659999999999997,"w":15.066,"oc":"#2b2e34","sw":0.390625,"A":"left","R":[{"T":"Refund Due a Deceased Taxpayer","S":-1,"TS":[0,16.9419,0,0]}]},{"x":4.109,"y":2.905,"w":2,"oc":"#2b2e34","sw":0.32553125,"A":"left","R":[{"T":"1310","S":-1,"TS":[3,27.9004,1,0]}]},{"x":2.648,"y":2.904,"w":2.315,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,9.971,0,0]}]},{"x":2.648,"y":3.6289999999999996,"w":9.951,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"(Rev. November 2005)","S":-1,"TS":[0,9.971,0,0]}]},{"x":31.165,"y":4.143,"w":5.203,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Attachment","S":-1,"TS":[0,9.971,0,0]}]},{"x":31.165,"y":4.641,"w":6.355,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Sequence No.","S":-1,"TS":[0,9.971,0,0]}]},{"x":34.215,"y":4.642,"w":1.127,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"87","S":-1,"TS":[0,13.9585,1,0]}]},{"x":2.648,"y":4.206,"w":12.275,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury","S":-1,"TS":[0,8.975100000000001,0,0]}]},{"x":2.648,"y":4.642,"w":11.105,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service","S":-1,"TS":[0,8.975100000000001,0,0]}]},{"x":14.252,"y":4.548,"w":1,"oc":"#2b2e34","sw":0.36459375,"A":"left","R":[{"T":"\u0001","S":-1,"TS":[2,8.975100000000001,0,0]}]},{"x":14.875,"y":4.642,"w":17.292,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"See instructions below and on back.","S":-1,"TS":[0,10.9668,1,0]}]},{"x":2.648,"y":5.689,"w":16.565,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Tax year decedent was due a refund:","S":-1,"TS":[0,11.9627,0,0]}]},{"x":2.648,"y":6.78,"w":6.221,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Calendar year","S":-1,"TS":[0,10.9668,0,0]}]},{"x":8.481,"y":6.78,"w":12.554,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":", or other tax year beginning","S":-1,"TS":[0,10.9668,0,0]}]},{"x":21.194,"y":6.78,"w":0.556,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":", ","S":-1,"TS":[0,10.9668,0,0]}]},{"x":23.758,"y":6.78,"w":5.557,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":", and ending","S":-1,"TS":[0,10.9668,0,0]}]},{"x":28.316,"y":7.579000000000001,"w":16.523,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Decedent’s social security number","S":-1,"TS":[0,9.971,1,0]}]},{"x":4.915,"y":7.579000000000001,"w":8.283,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Name of decedent","S":-1,"TS":[0,9.971,0,0]}]},{"x":22.915,"y":7.579000000000001,"w":6.06,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Date of death","S":-1,"TS":[0,9.971,0,0]}]},{"x":4.916,"y":9.079,"w":14.324,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Name of person claiming refund","S":-1,"TS":[0,9.971,0,0]}]},{"x":4.916,"y":10.579,"w":33.894,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Home address (number and street). If you have a P.O. box, see instructions.","S":-1,"TS":[0,9.971,0,0]}]},{"x":4.916,"y":12.079,"w":41.394,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"City, town or post office, state, and ZIP code. If you have a foreign address, see instructions.","S":-1,"TS":[0,9.971,0,0]}]},{"x":5.926,"y":14.054,"w":16.549,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Check the box that applies to you. ","S":-1,"TS":[0,13.9585,1,0]}]},{"x":16.463,"y":14.054,"w":9.471,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Check only one box. ","S":-1,"TS":[0,12.9585,0,0]}]},{"x":22.513,"y":14.054,"w":16.486,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Be sure to complete Part III below.","S":-1,"TS":[0,13.9585,1,0]}]},{"x":4.514,"y":15.328,"w":33.908,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Surviving spouse requesting reissuance of a refund check (see instructions).","S":-1,"TS":[0,11.9627,0,0]}]},{"x":2.676,"y":15.329999999999998,"w":0.685,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11.9627,1,0]}]},{"x":2.671,"y":16.077,"w":0.704,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"B","S":-1,"TS":[0,11.9627,1,0]}]},{"x":4.514,"y":16.078,"w":54.283,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Court-appointed or certified personal representative (defined below). Attach a court certificate showing your appointment,","S":-1,"TS":[0,11.9627,0,0]}]},{"x":4.514,"y":16.762,"w":17.933,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"unless previously filed (see instructions).","S":-1,"TS":[0,11.9627,0,0]}]},{"x":5.926,"y":19.3,"w":30.091,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Complete this part only if you checked the box on line C above.","S":-1,"TS":[0,13.9585,1,0]}]},{"x":3.566,"y":21.327,"w":13.363,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Did the decedent leave a will?","S":-1,"TS":[0,11.9627,0,0]}]},{"x":2.749,"y":21.327,"w":0.556,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11.9627,1,0]}]},{"x":2.749,"y":22.077,"w":1.131,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"2a","S":-1,"TS":[0,11.9627,1,0]}]},{"x":3.566,"y":22.077,"w":35.575,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Has a court appointed a personal representative for the estate of the decedent?","S":-1,"TS":[0,11.9627,0,0]}]},{"x":2.749,"y":24.455,"w":0.556,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"3","S":-1,"TS":[0,11.9627,1,0]}]},{"x":3.566,"y":24.455,"w":48.698,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"As the person claiming the refund for the decedent’s estate, will you pay out the refund according to the laws","S":-1,"TS":[0,11.9627,0,0]}]},{"x":3.566,"y":25.077,"w":23.875,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"of the state where the decedent was a legal resident?","S":-1,"TS":[0,11.9627,0,0]}]},{"x":5.926,"y":27.551,"w":28.528,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Signature and verification. All filers must complete this part.","S":-1,"TS":[0,13.9585,1,0]}]},{"x":2.666,"y":28.579,"w":64.146,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"I request a refund of taxes overpaid by or on behalf of the decedent. Under penalties of perjury, I declare that I have examined this claim, and to","S":-1,"TS":[0,10.9668,0,0]}]},{"x":2.666,"y":29.108,"w":31,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"the best of my knowledge and belief, it is true, correct, and complete.","S":-1,"TS":[0,10.9668,0,0]}]},{"x":2.669,"y":30.798,"w":17.085,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Signature of person claiming refund","S":-1,"TS":[0,10.9668,1,0]}]},{"x":27.87,"y":30.798,"w":2.227,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Date","S":-1,"TS":[0,10.9668,1,0]}]},{"x":29.724,"y":46.657,"w":2.334,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,9.971,0,0]}]},{"x":30.99,"y":46.657,"w":2.224,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"1310","S":-1,"TS":[0,13.9585,1,0]}]},{"x":32.623,"y":46.657,"w":6.524,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"(Rev. 11-2005)","S":-1,"TS":[0,9.971,0,0]}]},{"x":2.86,"y":14.051,"w":2.555,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I","S":-1,"TS":[0,13.9585,1,0]}]},{"x":2.824,"y":19.3,"w":2.851,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II","S":-1,"TS":[0,13.9585,1,0]}]},{"x":22.385,"y":46.657,"w":7.45,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11566B","S":-1,"TS":[0,9.971,0,0]}]},{"x":2.835,"y":27.551,"w":3.147,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III","S":-1,"TS":[0,13.9585,1,0]}]},{"x":2.647,"y":9.371,"w":3.184,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Please","S":-1,"TS":[0,10.9668,1,0]}]},{"x":2.891,"y":9.962,"w":2.203,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"print","S":-1,"TS":[0,10.9668,1,0]}]},{"x":3.191,"y":10.553,"w":1,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"or","S":-1,"TS":[0,10.9668,1,0]}]},{"x":2.927,"y":11.144,"w":2.056,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"type","S":-1,"TS":[0,10.9668,1,0]}]},{"x":4.514,"y":17.577,"w":3.702,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Person, ","S":-1,"TS":[0,11.9627,0,0]}]},{"x":6.631,"y":17.577,"w":2.795,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"other ","S":-1,"TS":[0,11.9627,1,0]}]},{"x":8.228,"y":17.577,"w":42.127,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"than A or B, claiming refund for the decedent’s estate (see instructions). Also, complete Part II.","S":-1,"TS":[0,11.9627,0,0]}]},{"x":2.648,"y":17.579,"w":0.741,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":" C ","S":-1,"TS":[0,11.9627,1,0]}]},{"x":11.478,"y":30.722,"w":1,"oc":"#2b2e34","sw":0.36459375,"A":"left","R":[{"T":"\u0001","S":-1,"TS":[2,8.975100000000001,0,0]}]},{"x":32.815,"y":10.579,"w":3.522,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Apt. no.","S":-1,"TS":[0,9.971,0,0]}]},{"x":3.566,"y":22.809,"w":7.365,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"If you answered ","S":-1,"TS":[0,11.9627,0,0]}]},{"x":7.801,"y":22.809,"w":2.55,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"“No” ","S":-1,"TS":[0,11.9627,1,0]}]},{"x":9.263,"y":22.809,"w":12.938,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"to 2a, will one be appointed?","S":-1,"TS":[0,11.9627,0,0]}]},{"x":3.565,"y":25.83,"w":7.365,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"If you answered ","S":-1,"TS":[0,11.9627,0,0]}]},{"x":7.598,"y":25.83,"w":2.55,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"“No” ","S":-1,"TS":[0,11.9627,1,0]}]},{"x":8.993,"y":25.83,"w":41.133,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"to 3, a refund cannot be made until you submit a court certificate showing your appointment","S":-1,"TS":[0,11.9627,0,0]}]},{"x":3.565,"y":26.453,"w":45.901,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"as personal representative or other evidence that you are entitled under state law to receive the refund.","S":-1,"TS":[0,11.9627,0,0]}]},{"x":29.399,"y":30.735,"w":1,"oc":"#2b2e34","sw":0.36459375,"A":"left","R":[{"T":"\u0001","S":-1,"TS":[2,8.975100000000001,0,0]}]},{"x":2.648,"y":46.657,"w":31.236,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"For Privacy Act and Paperwork Reduction Act Notice, see page 2.","S":-1,"TS":[0,10.9668,1,0]}]},{"x":3.535,"y":23.587,"w":7.365,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"If you answered ","S":-1,"TS":[0,11.9627,0,0]}]},{"x":7.77,"y":23.587,"w":2.976,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"“Yes” ","S":-1,"TS":[0,11.9627,1,0]}]},{"x":9.422,"y":23.587,"w":28.227,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"to 2a or 2b, the personal representative must file for the refund.","S":-1,"TS":[0,11.9627,0,0]}]},{"x":32.342,"y":20.452,"w":1.511,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11.9627,1,0]}]},{"x":34.187,"y":20.452,"w":1.174,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11.9627,1,0]}]},{"x":3.04,"y":22.824,"w":0.611,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11.9627,1,0]}]},{"x":28.316,"y":9.078,"w":13.373,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"Your social security number","S":-1,"TS":[0,9.971,1,0]}]},{"x":24.336,"y":8.453,"w":4.324,"oc":"#2b2e34","sw":0.36196875,"A":"left","R":[{"T":"//","S":-1,"TS":[0,11.9627,0,0]}]},{"x":33.275,"y":12.051,"w":9.336,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"ZIP","S":51,"TS":[0,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"CALY","EN":0},"TI":1302,"AM":0,"TU":"Calendar year.","x":6.261,"y":6.9,"w":2.429,"h":0.833,"MV":"yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YRB","EN":0},"TI":1303,"AM":0,"TU":"Other tax year beginning month.","x":15.218,"y":6.935,"w":6.081,"h":0.833,"MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YR1","EN":0},"TI":1304,"AM":0,"TU":"Beginning Tax Year.","x":21.611,"y":6.965,"w":2.269,"h":0.833,"MV":"yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YEND","EN":0},"TI":1305,"AM":0,"TU":"Ending tax month.","x":27.288,"y":6.922,"w":3.658,"h":0.833,"MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YR","EN":0},"TI":1306,"AM":0,"TU":"Ending tax year.","x":31.984,"y":6.895,"w":2.569,"h":0.833,"MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1307,"AM":0,"TU":"Name of decedent","x":4.77,"y":8.496,"w":17.693,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DTHD","EN":0},"TI":1308,"AM":0,"TU":"Date of death","x":22.908,"y":8.485,"w":5.014,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"DSSN","EN":0},"TI":1309,"AM":0,"TU":"Decedent’s social security number","x":28.17,"y":8.524,"w":7.595,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CNAM","EN":0},"TI":1310,"AM":0,"TU":"Name of person claiming refund","x":4.77,"y":10.02,"w":23.209,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"CSSN","EN":0},"TI":1311,"AM":0,"TU":"Your social security number","x":28.31,"y":9.989,"w":7.428,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDR","EN":0},"TI":1312,"AM":0,"TU":"Home address (number and street). If you have a P.O. box, see instructions.","x":4.824,"y":11.496,"w":27.523,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APTN","EN":0},"TI":1313,"AM":0,"TU":"Apt. no.","x":32.67,"y":11.473,"w":3.067,"h":0.843},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":1314,"AM":0,"TU":"City, town or post office. If you have a foreign address, see instructions.","x":4.77,"y":12.95,"w":23.194,"h":0.858},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STAT","EN":0},"TI":1315,"AM":0,"TU":"State","x":28.473,"y":12.887,"w":2.641,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"no entry"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":1316,"AM":0,"TU":"Zip code.","x":32.041,"y":12.901,"w":3.659,"h":0.889},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DATE","EN":0},"TI":1328,"AM":0,"TU":"Date.","x":30.318,"y":30.9,"w":5.455,"h":0.833,"MV":"mm/dd/yyyy"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXA","EN":0},"TI":1317,"AM":0,"TU":"Part I Checkboxes.","x":3.675,"y":15.339,"w":0.581,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXB","EN":0},"TI":1318,"AM":0,"TU":"Part I Checkboxes.","x":3.657,"y":16.069,"w":0.581,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXC","EN":0},"TI":1319,"AM":0,"TU":"Part I Checkboxes.","x":3.65,"y":17.559,"w":0.581,"h":0.833,"checked":false}],"id":{"Id":"BOXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1Y","EN":0},"TI":1320,"AM":0,"TU":"Line 1. Checkboxes.","x":32.206,"y":21.273,"w":1.697,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1N","EN":0},"TI":1321,"AM":0,"TU":"Line 1. Checkboxes.","x":33.999,"y":21.269,"w":1.697,"h":0.833,"checked":false}],"id":{"Id":"L1RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2AY","EN":0},"TI":1322,"AM":0,"TU":"Line 2a. Checkboxes.","x":32.202,"y":22.031,"w":1.697,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2AN","EN":0},"TI":1323,"AM":0,"TU":"Line 2a. Checkboxes.","x":34.026,"y":22.004,"w":1.697,"h":0.833,"checked":false}],"id":{"Id":"L2ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2BY","EN":0},"TI":1324,"AM":0,"TU":"Line 2b. Checkboxes.","x":32.222,"y":22.732,"w":1.697,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L2BN","EN":0},"TI":1325,"AM":0,"TU":"Line 2b. Checkboxes.","x":34.026,"y":22.739,"w":1.697,"h":0.833,"checked":false}],"id":{"Id":"L2BRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3Y","EN":0},"TI":1326,"AM":0,"TU":"Line 3. Checkboxes.","x":32.188,"y":24.984,"w":1.697,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L3N","EN":0},"TI":1327,"AM":0,"TU":"Line 3. Checkboxes.","x":33.999,"y":24.999,"w":1.697,"h":0.833,"checked":false}],"id":{"Id":"L3RB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F2106.json b/test/data/fd/form/F2106.json index d71dbc6c..54750d08 100755 --- a/test/data/fd/form/F2106.json +++ b/test/data/fd/form/F2106.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 2106","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":14.936},{"oc":"#221f1f","x":20.997,"y":5.234,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.066,"y":3.001,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":5.249,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":48.349},{"oc":"#221f1f","x":54.409,"y":6.751,"w":1.125,"l":24.836},{"oc":"#221f1f","x":79.159,"y":6.751,"w":1.125,"l":6.273},{"oc":"#221f1f","x":85.347,"y":6.751,"w":1.125,"l":6.273},{"oc":"#221f1f","x":91.534,"y":6.751,"w":1.125,"l":7.511},{"oc":"#221f1f","x":6.147,"y":7.948,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":53.299},{"oc":"#221f1f","x":59.359,"y":10.501,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.159,"y":10.501,"w":0.75,"l":19.886},{"oc":"#221f1f","x":59.359,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":10.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.072,"y":18.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":75.447,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":18.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":20.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":20.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":21.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":24.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":78.935,"y":27.001,"w":0.75,"l":3.763},{"oc":"#221f1f","x":78.935,"y":24.001,"w":0.75,"l":3.763},{"oc":"#221f1f","x":6.147,"y":27.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":29.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":63.072,"y":31.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.202,"y":31.501,"w":0.75,"l":3.713},{"oc":"#221f1f","x":79.202,"y":29.251,"w":0.75,"l":3.713},{"oc":"#221f1f","x":82.872,"y":31.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":39.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":39.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":39.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":39.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":39.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":39.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":42.001,"w":1.5,"l":47.111},{"oc":"#221f1f","x":53.172,"y":42.001,"w":1.5,"l":33.498},{"oc":"#221f1f","x":86.584,"y":42.001,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.031},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.769},{"oc":"#221f1f","x":84.152,"y":2.985,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.152,"y":4.019,"w":1.5,"l":1.26},{"oc":"#221f1f","x":54.452,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":5.985,"w":0.75,"l":0.789},{"dsh":1,"oc":"#221f1f","x":91.577,"y":5.985,"w":0.75,"l":0.789},{"dsh":1,"oc":"#221f1f","x":85.39,"y":5.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":8.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":8.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":59.402,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":75.49,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":63.115,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":75.49,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":63.115,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":18.728,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":18.728,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":62.63,"y":23.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":58.867,"y":23.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":75.172,"y":23.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":82.697,"y":24.001,"w":0.75,"l":3},{"oc":"#221f1f","x":78.935,"y":24.001,"w":0.75,"l":3},{"oc":"#221f1f","x":95.24,"y":23.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":63.115,"y":29.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":59.402,"y":29.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":75.49,"y":29.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":29.251,"w":0.75,"l":2.25},{"oc":"#221f1f","x":79.202,"y":29.251,"w":0.75,"l":2.25},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":59.402,"y":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":63.115,"y":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":75.49,"y":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":82.915,"y":31.485,"w":0.75,"l":3.789},{"oc":"#221f1f","x":79.202,"y":31.485,"w":0.75,"l":3.789},{"oc":"#221f1f","x":82.915,"y":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":63.115,"y":38.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":38.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.115,"y":35.236,"w":0.75,"l":3.031},{"oc":"#221f1f","x":59.402,"y":35.236,"w":0.75,"l":3.031},{"oc":"#221f1f","x":75.49,"y":35.236,"w":0.75,"l":3.789},{"oc":"#221f1f","x":82.915,"y":35.236,"w":0.75,"l":3.789},{"oc":"#221f1f","x":79.202,"y":35.236,"w":0.75,"l":3.789},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":3.789},{"oc":"#221f1f","x":82.915,"y":38.986,"w":0.75,"l":3.031},{"oc":"#221f1f","x":79.202,"y":38.986,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":38.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":41.236,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":7.073,"w":6.188,"h":0.875,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":10.501,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":82.915,"y":10.501,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":10.501,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":12.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":82.915,"y":12.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":12.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":14.251,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":82.915,"y":14.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":14.251,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":15.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":82.915,"y":15.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":15.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":63.115,"y":17.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":75.49,"y":17.251,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":17.251,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":18.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":78.935,"y":24.001,"w":3.763,"h":3,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":29.251,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":59.402,"y":31.501,"w":3.713,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":31.501,"w":3.713,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":59.402,"y":35.251,"w":3.713,"h":3,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":35.251,"w":3.713,"h":3.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.634,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.417,"y":2.634,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2106%20","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.7510000000000003,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.370000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.251,"w":13.557000000000004,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20(99)%20","S":-1,"TS":[0,9.370000000000001,0,0]}]},{"oc":"#221f1f","x":29.624,"y":2.434,"w":14.673000000000007,"clr":-1,"A":"left","R":[{"T":"Employee%20Business%20Expenses%20","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":40.865,"y":3.375,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":42.233,"y":3.4690000000000003,"w":17.893000000000008,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":24.147,"y":4.089,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.21,"y":4.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9689999999999999,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.295,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":90.001,"y":3.295,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.965,"y":3.8920000000000003,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":4.338,"w":6.074999999999999,"clr":-1,"A":"left","R":[{"T":"Sequence%20No","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.273,"y":4.338,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20%20%20","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":94.124,"y":4.338,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"129","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":5.15,"clr":-1,"A":"left","R":[{"T":"Your%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.89,"y":4.938,"w":15.003000000000005,"clr":-1,"A":"left","R":[{"T":"Occupation%20in%20which%20you%20incurred","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.275,"y":4.938,"w":4.556000000000001,"clr":-1,"A":"left","R":[{"T":"expenses%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":4.938,"w":11.003999999999998,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.838,"y":6.957,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":6.947,"w":30.680000000000017,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Employee%20Business%20Expenses%20and%20Reimbursements%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":8.729,"w":13.616000000000003,"clr":-1,"A":"left","R":[{"T":"Step%201%20%20Enter%20Your%20Expenses","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":65.444,"y":8.007,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Column%20A%20%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":62.906,"y":8.695,"w":8.781000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20Than%20Meals%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.705,"y":9.382,"w":8.207,"clr":-1,"A":"left","R":[{"T":"and%20Entertainment","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.229,"y":8.007,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Column%20B%20%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":85.271,"y":8.695,"w":5.465000000000002,"clr":-1,"A":"left","R":[{"T":"Meals%20and%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.024,"y":9.382,"w":6.243,"clr":-1,"A":"left","R":[{"T":"Entertainment","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.04,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":11.04,"w":28.910999999999987,"clr":-1,"A":"left","R":[{"T":"Vehicle%20expense%20from%20line%2022%20or%20line%2029.%20(Rural%20mail%20carriers%3A%20See%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.658,"y":11.727,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.383,"y":11.727,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"..................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":12.54,"w":1.112,"clr":-1,"A":"left","R":[{"T":"2%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":12.54,"w":30.804000000000002,"clr":-1,"A":"left","R":[{"T":"Parking%20fees%2C%20tolls%2C%20and%20transportation%2C%20including%20train%2C%20bus%2C%20etc.%2C%20that%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.655,"y":13.228,"w":3.333,"clr":-1,"A":"left","R":[{"T":"did%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.438,"y":13.228,"w":25.264,"clr":-1,"A":"left","R":[{"T":"%20involve%20overnight%20travel%20or%20commuting%20to%20and%20from%20work%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.101,"y":13.228,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":13.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":14.04,"w":1.112,"clr":-1,"A":"left","R":[{"T":"3%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":14.04,"w":30.262000000000015,"clr":-1,"A":"left","R":[{"T":"Travel%20expense%20while%20away%20from%20home%20overnight%2C%20including%20lodging%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":14.728,"w":10.779000000000003,"clr":-1,"A":"left","R":[{"T":"airplane%2C%20car%20rental%2C%20etc.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.779,"y":14.728,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.364,"y":14.728,"w":14.839000000000004,"clr":-1,"A":"left","R":[{"T":"%20include%20meals%20and%20entertainment","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.55,"y":14.728,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":15.54,"w":1.112,"clr":-1,"A":"left","R":[{"T":"4%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":15.54,"w":24.118000000000006,"clr":-1,"A":"left","R":[{"T":"Business%20expenses%20not%20included%20on%20lines%201%20through%203.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.489,"y":15.54,"w":3.4440000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.207,"y":15.54,"w":3.779,"clr":-1,"A":"left","R":[{"T":"%20include%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.657,"y":16.228,"w":11.06,"clr":-1,"A":"left","R":[{"T":"meals%20and%20entertainment","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.632,"y":16.228,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"..............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":16.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":17.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":17.84,"w":23.46800000000001,"clr":-1,"A":"left","R":[{"T":"Meals%20and%20entertainment%20expenses%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":17.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":17.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":18.541,"w":8.893,"clr":-1,"A":"left","R":[{"T":"6%20%20Total%20expenses.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.062,"y":18.541,"w":21.990000000000002,"clr":-1,"A":"left","R":[{"T":"In%20Column%20A%2C%20add%20lines%201%20through%204%20and%20enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.66,"y":19.228,"w":21.730000000000004,"clr":-1,"A":"left","R":[{"T":"result.%20In%20Column%20B%2C%20enter%20the%20amount%20from%20line%205","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.134,"y":19.228,"w":9.331,"clr":-1,"A":"left","R":[{"T":"......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":19.341,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":20.376,"w":5.613000000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20Note%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.249,"y":20.376,"w":48.397999999999946,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20not%20reimbursed%20for%20any%20expenses%20in%20Step%201%2C%20skip%20line%207%20and%20enter%20the%20amount%20from%20line%206%20on%20line%208.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":22.291,"w":43.84699999999995,"clr":-1,"A":"left","R":[{"T":"Step%202%20%20Enter%20Reimbursements%20Received%20From%20Your%20Employer%20for%20Expenses%20Listed%20in%20Step%201%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.605,"y":23.915,"w":1.112,"clr":-1,"A":"left","R":[{"T":"7%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.702,"y":23.915,"w":27.652999999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20reimbursements%20received%20from%20your%20employer%20that%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.931,"y":23.915,"w":1.555,"clr":-1,"A":"left","R":[{"T":"not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.707,"y":24.602,"w":30.398,"clr":-1,"A":"left","R":[{"T":"reported%20to%20you%20in%20box%201%20of%20Form%20W-2.%20Include%20any%20reimbursements%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.705,"y":25.29,"w":26.098999999999997,"clr":-1,"A":"left","R":[{"T":"reported%20under%20code%20%E2%80%9CL%E2%80%9D%20in%20box%2012%20of%20your%20Form%20W-2%20(see%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.707,"y":25.977,"w":5.445,"clr":-1,"A":"left","R":[{"T":"instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.32,"y":25.977,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.069,"y":26.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":27.541,"w":38.177,"clr":-1,"A":"left","R":[{"T":"Step%203%20%20Figure%20Expenses%20To%20Deduct%20on%20Schedule%20A%20(Form%201040%20or%20Form%201040NR)%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":29.103,"w":1.112,"clr":-1,"A":"left","R":[{"T":"8%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":29.103,"w":31.242999999999995,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%207%20from%20line%206.%20If%20zero%20or%20less%2C%20enter%20-0-.%20However%2C%20if%20%20line%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.66,"y":29.79,"w":29.97,"clr":-1,"A":"left","R":[{"T":"is%20greater%20than%20line%206%20in%20Column%20A%2C%20report%20the%20excess%20as%20%20income%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.666,"y":30.477,"w":20.322000000000006,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%207%20(or%20on%20Form%201040NR%2C%20line%208)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.078,"y":30.477,"w":10.664,"clr":-1,"A":"left","R":[{"T":".......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":30.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":32.005,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.981,"y":32.005,"w":6.556,"clr":-1,"A":"left","R":[{"T":"both%20columns","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":32.692,"w":29.469,"clr":-1,"A":"left","R":[{"T":"employee%20business%20expenses.%20Stop%20here%20and%20attach%20Form%202106%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":33.38,"w":5.408000000000001,"clr":-1,"A":"left","R":[{"T":"your%20return.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":35.228,"w":1.112,"clr":-1,"A":"left","R":[{"T":"9%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":35.227,"w":30.901000000000014,"clr":-1,"A":"left","R":[{"T":"In%20Column%20A%2C%20enter%20the%20amount%20from%20line%208.%20In%20Column%20B%2C%20multiply%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.644,"y":35.915,"w":30.73100000000001,"clr":-1,"A":"left","R":[{"T":"8%20by%2050%25%20(.50).%20(Employees%20subject%20to%20Department%20of%20Transportation%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.644,"y":36.602,"w":30.39299999999999,"clr":-1,"A":"left","R":[{"T":"(DOT)%20hours%20of%20service%20limits%3A%20Multiply%20meal%20expenses%20incurred%20while%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.647,"y":37.29,"w":28.451999999999998,"clr":-1,"A":"left","R":[{"T":"away%20from%20home%20on%20business%20by%2080%25%20(.80)%20instead%20of%2050%25.%20For%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.646,"y":37.977,"w":11.057,"clr":-1,"A":"left","R":[{"T":"details%2C%20see%20instructions.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.621,"y":37.977,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":38.091,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":38.915,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":38.915,"w":30.53,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20line%209%20of%20both%20columns%20and%20enter%20the%20total%20here.%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":52.017,"y":38.915,"w":11.113000000000005,"clr":-1,"A":"left","R":[{"T":"Also%2C%20enter%20the%20total%20on%20","S":-1,"TS":[0,11.82,1,0]}]},{"oc":"#221f1f","x":9.643,"y":39.603,"w":15.061000000000007,"clr":-1,"A":"left","R":[{"T":"Schedule%20A%20(Form%201040)%2C%20line%2021","S":-1,"TS":[0,11.82,1,0]}]},{"oc":"#221f1f","x":30.339,"y":39.603,"w":3.1300000000000003,"clr":-1,"A":"left","R":[{"T":"%20(or%20on%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":34.976,"y":39.603,"w":15.949000000000005,"clr":-1,"A":"left","R":[{"T":"Schedule%20A%20(Form%201040NR)%2C%20line%207","S":-1,"TS":[0,11.82,1,0]}]},{"oc":"#221f1f","x":57.016,"y":39.603,"w":7.649000000000001,"clr":-1,"A":"left","R":[{"T":").%20(Armed%20Forces%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":9.643,"y":40.29,"w":44.559999999999995,"clr":-1,"A":"left","R":[{"T":"reservists%2C%20%20qualified%20performing%20artists%2C%20fee-basis%20state%20or%20local%20government%20officials%2C%20and%20individuals%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":9.637,"y":40.988,"w":36.72499999999998,"clr":-1,"A":"left","R":[{"T":"with%20%20disabilities%3A%20See%20the%20instructions%20for%20special%20rules%20on%20where%20to%20enter%20the%20total.)%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":65.737,"y":40.988,"w":8.166,"clr":-1,"A":"left","R":[{"T":".....%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":75.661,"y":40.895,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.948,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":41.858,"w":33.23,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":65.169,"y":41.876,"w":7.484,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011700N","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":42.01,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":42.01,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2106","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":42.01,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":25.516,"y":4.09,"w":45.34799999999996,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%202106%20and%20its%20separate%20instructions%20is%20available%20at%20www.irs.gov%2Fform2106","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":13.864,"y":32.005,"w":0.5549999999999999,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.12,"y":32.005,"w":16.263000000000005,"clr":-1,"A":"left","R":[{"T":"of%20line%208%20are%20zero%2C%20you%20cannot%20deduct","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":873,"AM":1024,"x":6.229,"y":5.821,"w":48.098,"h":0.906,"TU":"Your name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":874,"AM":0,"x":54.594,"y":5.821,"w":24.482,"h":0.906,"TU":"Occupation in which you incurred expenses"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":875,"AM":1024,"x":79.359,"y":5.828,"w":19.642,"h":0.911},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":876,"AM":0,"x":63.319,"y":11.862,"w":11.983,"h":0.873,"TU":"Line 1. Vehicle expense from line 22 or line 29. (Rural mail carriers\" See instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":877,"AM":0,"x":63.298,"y":13.444,"w":12.024,"h":0.833,"TU":"Line 2. Parking fees, tolls, and transportation, including train, bus, etc. that did not involve overnight travel or commuting to and from work."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":878,"AM":0,"x":63.298,"y":14.944,"w":12.024,"h":0.833,"TU":"Line 3. Travel expense while away from home overnight, including lodging, airplane, car rental, etc. Do not include meals and entertainment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":879,"AM":0,"x":63.298,"y":16.416,"w":12.024,"h":0.833,"TU":"Line 4. Business expenses not included on lines 1 through 3. Do not include meals and entertainment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":880,"AM":0,"x":83.098,"y":17.862,"w":12.024,"h":0.866,"TU":"Line 5. Meals and Entertainment expenses (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6A","EN":0},"TI":881,"AM":1024,"x":63.298,"y":19.424,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6B","EN":0},"TI":882,"AM":1024,"x":83.098,"y":19.397,"w":12.024,"h":0.838,"TU":"Column B Meals and Entertainment_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7A","EN":0},"TI":883,"AM":0,"x":62.811,"y":26.077,"w":12.066,"h":0.873,"TU":"Line 7. Column A Other Than Meals and Entertainment. Enter reimbursements received from your employer that were not reported to you in box 1 of Form W-2. Include any reimbursements reported under Code \"L\" in box 12 of your Form W-2 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7B","EN":0},"TI":884,"AM":0,"x":82.847,"y":26.019,"w":12.066,"h":0.873,"TU":"Line 7. Column B Meals and Entertainment. Enter reimbursements received from your employer that were not reported to you in box 1 of Form W-2. Include any reimbursements reported under Code \"L\" in box 12 of your Form W-2 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":885,"AM":1024,"x":63.319,"y":30.638,"w":11.983,"h":0.847},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":886,"AM":1024,"x":83.354,"y":30.603,"w":11.983,"h":0.847},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":887,"AM":1024,"x":63.36,"y":38.287,"w":11.901,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10B","EN":0},"TI":888,"AM":0,"x":83.396,"y":38.275,"w":11.901,"h":0.833,"TU":"Line 9. In Column B, multiply line 8 by 50% (.50). (Employees subject to Department of Transportation (DOT) hours of service limits: Multiply meal expenses incurred while away from home on business by 80% (.80) instead of 50%. For details, see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":889,"AM":1024,"x":83.235,"y":41.077,"w":11.901,"h":0.885,"TU":"10"}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":86.711},{"oc":"#221f1f","x":92.772,"y":3.001,"w":1.5,"l":6.273},{"oc":"#221f1f","x":6.147,"y":3.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":5.251,"w":0.75,"l":58.249},{"oc":"#221f1f","x":64.309,"y":5.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.022,"y":5.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":5.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":64.309,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.022,"y":6.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":72.972,"y":6.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":77.922,"y":6.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":82.872,"y":6.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":89.059,"y":6.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":6.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":64.309,"y":6.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.022,"y":6.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":6.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":64.309,"y":7.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":7.501,"w":1.125,"l":14.936},{"oc":"#221f1f","x":82.872,"y":7.501,"w":1.125,"l":16.173},{"oc":"#221f1f","x":64.309,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.022,"y":8.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":8.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":64.309,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.022,"y":9.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":9.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":64.309,"y":9.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":9.751,"w":1.125,"l":14.936},{"oc":"#221f1f","x":82.872,"y":9.751,"w":1.125,"l":16.173},{"oc":"#221f1f","x":64.309,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":10.501,"w":1.125,"l":14.936},{"oc":"#221f1f","x":82.872,"y":10.501,"w":1.125,"l":16.173},{"oc":"#221f1f","x":6.147,"y":13.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":14.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":15.001,"w":1.125,"l":33.498},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":15.001,"w":1.125,"l":29.786},{"oc":"#221f1f","x":39.559,"y":15.751,"w":0.75,"l":29.786},{"oc":"#221f1f","x":69.238,"y":15.001,"w":1.125,"l":29.807},{"oc":"#221f1f","x":69.238,"y":15.751,"w":0.75,"l":29.807},{"oc":"#221f1f","x":35.847,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":39.559,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":15.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":51.934,"y":17.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":15.751,"w":0.75,"l":12.482},{"oc":"#221f1f","x":69.238,"y":17.251,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.613,"y":15.751,"w":0.75,"l":2.582},{"oc":"#221f1f","x":81.613,"y":17.251,"w":0.75,"l":2.582},{"oc":"#221f1f","x":35.847,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":18.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":17.251,"w":0.75,"l":12.482},{"oc":"#221f1f","x":66.784,"y":17.251,"w":0.75,"l":2.582},{"oc":"#221f1f","x":69.259,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":81.634,"y":18.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":17.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":18.751,"w":0.75,"l":12.482},{"oc":"#221f1f","x":66.784,"y":18.751,"w":0.75,"l":2.582},{"oc":"#221f1f","x":84.109,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":18.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":18.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":19.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.784,"y":19.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":18.751,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.613,"y":18.751,"w":0.75,"l":2.582},{"oc":"#221f1f","x":84.109,"y":19.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":19.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":22.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.409,"y":22.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":66.784,"y":22.501,"w":1.125,"l":2.561},{"oc":"#221f1f","x":84.109,"y":22.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.484,"y":22.501,"w":1.125,"l":2.561},{"oc":"#221f1f","x":35.847,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.784,"y":23.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":23.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.784,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":25.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.409,"y":25.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":66.784,"y":25.501,"w":1.125,"l":2.561},{"oc":"#221f1f","x":84.109,"y":25.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.484,"y":25.501,"w":1.125,"l":2.561},{"oc":"#221f1f","x":39.559,"y":27.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":27.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":27.001,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.613,"y":27.001,"w":0.75,"l":2.582},{"oc":"#221f1f","x":6.147,"y":27.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":27.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":35.847,"y":28.501,"w":0.75,"l":33.498},{"oc":"#221f1f","x":69.238,"y":28.501,"w":0.75,"l":29.807},{"oc":"#221f1f","x":35.847,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":28.501,"w":0.75,"l":12.482},{"oc":"#221f1f","x":54.409,"y":30.001,"w":0.75,"l":12.482},{"oc":"#221f1f","x":66.784,"y":28.501,"w":0.75,"l":2.582},{"oc":"#221f1f","x":66.784,"y":30.001,"w":0.75,"l":2.582},{"oc":"#221f1f","x":84.109,"y":28.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.109,"y":30.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":28.501,"w":0.75,"l":2.582},{"oc":"#221f1f","x":96.484,"y":30.001,"w":0.75,"l":2.582},{"oc":"#221f1f","x":35.847,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":30.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":39.559,"y":31.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":30.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":51.934,"y":31.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":30.001,"w":0.75,"l":12.482},{"oc":"#221f1f","x":69.238,"y":31.501,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.634,"y":30.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":81.634,"y":31.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":34.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":31.501,"w":0.75,"l":12.482},{"oc":"#221f1f","x":66.784,"y":31.501,"w":0.75,"l":2.582},{"oc":"#221f1f","x":69.259,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":81.634,"y":34.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":31.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":31.501,"w":0.75,"l":2.582},{"oc":"#221f1f","x":35.847,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":36.001,"w":0.75,"l":12.482},{"oc":"#221f1f","x":66.784,"y":36.001,"w":0.75,"l":2.582},{"oc":"#221f1f","x":84.109,"y":36.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":36.001,"w":0.75,"l":2.582},{"oc":"#221f1f","x":35.847,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":36.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":36.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":37.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.784,"y":37.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":36.001,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.634,"y":36.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":37.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":37.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":38.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":38.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":38.251,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.634,"y":38.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":51.934,"y":39.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":38.251,"w":0.75,"l":12.482},{"oc":"#221f1f","x":54.409,"y":39.751,"w":0.75,"l":12.482},{"oc":"#221f1f","x":66.784,"y":38.251,"w":0.75,"l":2.582},{"oc":"#221f1f","x":66.784,"y":39.751,"w":0.75,"l":2.582},{"oc":"#221f1f","x":84.109,"y":38.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.109,"y":39.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":38.251,"w":0.75,"l":2.582},{"oc":"#221f1f","x":96.484,"y":39.751,"w":0.75,"l":2.582},{"oc":"#221f1f","x":35.847,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":39.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":39.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":41.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.784,"y":41.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":39.751,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.634,"y":39.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":41.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":41.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":39.559,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":45.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":45.001,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.634,"y":45.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":45.001,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":68.065,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.352,"y":5.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":5.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":5.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":6.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":6.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":6.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":14.978,"w":0.75,"l":0.789},{"oc":"#221f1f","x":69.302,"y":14.978,"w":1.125,"l":0.789},{"oc":"#221f1f","x":35.89,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":15.736,"w":1.125,"l":1.531},{"oc":"#221f1f","x":84.152,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":17.236,"w":1.125,"l":0.781},{"oc":"#221f1f","x":81.677,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":17.986,"w":1.125,"l":0.781},{"oc":"#221f1f","x":81.677,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":18.736,"w":1.125,"l":0.781},{"oc":"#221f1f","x":84.152,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":19.485,"w":0.75,"l":3.039},{"oc":"#221f1f","x":39.602,"y":19.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":54.452,"y":19.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":66.827,"y":19.485,"w":0.75,"l":3.039},{"oc":"#221f1f","x":69.302,"y":19.485,"w":1.125,"l":3.031},{"oc":"#221f1f","x":84.152,"y":19.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":96.527,"y":19.485,"w":0.75,"l":3.039},{"oc":"#221f1f","x":35.89,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":22.485,"w":1.125,"l":0.781},{"oc":"#221f1f","x":84.152,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":23.235,"w":1.125,"l":1.531},{"oc":"#221f1f","x":84.152,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":39.602,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":69.302,"y":24.735,"w":1.125,"l":0.781},{"oc":"#221f1f","x":84.152,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":35.89,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":25.485,"w":1.125,"l":1.531},{"oc":"#221f1f","x":84.152,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":27.735,"w":1.125,"l":0.781},{"oc":"#221f1f","x":39.602,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":51.977,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":28.485,"w":1.125,"l":1.531},{"oc":"#221f1f","x":81.677,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":29.985,"w":1.125,"l":1.531},{"oc":"#221f1f","x":84.152,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":35.89,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":51.977,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":54.452,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":69.302,"y":31.485,"w":1.125,"l":3.031},{"oc":"#221f1f","x":81.677,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":84.152,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":39.602,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":34.485,"w":1.125,"l":1.531},{"oc":"#221f1f","x":84.152,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":35.985,"w":1.125,"l":1.531},{"oc":"#221f1f","x":84.152,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":37.486,"w":1.125,"l":0.781},{"oc":"#221f1f","x":84.152,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":51.977,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":38.235,"w":1.125,"l":1.531},{"oc":"#221f1f","x":81.677,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":39.736,"w":1.125,"l":1.531},{"oc":"#221f1f","x":84.152,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":41.236,"w":0.75,"l":3.781},{"oc":"#221f1f","x":39.602,"y":41.236,"w":0.75,"l":3.781},{"oc":"#221f1f","x":54.452,"y":41.236,"w":0.75,"l":3.781},{"oc":"#221f1f","x":66.827,"y":41.236,"w":0.75,"l":3.781},{"oc":"#221f1f","x":69.302,"y":41.236,"w":1.125,"l":3.781},{"oc":"#221f1f","x":84.152,"y":41.236,"w":0.75,"l":3.781},{"oc":"#221f1f","x":96.527,"y":41.236,"w":0.75,"l":3.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":3.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":15.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":15.751,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":15.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":15.751,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":54.452,"y":17.251,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":66.827,"y":17.251,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":84.152,"y":17.251,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":96.527,"y":17.251,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":54.452,"y":18.001,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":66.827,"y":18.001,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":84.152,"y":18.001,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":96.527,"y":18.001,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":18.751,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":18.751,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":18.751,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":18.751,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":19.501,"w":12.375,"h":3,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":19.501,"w":2.475,"h":3,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":19.501,"w":12.375,"h":3,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":19.501,"w":2.475,"h":3,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":22.501,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":22.501,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":22.501,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":22.501,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":23.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":23.251,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":23.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":23.251,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":24.751,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":24.751,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":24.751,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":24.751,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":25.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":25.501,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":25.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":25.501,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":54.452,"y":28.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":66.827,"y":28.501,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":84.152,"y":28.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":96.527,"y":28.501,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":30.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":30.001,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":30.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":30.001,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":54.452,"y":31.501,"w":12.375,"h":3,"clr":-1},{"oc":"#bfc0c4","x":66.827,"y":31.501,"w":2.475,"h":3,"clr":-1},{"oc":"#bfc0c4","x":84.152,"y":31.501,"w":12.375,"h":3,"clr":-1},{"oc":"#bfc0c4","x":96.527,"y":31.501,"w":2.475,"h":3,"clr":-1},{"oc":"#bfc0c4","x":54.452,"y":34.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":66.827,"y":34.501,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":84.152,"y":34.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":96.527,"y":34.501,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":36.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":36.001,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":36.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":36.001,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":37.501,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":37.501,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":37.501,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":37.501,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":54.452,"y":38.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":66.827,"y":38.251,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":84.152,"y":38.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":96.527,"y":38.251,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":39.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":39.751,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":39.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":39.751,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":41.251,"w":12.375,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":41.251,"w":2.475,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":41.251,"w":12.375,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":41.251,"w":2.475,"h":3.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.126,"w":8.134000000000002,"clr":-1,"A":"left","R":[{"T":"Form%202106%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.365,"y":2.01,"w":2.8520000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.797,"y":2.01,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":10,"TS":[0,14,1,0]}]},{"x":6.584,"y":2.822,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":2.822,"w":14.287000000000008,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Vehicle%20Expenses%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.54,"w":14.948000000000006,"clr":-1,"A":"left","R":[{"T":"Section%20A%2C%20General%20Information%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":26.615,"y":3.54,"w":17.357,"clr":-1,"A":"left","R":[{"T":"(You%20must%20complete%20this%20section%20if%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.228,"w":13.890000000000004,"clr":-1,"A":"left","R":[{"T":"are%20claiming%20vehicle%20expenses.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.771,"y":3.8760000000000003,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":73.434,"y":3.8760000000000003,"w":4.334,"clr":-1,"A":"left","R":[{"T":"Vehicle%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.211,"y":3.8760000000000003,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.932,"y":3.8760000000000003,"w":4.334,"clr":-1,"A":"left","R":[{"T":"Vehicle%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":5.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":5.09,"w":21.243000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20date%20the%20vehicle%20was%20placed%20in%20service","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.126,"y":5.09,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.098,"y":5.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":71.889,"y":5.028,"w":0.611,"clr":-1,"A":"left","R":[{"T":"%2F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.805,"y":5.028,"w":0.611,"clr":-1,"A":"left","R":[{"T":"%2F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.976,"y":5.028,"w":0.611,"clr":-1,"A":"left","R":[{"T":"%2F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.905,"y":5.028,"w":0.611,"clr":-1,"A":"left","R":[{"T":"%2F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":5.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.84,"w":20.893000000000004,"clr":-1,"A":"left","R":[{"T":"Total%20miles%20the%20vehicle%20was%20driven%20during%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":5.84,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.098,"y":5.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":78.882,"y":5.84,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.142,"y":5.84,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":6.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":6.59,"w":15.653000000000004,"clr":-1,"A":"left","R":[{"T":"Business%20miles%20included%20on%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":6.59,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.098,"y":6.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":78.882,"y":6.59,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.142,"y":6.59,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":7.34,"w":22.117000000000004,"clr":-1,"A":"left","R":[{"T":"Percent%20of%20business%20use.%20Divide%20line%2013%20by%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":7.34,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.098,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":80.946,"y":7.34,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.205,"y":7.34,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":8.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":20.042,"clr":-1,"A":"left","R":[{"T":"Average%20daily%20roundtrip%20commuting%20distance%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":8.09,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.098,"y":8.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":78.882,"y":8.09,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.142,"y":8.09,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":8.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.84,"w":16.822000000000003,"clr":-1,"A":"left","R":[{"T":"Commuting%20miles%20included%20on%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":8.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.098,"y":8.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":78.882,"y":8.84,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.142,"y":8.84,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":9.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":30.23400000000001,"clr":-1,"A":"left","R":[{"T":"Other%20miles.%20Add%20lines%2013%20and%2016%20and%20subtract%20the%20total%20from%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.567,"y":9.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.629,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.098,"y":9.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":78.882,"y":9.59,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.142,"y":9.59,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":10.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":29.800000000000008,"clr":-1,"A":"left","R":[{"T":"Was%20your%20vehicle%20available%20for%20personal%20use%20during%20off-duty%20hours%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":10.34,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.202,"y":10.34,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.627,"y":10.34,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":11.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.09,"w":32.651999999999994,"clr":-1,"A":"left","R":[{"T":"Do%20you%20(or%20your%20spouse)%20have%20another%20vehicle%20available%20for%20personal%20use%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.628,"y":11.09,"w":15.996,"clr":-1,"A":"left","R":[{"T":"...........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.202,"y":11.09,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.627,"y":11.09,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":11.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.84,"w":22.636000000000006,"clr":-1,"A":"left","R":[{"T":"Do%20you%20have%20evidence%20to%20support%20your%20deduction%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.191,"y":11.84,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.202,"y":11.84,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.627,"y":11.84,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":12.527,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.892,"y":12.527,"w":14.779000000000005,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20is%20the%20evidence%20written%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.814,"y":12.527,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.202,"y":12.59,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.627,"y":12.59,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":13.322,"w":16.115000000000002,"clr":-1,"A":"left","R":[{"T":"Section%20B%E2%80%9EStandard%20Mileage%20Rate%20","S":-1,"TS":[0,13.4,1,0]}]},{"oc":"#221f1f","x":29.749,"y":13.322,"w":39.893999999999984,"clr":-1,"A":"left","R":[{"T":"(See%20the%20instructions%20for%20Part%20II%20to%20find%20out%20whether%20to%20complete%20this%20section%20or%20Section%20C.)%20","S":-1,"TS":[0,12.4,0,0]}]},{"oc":"#221f1f","x":6.694,"y":14.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.772,"y":14.09,"w":29.196000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2013%20by%2056.5%C2%A2%20(.565).%20Enter%20the%20result%20here%20and%20on%20line%201","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":14.09,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":14.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":14.822,"w":13.171000000000006,"clr":-1,"A":"left","R":[{"T":"Section%20C%2C%20Actual%20Expenses","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":49.733,"y":14.84,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":52.397,"y":14.84,"w":4.334,"clr":-1,"A":"left","R":[{"T":"Vehicle%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.405,"y":14.84,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":82.126,"y":14.84,"w":4.334,"clr":-1,"A":"left","R":[{"T":"Vehicle%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":15.559000000000001,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":15.541,"w":13.037000000000004,"clr":-1,"A":"left","R":[{"T":"Gasoline%2C%20oil%2C%20repairs%2C%20vehicle%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":16.228,"w":6.835000000000001,"clr":-1,"A":"left","R":[{"T":"insurance%2C%20etc.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":16.228,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":16.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.735,"y":17.09,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"24a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.09,"w":6.500000000000001,"clr":-1,"A":"left","R":[{"T":"Vehicle%20rentals","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":17.09,"w":9.331,"clr":-1,"A":"left","R":[{"T":"......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.192,"y":17.09,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"24a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.398,"y":17.84,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":15.763000000000003,"clr":-1,"A":"left","R":[{"T":"Inclusion%20amount%20(see%20instructions)%20","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":32.751,"y":17.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":36.163,"y":17.84,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"24b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.455,"y":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":13.986000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2024b%20from%20line%2024a%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":32.751,"y":18.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":36.192,"y":18.59,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"24c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":19.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.403,"w":16.039,"clr":-1,"A":"left","R":[{"T":"Value%20of%20employer-provided%20vehicle%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.028,"w":14.003000000000005,"clr":-1,"A":"left","R":[{"T":"(applies%20only%20if%20100%25%20of%20annual%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.653,"w":15.428,"clr":-1,"A":"left","R":[{"T":"lease%20value%20was%20included%20on%20Form%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.277,"w":10.168000000000003,"clr":-1,"A":"left","R":[{"T":"W-2%E2%80%94see%20instructions)","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":26.565,"y":21.278,"w":6.665,"clr":-1,"A":"left","R":[{"T":"....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":21.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":22.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":22.34,"w":11.654000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2023%2C%2024c%2C%20and%2025.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.549,"y":22.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.611,"y":22.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":22.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":23.059,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.04,"w":15.375000000000009,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2026%20by%20the%20percentage%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.893,"y":23.728,"w":4.335000000000001,"clr":-1,"A":"left","R":[{"T":"on%20line%2014","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":18.318,"y":23.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":20.381,"y":23.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":22.445,"y":23.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":24.506,"y":23.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":26.57,"y":23.728,"w":7.02,"clr":-1,"A":"left","R":[{"T":"....%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":36.636,"y":23.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":24.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":13.501000000000001,"clr":-1,"A":"left","R":[{"T":"Depreciation%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":24.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":24.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":25.309,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.29,"w":14.598000000000004,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2027%20and%2028.%20Enter%20total%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":25.978,"w":7.984000000000001,"clr":-1,"A":"left","R":[{"T":"here%20and%20on%20line%201","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.501,"y":25.978,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":26.822,"w":17.339000000000002,"clr":-1,"A":"left","R":[{"T":"Section%20D%2C%20Depreciation%20of%20Vehicles%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":33.463,"y":26.822,"w":41.56099999999997,"clr":-1,"A":"left","R":[{"T":"(Use%20this%20section%20only%20if%20you%20owned%20the%20vehicle%20and%20are%20completing%20Section%20C%20for%20the%20vehicle.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.092,"y":27.501,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":50.756,"y":27.501,"w":6.0020000000000024,"clr":-1,"A":"left","R":[{"T":"Vehicle%201%20%20%20%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.405,"y":27.501,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":82.126,"y":27.501,"w":4.334,"clr":-1,"A":"left","R":[{"T":"Vehicle%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":28.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":28.324,"w":13.631000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20cost%20or%20other%20basis%20(see%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":28.949,"w":5.445,"clr":-1,"A":"left","R":[{"T":"instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.379,"y":28.949,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":29.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.825,"w":14.820000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20section%20179%20deduction%20and%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":10.887,"y":30.449,"w":16.018,"clr":-1,"A":"left","R":[{"T":"special%20allowance%20(see%20instructions)%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":36.636,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":31.558999999999997,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.564999999999998,"w":13.949000000000007,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2030%20by%20line%2014%20(see%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":32.24,"w":13.911000000000003,"clr":-1,"A":"left","R":[{"T":"instructions%20if%20you%20claimed%20the%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.915,"w":14.837000000000003,"clr":-1,"A":"left","R":[{"T":"section%20179%20deduction%20or%20special%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":33.59,"w":4.739000000000001,"clr":-1,"A":"left","R":[{"T":"allowance)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.318,"y":33.59,"w":11.997,"clr":-1,"A":"left","R":[{"T":"........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":33.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":34.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.29,"w":14.412000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20depreciation%20method%20and%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.977,"w":12.89,"clr":-1,"A":"left","R":[{"T":"percentage%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.751,"y":34.977,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.793,"w":15.65300000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2032%20by%20the%20percentage%20%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.418,"w":12.447000000000005,"clr":-1,"A":"left","R":[{"T":"on%20line%2033%20(see%20instructions)%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":30.689,"y":36.418,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":32.752,"y":36.418,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":36.636,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2031%20and%2034","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":37.34,"w":6.665,"clr":-1,"A":"left","R":[{"T":"....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":38.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.059,"w":16.17,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20applicable%20limit%20explained%20%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":10.891,"y":38.684,"w":11.411000000000003,"clr":-1,"A":"left","R":[{"T":"in%20the%20line%2036%20instructions%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":28.628,"y":38.684,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":30.69,"y":38.684,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":32.752,"y":38.684,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":36.636,"y":38.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.559,"w":15.375000000000009,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2036%20by%20the%20percentage%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.184,"w":4.335000000000001,"clr":-1,"A":"left","R":[{"T":"on%20line%2014","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":18.312,"y":40.184,"w":12.375,"clr":-1,"A":"left","R":[{"T":"........%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":36.636,"y":40.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.247,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.231,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.953,"y":41.231,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.484,"y":41.231,"w":7.3530000000000015,"clr":-1,"A":"left","R":[{"T":"of%20line%2035%20or%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.856,"w":15.581000000000007,"clr":-1,"A":"left","R":[{"T":"37.%20If%20you%20skipped%20lines%2036%20and%2037%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":42.481,"w":13.728000000000002,"clr":-1,"A":"left","R":[{"T":"enter%20the%20amount%20from%20line%2035.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":43.106,"w":15.209000000000005,"clr":-1,"A":"left","R":[{"T":"Also%20enter%20this%20%20amount%20on%20line%2028%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":43.731,"w":2.7409999999999997,"clr":-1,"A":"left","R":[{"T":"above","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.251,"y":43.731,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":44.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.01,"y":44.947,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.153,"y":44.947,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2106","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.453,"y":44.947,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":890,"AM":1024,"x":17.07,"y":2.069,"w":44.798,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":891,"AM":1024,"x":80.033,"y":2.096,"w":13.054,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A165_L12_1_","EN":0},"TI":892,"AM":0,"x":68.209,"y":5.342,"w":14.762,"h":0.833,"TU":"Enter the date the vehicle was placed in service","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A165_L12_2_","EN":0},"TI":893,"AM":0,"x":83.283,"y":5.282,"w":14.762,"h":0.833,"TU":"Enter the date the vehicle was placed in service","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L13_1_","EN":0},"TI":894,"AM":0,"x":68.06,"y":6.146,"w":10.944,"h":0.833,"TU":"Total miles the vehicle was driven during 2013"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L13_2_","EN":0},"TI":895,"AM":0,"x":83.134,"y":6.032,"w":10.944,"h":0.833,"TU":"Total miles the vehicle was driven during 2013"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L14_1_","EN":0},"TI":896,"AM":0,"x":68.12,"y":6.842,"w":10.958,"h":0.833,"TU":"Business miles included on line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L14_2_","EN":0},"TI":897,"AM":0,"x":83.269,"y":6.755,"w":10.958,"h":0.833,"TU":"Business miles included on line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L15_1_","EN":0},"TI":898,"AM":1024,"x":68.284,"y":7.592,"w":12.366,"h":0.833,"TU":"Percent of business use. Divide line 13 by line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L15_2_","EN":0},"TI":899,"AM":1024,"x":83.358,"y":7.532,"w":12.366,"h":0.833,"TU":"Percent of business use. Divide line 13 by line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L16_1_","EN":0},"TI":900,"AM":0,"x":68.168,"y":8.369,"w":10.835,"h":0.833,"TU":"Average daily roundtrip commuting distance"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L16_2_","EN":0},"TI":901,"AM":0,"x":83.242,"y":8.309,"w":10.835,"h":0.833,"TU":"Average daily roundtrip commuting distance"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L17_1_","EN":0},"TI":902,"AM":0,"x":68.161,"y":9.119,"w":10.992,"h":0.833,"TU":"Commuting miles included on line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L17_2_","EN":0},"TI":903,"AM":0,"x":83.235,"y":9.059,"w":10.992,"h":0.833,"TU":"Commuting miles included on line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L18_1_","EN":0},"TI":904,"AM":1024,"x":68.248,"y":9.823,"w":10.992,"h":0.833,"TU":"Commuting miles included on line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L18_2_","EN":0},"TI":905,"AM":1024,"x":83.322,"y":9.763,"w":10.992,"h":0.833,"TU":"Commuting miles included on line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":914,"AM":1024,"x":84.253,"y":14.288,"w":12.189,"h":0.833,"TU":"22"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L23_1_","EN":0},"TI":915,"AM":0,"x":54.636,"y":16.471,"w":12.024,"h":0.833,"TU":"Line 23(a). Gasoline, oil, repairs, vehicle insurance, etc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L23_2_","EN":0},"TI":916,"AM":0,"x":84.433,"y":16.463,"w":12.024,"h":0.833,"TU":"Line 23(b). Gasoline, oil, repairs, vehicle insurance, etc"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24A_1_","EN":0},"TI":917,"AM":0,"x":39.703,"y":17.315,"w":12.189,"h":0.833,"TU":"Line 24a (a). Vehicle rentals."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24A_2_","EN":0},"TI":918,"AM":0,"x":69.371,"y":17.258,"w":12.189,"h":0.833,"TU":"Line 24a (b). Vehicle rentals."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24B_1_","EN":0},"TI":919,"AM":0,"x":39.767,"y":18.088,"w":12.189,"h":0.833,"TU":"Line 24b (a). Inclusion amount (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24B_2_","EN":0},"TI":920,"AM":0,"x":69.371,"y":18.008,"w":12.189,"h":0.833,"TU":"Line 24b (b). Inclusion amount (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24C_1_","EN":0},"TI":921,"AM":1024,"x":54.763,"y":18.73,"w":12.025,"h":0.833,"TU":"(b) Vehicle 2_23"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24C_2_","EN":0},"TI":922,"AM":1024,"x":84.56,"y":18.723,"w":12.024,"h":0.833,"TU":"(b) Vehicle 2_23"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L25_1_","EN":0},"TI":923,"AM":0,"x":54.6,"y":21.78,"w":12.169,"h":0.833,"TU":"Line 25 (a). Value of employer- provided vehicle (applies only if 100% of annual lease value was included on Form W-2 - see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L25_2_","EN":0},"TI":924,"AM":0,"x":84.397,"y":21.772,"w":12.169,"h":0.833,"TU":"Line 25 (b). Value of employer- provided vehicle (applies only if 100% of annual lease value was included on Form W-2 - see instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L26_1_","EN":0},"TI":925,"AM":1024,"x":54.675,"y":22.557,"w":12.169,"h":0.833,"TU":"26. Add lines 23, 24c, and 25"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L26_2_","EN":0},"TI":926,"AM":1024,"x":84.472,"y":22.549,"w":12.169,"h":0.833,"TU":"26. Add lines 23, 24c, and 25"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L27_1_","EN":0},"TI":927,"AM":1024,"x":54.609,"y":23.942,"w":12.024,"h":0.833,"TU":"27. Multiply line 26 by the percentage on line 14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L27_2_","EN":0},"TI":928,"AM":1024,"x":84.406,"y":23.934,"w":12.024,"h":0.833,"TU":"27. Multiply line 26 by the percentage on line 14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L28_1_","EN":0},"TI":929,"AM":0,"x":54.756,"y":24.785,"w":11.784,"h":0.833,"TU":"Line 28 (a). Depreciation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L28_2_","EN":0},"TI":930,"AM":0,"x":84.553,"y":24.777,"w":11.784,"h":0.833,"TU":"Line 28 (b). Depreciation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L29_1_","EN":0},"TI":931,"AM":1024,"x":54.745,"y":26.216,"w":12.169,"h":0.833,"TU":"29. Add lines 27 and 28."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L29_2_","EN":0},"TI":932,"AM":1024,"x":84.297,"y":26.208,"w":12.169,"h":0.833,"TU":"29. Add lines 27 and 28."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L30_1_","EN":0},"TI":933,"AM":0,"x":39.786,"y":29.166,"w":12.024,"h":0.833,"TU":"Line 30 (a). Enter cost or other basis (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L30_2_","EN":0},"TI":934,"AM":0,"x":69.536,"y":29.114,"w":12.024,"h":0.833,"TU":"Line 30 (b). Enter cost or other basis (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L31_1_","EN":0},"TI":935,"AM":0,"x":54.608,"y":30.679,"w":12.004,"h":0.833,"TU":"Line 31 (a). Enter section 179 deduction and special allowance (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L31_2_","EN":0},"TI":936,"AM":0,"x":84.371,"y":30.672,"w":12.004,"h":0.833,"TU":"Line 31 (b). Enter section 179 deduction and special allowance (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L32_1_","EN":0},"TI":937,"AM":0,"x":39.848,"y":33.659,"w":12.275,"h":0.833,"TU":"Line 32 (a). Multiply line 30 by line 14 (see instructions if you claimed the section 179 deduction or special allowance)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L32_2_","EN":0},"TI":938,"AM":0,"x":69.598,"y":33.606,"w":12.275,"h":0.833,"TU":"Line 32 (b). Multiply line 30 by line 14 (see instructions if you claimed the section 179 deduction or special allowance)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A160_L33T_1_","EN":0},"TI":939,"AM":0,"x":39.692,"y":34.56,"w":14.499,"h":0.833,"TU":"Line 33 (a). Enter depreciation method (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A160_L33T_2_","EN":0},"TI":940,"AM":0,"x":69.442,"y":34.508,"w":14.499,"h":0.833,"TU":"Line 33 (b). Enter depreciation method (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L33_1_","EN":0},"TI":941,"AM":0,"x":39.786,"y":35.303,"w":14.499,"h":0.833,"TU":"Line 33 (a). Enter depreciation percentage (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L33_2_","EN":0},"TI":942,"AM":0,"x":69.536,"y":35.25,"w":14.499,"h":0.833,"TU":"Line 33 (b). Enter depreciation percentage (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L34_1_","EN":0},"TI":943,"AM":1024,"x":54.539,"y":36.708,"w":12.152,"h":0.833,"TU":"(b) Vehicle 2_30"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L34_2_","EN":0},"TI":944,"AM":1024,"x":84.301,"y":36.607,"w":12.153,"h":0.833,"TU":"(b) Vehicle 2_30"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L35_1_","EN":0},"TI":945,"AM":1024,"x":54.491,"y":37.555,"w":12.153,"h":0.833,"TU":"(b) Vehicle 2_30"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L35_2_","EN":0},"TI":946,"AM":1024,"x":84.254,"y":37.455,"w":12.152,"h":0.833,"TU":"(b) Vehicle 2_30"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L36_1_","EN":0},"TI":947,"AM":0,"x":39.786,"y":38.944,"w":12.024,"h":0.833,"TU":"Line 36 (a). Enter the applicable limit explained in the line 36 instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L36_2_","EN":0},"TI":948,"AM":0,"x":69.536,"y":38.891,"w":12.024,"h":0.833,"TU":"Line 36 (b). Enter the applicable limit explained in the line 36 instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L37_1_","EN":0},"TI":949,"AM":1024,"x":54.688,"y":40.522,"w":12.024,"h":0.833,"TU":"(b) Vehicle 2_31"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L37_2_","EN":0},"TI":950,"AM":1024,"x":84.451,"y":40.394,"w":12.024,"h":0.833,"TU":"(b) Vehicle 2_31"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L38_1_","EN":0},"TI":951,"AM":1024,"x":54.555,"y":44.184,"w":12.024,"h":0.833,"TU":"(b) Vehicle 2_31"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L38_2_","EN":0},"TI":952,"AM":1024,"x":84.318,"y":44.084,"w":12.024,"h":0.833,"TU":"(b) Vehicle 2_31"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20Y","EN":0},"TI":906,"AM":0,"x":85.274,"y":10.52,"w":1.597,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20N","EN":0},"TI":907,"AM":0,"x":92.711,"y":10.502,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"L20RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L19Y","EN":0},"TI":908,"AM":0,"x":85.324,"y":11.246,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L19N","EN":0},"TI":909,"AM":0,"x":92.761,"y":11.228,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"L19RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21AY","EN":0},"TI":910,"AM":0,"x":85.304,"y":12.001,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21AN","EN":0},"TI":911,"AM":0,"x":92.741,"y":11.983,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"L21ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21BY","EN":0},"TI":912,"AM":0,"x":85.359,"y":12.729,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21BN","EN":0},"TI":913,"AM":0,"x":92.796,"y":12.711,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"L21BRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Title":"2013 Form 2106 ","Author":"SE:W:CAR:MP","Subject":"Employee Business Expenses","Keywords":"Fillable","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131101093253-07'00'","ModDate":"D:20140108130608-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":5.251,"w":1.5,"l":5.431,"oc":"#221f1f"},{"x":7.635,"y":5.234,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.57,"y":3.001,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.57,"y":5.249,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.235,"y":6.751,"w":1.125,"l":17.581,"oc":"#221f1f"},{"x":19.785,"y":6.751,"w":1.125,"l":9.031,"oc":"#221f1f"},{"x":28.785,"y":6.751,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":31.035,"y":6.751,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":33.285,"y":6.751,"w":1.125,"l":2.731,"oc":"#221f1f"},{"x":2.235,"y":7.948,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":8.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":10.501,"w":0.75,"l":19.381,"oc":"#221f1f"},{"x":21.585,"y":10.501,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":10.501,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":21.585,"y":12.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":12.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":12.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":10.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":10.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":10.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":14.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":14.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":14.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":15.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":15.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":15.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":18.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.935,"y":18.751,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":27.435,"y":18.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":18.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":18.751,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":18.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":20.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":18.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":20.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":21.751,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":24.001,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":28.704,"y":27.001,"w":0.75,"l":1.368,"oc":"#221f1f"},{"x":28.704,"y":24.001,"w":0.75,"l":1.368,"oc":"#221f1f"},{"x":2.235,"y":27.001,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":29.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":22.935,"y":31.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.801,"y":31.501,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":28.801,"y":29.251,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":30.135,"y":31.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":39.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":39.001,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":39.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":39.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":39.001,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":39.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":42.001,"w":1.5,"l":17.131,"oc":"#221f1f"},{"x":19.335,"y":42.001,"w":1.5,"l":12.181,"oc":"#221f1f"},{"x":31.485,"y":42.001,"w":1.5,"l":4.531,"oc":"#221f1f"}],"VLines":[{"x":7.651,"y":2.235,"w":1.5,"l":3.031,"oc":"#221f1f"},{"x":30.601,"y":2.235,"w":1.5,"l":0.769,"oc":"#221f1f"},{"x":30.601,"y":2.985,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":4.019,"w":1.5,"l":1.26,"oc":"#221f1f"},{"x":19.801,"y":5.235,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":5.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":5.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":33.301,"y":5.985,"w":0.75,"l":0.789,"oc":"#221f1f","dsh":1},{"x":31.051,"y":5.985,"w":0.75,"l":0.789,"oc":"#221f1f","dsh":1},{"x":21.601,"y":8.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.801,"y":8.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.951,"y":10.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":21.601,"y":10.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":27.451,"y":10.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.151,"y":10.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.801,"y":10.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.151,"y":10.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.951,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.951,"y":14.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":14.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":14.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":14.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":14.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":14.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.951,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.951,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":21.601,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":22.951,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":27.451,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":30.151,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.651,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":22.951,"y":18.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":18.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":18.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":18.728,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":18.728,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.651,"y":18.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.775,"y":23.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":21.406,"y":23.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":27.335,"y":23.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":30.072,"y":24.001,"w":0.75,"l":3,"oc":"#221f1f"},{"x":28.704,"y":24.001,"w":0.75,"l":3,"oc":"#221f1f"},{"x":34.633,"y":23.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":22.951,"y":29.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":21.601,"y":29.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":27.451,"y":29.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.151,"y":29.251,"w":0.75,"l":2.25,"oc":"#221f1f"},{"x":28.801,"y":29.251,"w":0.75,"l":2.25,"oc":"#221f1f"},{"x":34.651,"y":29.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.951,"y":31.485,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":21.601,"y":31.485,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":22.951,"y":31.485,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":27.451,"y":31.485,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":30.151,"y":31.485,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":28.801,"y":31.485,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":30.151,"y":31.485,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":34.651,"y":31.485,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":22.951,"y":38.236,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":21.601,"y":38.236,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":22.951,"y":35.236,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":21.601,"y":35.236,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":27.451,"y":35.236,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":30.151,"y":35.236,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":28.801,"y":35.236,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":34.651,"y":35.236,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":30.151,"y":38.986,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":28.801,"y":38.986,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":34.651,"y":38.986,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.651,"y":41.236,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":7.073,"w":2.25,"h":0.875,"oc":"#221f1f"},{"x":28.801,"y":10.501,"w":1.35,"h":2.25,"oc":"#bfc0c4"},{"x":30.151,"y":10.501,"w":4.5,"h":2.25,"oc":"#bfc0c4"},{"x":34.651,"y":10.501,"w":1.35,"h":2.25,"oc":"#bfc0c4"},{"x":30.151,"y":12.751,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":30.151,"y":14.251,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":30.151,"y":15.751,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":22.951,"y":17.251,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":28.704,"y":24.001,"w":1.368,"h":3,"oc":"#bfc0c4"},{"x":28.801,"y":29.251,"w":1.35,"h":2.25,"oc":"#bfc0c4"},{"x":21.601,"y":31.501,"w":1.35,"h":3.75,"oc":"#bfc0c4"},{"x":28.801,"y":31.501,"w":1.35,"h":3.75,"oc":"#bfc0c4"},{"x":21.601,"y":35.251,"w":1.35,"h":3,"oc":"#bfc0c4"},{"x":28.801,"y":35.251,"w":1.35,"h":3.75,"oc":"#bfc0c4"}],"Texts":[{"x":2.001,"y":2.634,"w":2.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":3.265,"y":2.634,"w":2.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2106 ","S":-1,"TS":[0,28,1,0]}]},{"x":2.001,"y":3.7510000000000003,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.370000000000001,0,0]}]},{"x":2.001,"y":4.251,"w":13.557,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99) ","S":-1,"TS":[0,9.370000000000001,0,0]}]},{"x":10.613,"y":2.434,"w":14.673,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Employee Business Expenses ","S":-1,"TS":[0,24,1,0]}]},{"x":14.701,"y":3.375,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":15.076,"y":3.4690000000000003,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":48,"TS":[3,10,0,0]}]},{"x":15.198,"y":3.4690000000000003,"w":17.893,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach to Form 1040 or Form 1040NR.","S":8,"TS":[0,10,1,0]}]},{"x":8.622,"y":4.089,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":8.997,"y":4.09,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":48,"TS":[3,10,0,0]}]},{"x":29.008,"y":4.09,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":2,"TS":[0,10,0,0]}]},{"x":31.02,"y":1.9689999999999999,"w":9.561,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074 ","S":2,"TS":[0,10,0,0]}]},{"x":31.426,"y":3.295,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.568,"y":3.295,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":34.676,"y":3.295,"w":0.334,"oc":"#221f1f","sw":0.43490625,"A":"left","R":[{"T":" ","S":-1,"TS":[0,25,0,0]}]},{"x":31.101,"y":3.8920000000000003,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.101,"y":4.338,"w":6.075,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No","S":2,"TS":[0,10,0,0]}]},{"x":33.758,"y":4.338,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":1,"TS":[0,8,0,0]}]},{"x":34.068,"y":4.338,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"129","S":10,"TS":[0,14,1,0]}]},{"x":35.235,"y":4.338,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":4.938,"w":5.15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your name ","S":2,"TS":[0,10,0,0]}]},{"x":19.801,"y":4.938,"w":15.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Occupation in which you incurred","S":2,"TS":[0,10,0,0]}]},{"x":26.365,"y":4.938,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":26.486,"y":4.938,"w":4.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"expenses ","S":2,"TS":[0,10,0,0]}]},{"x":28.801,"y":4.938,"w":11.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Social security number","S":8,"TS":[0,10,1,0]}]},{"x":2.327,"y":6.957,"w":2.833,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":6.947,"w":30.68,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Employee Business Expenses and Reimbursements ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":8.729,"w":13.616,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Step 1 Enter Your Expenses","S":10,"TS":[0,14,1,0]}]},{"x":23.639,"y":8.007,"w":5.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Column A ","S":9,"TS":[0,12,1,0]}]},{"x":22.716,"y":8.695,"w":8.781,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other Than Meals ","S":3,"TS":[0,12,0,0]}]},{"x":22.643,"y":9.382,"w":8.207,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and Entertainment","S":3,"TS":[0,12,0,0]}]},{"x":30.833,"y":8.007,"w":5.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Column B ","S":9,"TS":[0,12,1,0]}]},{"x":30.849,"y":8.695,"w":5.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Meals and ","S":3,"TS":[0,12,0,0]}]},{"x":30.395,"y":9.382,"w":6.243,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Entertainment","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":11.04,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":11.04,"w":28.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle expense from line 22 or line 29. (Rural mail carriers: See ","S":3,"TS":[0,12,0,0]}]},{"x":3.353,"y":11.727,"w":5.723,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions.)","S":3,"TS":[0,12,0,0]}]},{"x":7.253,"y":11.727,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................. ","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":11.84,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":12.54,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":12.54,"w":30.804,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Parking fees, tolls, and transportation, including train, bus, etc., that ","S":3,"TS":[0,12,0,0]}]},{"x":3.352,"y":13.228,"w":3.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"did not","S":9,"TS":[0,12,1,0]}]},{"x":5.091,"y":13.228,"w":25.264,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" involve overnight travel or commuting to and from work ","S":3,"TS":[0,12,0,0]}]},{"x":19.877,"y":13.228,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":13.34,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":14.04,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":14.04,"w":30.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Travel expense while away from home overnight, including lodging, ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":14.728,"w":10.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"airplane, car rental, etc. ","S":3,"TS":[0,12,0,0]}]},{"x":8.851,"y":14.728,"w":3.166,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not","S":9,"TS":[0,12,1,0]}]},{"x":10.519,"y":14.728,"w":14.839,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" include meals and entertainment","S":3,"TS":[0,12,0,0]}]},{"x":19.314,"y":14.728,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":14.84,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":15.54,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":15.54,"w":24.118,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business expenses not included on lines 1 through 3. ","S":3,"TS":[0,12,0,0]}]},{"x":15.655,"y":15.54,"w":3.444,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not ","S":9,"TS":[0,12,1,0]}]},{"x":17.371,"y":15.54,"w":3.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" include ","S":3,"TS":[0,12,0,0]}]},{"x":3.352,"y":16.228,"w":11.06,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"meals and entertainment","S":3,"TS":[0,12,0,0]}]},{"x":10.253,"y":16.228,"w":19.995,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............. ","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":16.34,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":17.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":17.84,"w":23.468,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Meals and entertainment expenses (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":17.001,"y":17.84,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":17.84,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":18.541,"w":8.893,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 Total expenses. ","S":9,"TS":[0,12,1,0]}]},{"x":7.136,"y":18.541,"w":21.99,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"In Column A, add lines 1 through 4 and enter the ","S":3,"TS":[0,12,0,0]}]},{"x":21.06,"y":18.541,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.354,"y":19.228,"w":21.73,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"result. In Column B, enter the amount from line 5","S":3,"TS":[0,12,0,0]}]},{"x":16.253,"y":19.228,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...... ","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":19.341,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":20.376,"w":5.613,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Note: ","S":9,"TS":[0,12,1,0]}]},{"x":4.659,"y":20.376,"w":48.398,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you were not reimbursed for any expenses in Step 1, skip line 7 and enter the amount from line 6 on line 8. ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":22.291,"w":43.847,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Step 2 Enter Reimbursements Received From Your Employer for Expenses Listed in Step 1 ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":22.983,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":3.369,"y":22.983,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":21.157,"y":22.983,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":22.525,"y":22.983,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.086,"y":22.983,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":28.454,"y":22.983,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":29.823,"y":22.983,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":34.383,"y":22.983,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2.606,"y":23.915,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7 ","S":3,"TS":[0,12,0,0]}]},{"x":2.919,"y":24.602,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.919,"y":25.29,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.369,"y":23.915,"w":27.653,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter reimbursements received from your employer that were ","S":3,"TS":[0,12,0,0]}]},{"x":17.27,"y":23.915,"w":1.555,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"not","S":9,"TS":[0,12,1,0]}]},{"x":20.708,"y":23.915,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.371,"y":24.602,"w":30.398,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"reported to you in box 1 of Form W-2. Include any reimbursements ","S":3,"TS":[0,12,0,0]}]},{"x":3.37,"y":25.29,"w":25.821,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"reported under code “L” in box 12 of your Form W-2 (see ","S":3,"TS":[0,12,0,0]}]},{"x":21.134,"y":25.29,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.371,"y":25.977,"w":5.445,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions)","S":3,"TS":[0,12,0,0]}]},{"x":6.503,"y":25.977,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":21.684,"y":26.09,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":27.541,"w":38.177,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Step 3 Figure Expenses To Deduct on Schedule A (Form 1040 or Form 1040NR) ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":28.246,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":28.246,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":21.351,"y":28.246,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":22.701,"y":28.235,"w":1.39,"oc":"#272872","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":27.201,"y":28.235,"w":1.112,"oc":"#272872","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":28.551,"y":28.26,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":29.901,"y":28.235,"w":1.112,"oc":"#272872","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":34.401,"y":28.235,"w":1.112,"oc":"#272872","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":2.588,"y":29.103,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":29.79,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":29.103,"w":31.243,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 7 from line 6. If zero or less, enter -0-. However, if line 7 ","S":3,"TS":[0,12,0,0]}]},{"x":3.354,"y":29.79,"w":29.97,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"is greater than line 6 in Column A, report the excess as income on ","S":3,"TS":[0,12,0,0]}]},{"x":3.356,"y":30.477,"w":20.322,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040, line 7 (or on Form 1040NR, line 8)","S":3,"TS":[0,12,0,0]}]},{"x":15.506,"y":30.477,"w":10.664,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....... ","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":30.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":9,"TS":[0,12,1,0]}]},{"x":3.351,"y":32.005,"w":2.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Note: ","S":9,"TS":[0,12,1,0]}]},{"x":5.257,"y":32.005,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":5.288,"y":32.005,"w":6.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"both columns","S":9,"TS":[0,12,1,0]}]},{"x":9.08,"y":32.005,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":18.385,"y":32.005,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":32.692,"w":29.469,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"employee business expenses. Stop here and attach Form 2106 to ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":33.38,"w":5.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"your return. ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":35.228,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":35.915,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":36.603,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":37.29,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":35.227,"w":30.901,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"In Column A, enter the amount from line 8. In Column B, multiply line ","S":3,"TS":[0,12,0,0]}]},{"x":3.348,"y":35.915,"w":30.731,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8 by 50% (.50). (Employees subject to Department of Transportation ","S":3,"TS":[0,12,0,0]}]},{"x":3.348,"y":36.602,"w":30.393,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(DOT) hours of service limits: Multiply meal expenses incurred while ","S":3,"TS":[0,12,0,0]}]},{"x":3.349,"y":37.29,"w":28.452,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"away from home on business by 80% (.80) instead of 50%. For ","S":3,"TS":[0,12,0,0]}]},{"x":3.349,"y":37.977,"w":11.057,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"details, see instructions.)","S":3,"TS":[0,12,0,0]}]},{"x":10.249,"y":37.977,"w":18.662,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":38.091,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":38.915,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":39.603,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":40.29,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":38.915,"w":30.53,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add the amounts on line 9 of both columns and enter the total here. ","S":-1,"TS":[0,11.82,0,0]}]},{"x":18.756,"y":38.915,"w":11.113,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Also, enter the total on ","S":-1,"TS":[0,11.82,1,0]}]},{"x":3.347,"y":39.603,"w":15.061,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule A (Form 1040), line 21","S":-1,"TS":[0,11.82,1,0]}]},{"x":10.873,"y":39.603,"w":3.13,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (or on ","S":-1,"TS":[0,11.82,0,0]}]},{"x":12.559,"y":39.603,"w":15.949,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule A (Form 1040NR), line 7","S":-1,"TS":[0,11.82,1,0]}]},{"x":20.574,"y":39.603,"w":7.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"). (Armed Forces ","S":-1,"TS":[0,11.82,0,0]}]},{"x":3.347,"y":40.29,"w":44.56,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"reservists, qualified performing artists, fee-basis state or local government officials, and individuals ","S":-1,"TS":[0,11.82,0,0]}]},{"x":3.345,"y":40.988,"w":36.725,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"with disabilities: See the instructions for special rules on where to enter the total.) ","S":-1,"TS":[0,11.82,0,0]}]},{"x":23.745,"y":40.988,"w":6.805,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.82,0,0]}]},{"x":27.196,"y":40.988,"w":1.361,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.82,0,0]}]},{"x":27.354,"y":40.895,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":28.913,"y":41.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":41.858,"w":33.23,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see your tax return instructions.","S":-1,"TS":[0,11,1,0]}]},{"x":23.539,"y":41.876,"w":7.484,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11700N","S":2,"TS":[0,10,0,0]}]},{"x":31.897,"y":42.01,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":33.04,"y":42.01,"w":2.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2106","S":10,"TS":[0,14,1,0]}]},{"x":34.43,"y":42.01,"w":3.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":9.119,"y":4.09,"w":45.348,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Information about Form 2106 and its separate instructions is available at www.irs.gov/form2106","S":8,"TS":[0,10,1,0]}]},{"x":4.882,"y":32.005,"w":0.555,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"x":8.612,"y":32.005,"w":16.263,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of line 8 are zero, you cannot deduct","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1370,"AM":1024,"TU":"Your name","x":2.265,"y":5.821,"w":17.49,"h":0.906},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":1371,"AM":0,"TU":"Occupation in which you incurred expenses","x":19.852,"y":5.821,"w":8.903,"h":0.906},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1372,"AM":1024,"x":28.858,"y":5.828,"w":7.143,"h":0.911},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":1373,"AM":0,"TU":"Line 1. Vehicle expense from line 22 or line 29. (Rural mail carriers\" See instructions)","x":23.025,"y":11.862,"w":4.358,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":1374,"AM":0,"TU":"Line 2. Parking fees, tolls, and transportation, including train, bus, etc. that did not involve overnight travel or commuting to and from work.","x":23.017,"y":13.444,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1375,"AM":0,"TU":"Line 3. Travel expense while away from home overnight, including lodging, airplane, car rental, etc. Do not include meals and entertainment.","x":23.017,"y":14.944,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":1376,"AM":0,"TU":"Line 4. Business expenses not included on lines 1 through 3. Do not include meals and entertainment.","x":23.017,"y":16.416,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":1377,"AM":0,"TU":"Line 5. Meals and Entertainment expenses (see instructions).","x":30.218,"y":17.862,"w":4.373,"h":0.866},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6A","EN":0},"TI":1378,"AM":1024,"x":23.017,"y":19.424,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6B","EN":0},"TI":1379,"AM":1024,"TU":"Column B Meals and Entertainment_6","x":30.218,"y":19.397,"w":4.373,"h":0.838},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7A","EN":0},"TI":1380,"AM":0,"TU":"Line 7. Column A Other Than Meals and Entertainment. Enter reimbursements received from your employer that were not reported to you in box 1 of Form W-2. Include any reimbursements reported under Code \"L\" in box 12 of your Form W-2 (see instructions).","x":22.84,"y":26.077,"w":4.387,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7B","EN":0},"TI":1381,"AM":0,"TU":"Line 7. Column B Meals and Entertainment. Enter reimbursements received from your employer that were not reported to you in box 1 of Form W-2. Include any reimbursements reported under Code \"L\" in box 12 of your Form W-2 (see instructions).","x":30.126,"y":26.019,"w":4.388,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":1382,"AM":1024,"x":23.025,"y":30.638,"w":4.358,"h":0.847},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":1383,"AM":1024,"x":30.311,"y":30.603,"w":4.358,"h":0.847},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":1384,"AM":1024,"x":23.04,"y":38.287,"w":4.327,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10B","EN":0},"TI":1385,"AM":0,"TU":"Line 9. In Column B, multiply line 8 by 50% (.50). (Employees subject to Department of Transportation (DOT) hours of service limits: Multiply meal expenses incurred while away from home on business by 80% (.80) instead of 50%. For details, see instructions).","x":30.326,"y":38.275,"w":4.328,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":1386,"AM":1024,"TU":"10","x":30.267,"y":41.077,"w":4.327,"h":0.885}],"Boxsets":[]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":3.001,"w":1.5,"l":31.531,"oc":"#221f1f"},{"x":33.735,"y":3.001,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":3.751,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":5.251,"w":0.75,"l":21.181,"oc":"#221f1f"},{"x":23.385,"y":5.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":5.251,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":30.135,"y":5.251,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":23.385,"y":6.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":6.001,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":26.535,"y":6.001,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":28.335,"y":6.001,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":30.135,"y":6.001,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":32.385,"y":6.001,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":34.185,"y":6.001,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":23.385,"y":6.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":6.751,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":30.135,"y":6.751,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":23.385,"y":7.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":7.501,"w":1.125,"l":5.431,"oc":"#221f1f"},{"x":30.135,"y":7.501,"w":1.125,"l":5.881,"oc":"#221f1f"},{"x":23.385,"y":8.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":8.251,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":30.135,"y":8.251,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":23.385,"y":9.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":9.001,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":30.135,"y":9.001,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":23.385,"y":9.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":9.751,"w":1.125,"l":5.431,"oc":"#221f1f"},{"x":30.135,"y":9.751,"w":1.125,"l":5.881,"oc":"#221f1f"},{"x":23.385,"y":10.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":10.501,"w":1.125,"l":5.431,"oc":"#221f1f"},{"x":30.135,"y":10.501,"w":1.125,"l":5.881,"oc":"#221f1f"},{"x":2.235,"y":13.501,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":14.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":15.001,"w":1.125,"l":12.181,"oc":"#221f1f"},{"x":2.235,"y":15.751,"w":0.75,"l":12.181,"oc":"#221f1f"},{"x":14.385,"y":15.001,"w":1.125,"l":10.831,"oc":"#221f1f"},{"x":14.385,"y":15.751,"w":0.75,"l":10.831,"oc":"#221f1f"},{"x":25.177,"y":15.001,"w":1.125,"l":10.839,"oc":"#221f1f"},{"x":25.177,"y":15.751,"w":0.75,"l":10.839,"oc":"#221f1f"},{"x":13.035,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":15.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":14.385,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":15.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":18.885,"y":17.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":15.751,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":25.177,"y":17.251,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.677,"y":15.751,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":29.677,"y":17.251,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":13.035,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":18.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":18.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":19.785,"y":17.251,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":24.285,"y":17.251,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":25.185,"y":18.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":29.685,"y":18.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":17.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":18.751,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":24.285,"y":18.751,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":30.585,"y":18.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":18.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":19.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":18.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":18.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":19.785,"y":19.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":19.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":18.751,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.677,"y":18.751,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":30.585,"y":19.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":19.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":22.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":22.501,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":22.501,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":22.501,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":22.501,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":23.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":23.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":23.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":23.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":23.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":24.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":24.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":24.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":24.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":24.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":25.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":25.501,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":25.501,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":25.501,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":25.501,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":14.385,"y":27.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":27.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":27.001,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.677,"y":27.001,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":2.235,"y":27.001,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":27.751,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":13.035,"y":28.501,"w":0.75,"l":12.181,"oc":"#221f1f"},{"x":25.177,"y":28.501,"w":0.75,"l":10.839,"oc":"#221f1f"},{"x":13.035,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":28.501,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":19.785,"y":30.001,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":24.285,"y":28.501,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":24.285,"y":30.001,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":30.585,"y":28.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.585,"y":30.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":28.501,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":35.085,"y":30.001,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":13.035,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":30.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":14.385,"y":31.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":30.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":18.885,"y":31.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":30.001,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":25.177,"y":31.501,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.685,"y":30.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":29.685,"y":31.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":34.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":34.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":34.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":19.785,"y":31.501,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":24.285,"y":31.501,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":25.185,"y":34.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":29.685,"y":34.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":31.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":31.501,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":13.035,"y":36.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":36.001,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":24.285,"y":36.001,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":30.585,"y":36.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":36.001,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":13.035,"y":37.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":36.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":36.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":19.785,"y":37.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":37.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":36.001,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.685,"y":36.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":37.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":37.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":38.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":38.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":38.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":38.251,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.685,"y":38.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":39.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.885,"y":39.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":19.785,"y":38.251,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":19.785,"y":39.751,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":24.285,"y":38.251,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":24.285,"y":39.751,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":30.585,"y":38.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.585,"y":39.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":38.251,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":35.085,"y":39.751,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":13.035,"y":41.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":39.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":39.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":19.785,"y":41.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":41.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":39.751,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.685,"y":39.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":41.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":41.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":14.385,"y":45.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":45.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":45.001,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.685,"y":45.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":2.235,"y":45.001,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":24.751,"y":3.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":3.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":23.401,"y":5.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.751,"y":5.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":5.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.401,"y":5.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.751,"y":5.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":5.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.401,"y":6.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":24.751,"y":6.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":6.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":23.401,"y":7.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.751,"y":7.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":7.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.401,"y":8.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.751,"y":8.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":8.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.401,"y":8.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":24.751,"y":8.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":8.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":23.401,"y":9.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":24.751,"y":9.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":9.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.251,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":14.978,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":25.201,"y":14.978,"w":1.125,"l":0.789,"oc":"#221f1f"},{"x":13.051,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.401,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.301,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":15.736,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":17.236,"w":1.125,"l":0.781,"oc":"#221f1f"},{"x":29.701,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":17.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":17.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":17.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":17.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":17.986,"w":1.125,"l":0.781,"oc":"#221f1f"},{"x":29.701,"y":17.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":17.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.301,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":18.736,"w":1.125,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":19.485,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":14.401,"y":19.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":19.801,"y":19.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":24.301,"y":19.485,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":25.201,"y":19.485,"w":1.125,"l":3.031,"oc":"#221f1f"},{"x":30.601,"y":19.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":35.101,"y":19.485,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":13.051,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.301,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":22.485,"w":1.125,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.401,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.301,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":23.235,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":24.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":14.401,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.301,"y":24.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":25.201,"y":24.735,"w":1.125,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":24.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":13.051,"y":25.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.401,"y":25.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":25.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.301,"y":25.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":25.485,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":25.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":25.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":27.735,"w":1.125,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.901,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":28.485,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":29.701,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.401,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.301,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":29.985,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.401,"y":31.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":13.051,"y":31.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":18.901,"y":31.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":19.801,"y":31.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":25.201,"y":31.485,"w":1.125,"l":3.031,"oc":"#221f1f"},{"x":29.701,"y":31.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":30.601,"y":31.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":14.401,"y":34.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":34.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":34.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":34.485,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":34.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.401,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.301,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":35.985,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.301,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":37.486,"w":1.125,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.901,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":38.235,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":29.701,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":39.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.401,"y":39.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":39.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.301,"y":39.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":39.736,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":39.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":39.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":41.236,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":14.401,"y":41.236,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":19.801,"y":41.236,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":24.301,"y":41.236,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":25.201,"y":41.236,"w":1.125,"l":3.781,"oc":"#221f1f"},{"x":30.601,"y":41.236,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":35.101,"y":41.236,"w":0.75,"l":3.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":3.001,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":14.401,"y":15.751,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":25.201,"y":15.751,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":19.801,"y":17.251,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":30.601,"y":17.251,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":19.801,"y":18.001,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":30.601,"y":18.001,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":14.401,"y":18.751,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":25.201,"y":18.751,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":14.401,"y":19.501,"w":4.5,"h":3,"oc":"#bfc0c4"},{"x":18.901,"y":19.501,"w":0.9,"h":3,"oc":"#bfc0c4"},{"x":25.201,"y":19.501,"w":4.5,"h":3,"oc":"#bfc0c4"},{"x":29.701,"y":19.501,"w":0.9,"h":3,"oc":"#bfc0c4"},{"x":14.401,"y":22.501,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":25.201,"y":22.501,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":14.401,"y":23.251,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":25.201,"y":23.251,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":14.401,"y":24.751,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":25.201,"y":24.751,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":14.401,"y":25.501,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":25.201,"y":25.501,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":19.801,"y":28.501,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":30.601,"y":28.501,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":14.401,"y":30.001,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":25.201,"y":30.001,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":19.801,"y":31.501,"w":4.5,"h":3,"oc":"#bfc0c4"},{"x":24.301,"y":31.501,"w":0.9,"h":3,"oc":"#bfc0c4"},{"x":30.601,"y":31.501,"w":4.5,"h":3,"oc":"#bfc0c4"},{"x":35.101,"y":31.501,"w":0.9,"h":3,"oc":"#bfc0c4"},{"x":19.801,"y":34.501,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":30.601,"y":34.501,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":14.401,"y":36.001,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":25.201,"y":36.001,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":14.401,"y":37.501,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":25.201,"y":37.501,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":19.801,"y":38.251,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":30.601,"y":38.251,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":14.401,"y":39.751,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":25.201,"y":39.751,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":14.401,"y":41.251,"w":4.5,"h":3.75,"oc":"#bfc0c4"},{"x":18.901,"y":41.251,"w":0.9,"h":3.75,"oc":"#bfc0c4"},{"x":25.201,"y":41.251,"w":4.5,"h":3.75,"oc":"#bfc0c4"},{"x":29.701,"y":41.251,"w":0.9,"h":3.75,"oc":"#bfc0c4"}],"Texts":[{"x":2.001,"y":2.126,"w":8.134,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 2106 (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":34.156,"y":2.01,"w":2.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":2.01,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":10,"TS":[0,14,1,0]}]},{"x":2.235,"y":2.822,"w":3.128,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":2.822,"w":14.287,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Vehicle Expenses ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":3.54,"w":14.948,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Section A, General Information ","S":9,"TS":[0,12,1,0]}]},{"x":9.519,"y":3.54,"w":17.357,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(You must complete this section if you ","S":3,"TS":[0,12,0,0]}]},{"x":20.407,"y":3.54,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":4.228,"w":13.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"are claiming vehicle expenses.)","S":3,"TS":[0,12,0,0]}]},{"x":25.576,"y":3.8760000000000003,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(a) ","S":9,"TS":[0,12,1,0]}]},{"x":26.544,"y":3.8760000000000003,"w":4.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle 1 ","S":3,"TS":[0,12,0,0]}]},{"x":31.19,"y":3.8760000000000003,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(b) ","S":9,"TS":[0,12,1,0]}]},{"x":32.18,"y":3.8760000000000003,"w":4.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle 2 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":5.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":5.09,"w":21.243,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the date the vehicle was placed in service","S":3,"TS":[0,12,0,0]}]},{"x":16.25,"y":5.09,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":23.513,"y":5.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":9,"TS":[0,12,1,0]}]},{"x":25.982,"y":5.028,"w":0.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/ ","S":3,"TS":[0,12,0,0]}]},{"x":27.77,"y":5.028,"w":0.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/ ","S":3,"TS":[0,12,0,0]}]},{"x":31.832,"y":5.028,"w":0.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/ ","S":3,"TS":[0,12,0,0]}]},{"x":33.624,"y":5.028,"w":0.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/ ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":5.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":5.84,"w":20.893,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total miles the vehicle was driven during 2013 ","S":3,"TS":[0,12,0,0]}]},{"x":16.251,"y":5.84,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":23.513,"y":5.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":9,"TS":[0,12,1,0]}]},{"x":28.525,"y":5.84,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":34.438,"y":5.84,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":6.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":6.59,"w":15.653,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business miles included on line 12 ","S":3,"TS":[0,12,0,0]}]},{"x":13.251,"y":6.59,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":23.513,"y":6.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":9,"TS":[0,12,1,0]}]},{"x":28.525,"y":6.59,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":34.438,"y":6.59,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":7.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":7.34,"w":22.117,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Percent of business use. Divide line 13 by line 12 ","S":3,"TS":[0,12,0,0]}]},{"x":16.251,"y":7.34,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":23.513,"y":7.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":9,"TS":[0,12,1,0]}]},{"x":29.276,"y":7.34,"w":1.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"% ","S":3,"TS":[0,12,0,0]}]},{"x":35.188,"y":7.34,"w":1.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"% ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":8.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":8.09,"w":20.042,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Average daily roundtrip commuting distance ","S":3,"TS":[0,12,0,0]}]},{"x":15.501,"y":8.09,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":23.513,"y":8.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15 ","S":9,"TS":[0,12,1,0]}]},{"x":28.525,"y":8.09,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":34.438,"y":8.09,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":8.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":8.84,"w":16.822,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Commuting miles included on line 12 ","S":3,"TS":[0,12,0,0]}]},{"x":14.001,"y":8.84,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":23.513,"y":8.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16 ","S":9,"TS":[0,12,1,0]}]},{"x":28.525,"y":8.84,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":34.438,"y":8.84,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":9.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"17 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":9.59,"w":30.234,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other miles. Add lines 13 and 16 and subtract the total from line 12 ","S":3,"TS":[0,12,0,0]}]},{"x":21.502,"y":9.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":22.252,"y":9.59,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":3,"TS":[0,12,0,0]}]},{"x":23.513,"y":9.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"17 ","S":9,"TS":[0,12,1,0]}]},{"x":28.525,"y":9.59,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":34.438,"y":9.59,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":10.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"18 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":10.34,"w":29.8,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Was your vehicle available for personal use during off-duty hours? ","S":3,"TS":[0,12,0,0]}]},{"x":20.751,"y":10.34,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":31.551,"y":10.34,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.251,"y":10.34,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.276,"y":11.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"19 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":11.09,"w":32.652,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you (or your spouse) have another vehicle available for personal use? ","S":3,"TS":[0,12,0,0]}]},{"x":22.251,"y":11.09,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":29.926,"y":11.09,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":31.551,"y":11.09,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.251,"y":11.09,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.276,"y":11.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":11.84,"w":22.636,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you have evidence to support your deduction? ","S":3,"TS":[0,12,0,0]}]},{"x":17.001,"y":11.84,"w":23.994,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":31.551,"y":11.84,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.251,"y":11.84,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.276,"y":12.527,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8019999999999996,"y":12.527,"w":14.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If “Yes,” is the evidence written? ","S":3,"TS":[0,12,0,0]}]},{"x":12.501,"y":12.527,"w":31.992,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"x":31.551,"y":12.59,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.251,"y":12.59,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":13.322,"w":16.115,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Section B„Standard Mileage Rate ","S":-1,"TS":[0,13.4,1,0]}]},{"x":10.659,"y":13.322,"w":39.894,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(See the instructions for Part II to find out whether to complete this section or Section C.) ","S":-1,"TS":[0,12.4,0,0]}]},{"x":2.275,"y":14.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22 ","S":9,"TS":[0,12,1,0]}]},{"x":3.758,"y":14.09,"w":29.196,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 13 by 56.5¢ (.565). Enter the result here and on line 1","S":3,"TS":[0,12,0,0]}]},{"x":20.751,"y":14.09,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":29.363,"y":14.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22 ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":14.822,"w":13.171,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Section C, Actual Expenses","S":10,"TS":[0,14,1,0]}]},{"x":10.473,"y":14.822,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":17.926,"y":14.84,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(a) ","S":9,"TS":[0,12,1,0]}]},{"x":18.894,"y":14.84,"w":4.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle 1 ","S":3,"TS":[0,12,0,0]}]},{"x":21.332,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":21.489,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":21.645,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":21.801,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":21.958,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":22.114,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":28.715,"y":14.84,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(b) ","S":9,"TS":[0,12,1,0]}]},{"x":29.705,"y":14.84,"w":4.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle 2 ","S":3,"TS":[0,12,0,0]}]},{"x":32.143,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.299,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.455,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.612,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.768,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.925,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":15.559000000000001,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":15.541,"w":13.037,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Gasoline, oil, repairs, vehicle ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":16.228,"w":6.835,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"insurance, etc. ","S":3,"TS":[0,12,0,0]}]},{"x":8.001,"y":16.228,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":16.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23 ","S":9,"TS":[0,12,1,0]}]},{"x":2.29,"y":17.09,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24a ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":17.09,"w":6.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle rentals","S":3,"TS":[0,12,0,0]}]},{"x":8.001,"y":17.09,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":12.076,"y":17.09,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":13.002,"y":17.09,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24a ","S":9,"TS":[0,12,1,0]}]},{"x":2.895,"y":17.84,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":17.84,"w":15.763,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Inclusion amount (see instructions) ","S":-1,"TS":[0,10.65,0,0]}]},{"x":11.75,"y":17.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.65,0,0]}]},{"x":12.991,"y":17.84,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24b ","S":9,"TS":[0,12,1,0]}]},{"x":2.915,"y":18.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":18.59,"w":13.986,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 24b from line 24a ","S":-1,"TS":[0,11.46,0,0]}]},{"x":11.75,"y":18.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"x":13.002,"y":18.59,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24c ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":19.403,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"25 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":19.403,"w":16.039,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Value of employer-provided vehicle ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.801,"y":20.028,"w":14.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(applies only if 100% of annual ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.801,"y":20.653,"w":15.428,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"lease value was included on Form ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.801,"y":21.277,"w":10.168,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"W-2—see instructions)","S":-1,"TS":[0,11.55,0,0]}]},{"x":9.501,"y":21.278,"w":5.332,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"x":12.076,"y":21.278,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":21.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"25 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":22.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":22.34,"w":11.654,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 23, 24c, and 25.","S":3,"TS":[0,12,0,0]}]},{"x":10.95,"y":22.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":11.699,"y":22.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":12.025,"y":22.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":22.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":23.059,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":23.04,"w":15.375,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 26 by the percentage ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.8019999999999996,"y":23.728,"w":4.335,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on line 14","S":-1,"TS":[0,11.55,0,0]}]},{"x":6.502,"y":23.728,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":7.252,"y":23.728,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":8.003,"y":23.728,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":8.752,"y":23.728,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":9.503,"y":23.728,"w":5.616,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11.55,0,0]}]},{"x":12.079,"y":23.728,"w":1.404,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.55,0,0]}]},{"x":13.163,"y":23.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":24.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":24.59,"w":13.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Depreciation (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":11.751,"y":24.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":24.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":25.309,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"29 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":25.29,"w":14.598,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 27 and 28. Enter total ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":25.978,"w":7.984,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"here and on line 1","S":3,"TS":[0,12,0,0]}]},{"x":8.75,"y":25.978,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":26.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"29 ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":26.822,"w":17.339,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Section D, Depreciation of Vehicles ","S":9,"TS":[0,12,1,0]}]},{"x":12.009,"y":26.822,"w":41.561,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Use this section only if you owned the vehicle and are completing Section C for the vehicle.) ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":27.447,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":17.173,"y":27.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":17.329,"y":27.501,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(a) ","S":9,"TS":[0,12,1,0]}]},{"x":18.298,"y":27.501,"w":6.002,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle 1 ","S":3,"TS":[0,12,0,0]}]},{"x":28.715,"y":27.501,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(b) ","S":9,"TS":[0,12,1,0]}]},{"x":29.705,"y":27.501,"w":4.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle 2 ","S":3,"TS":[0,12,0,0]}]},{"x":32.143,"y":27.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.299,"y":27.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.455,"y":27.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.612,"y":27.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.768,"y":27.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.925,"y":27.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":28.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"30 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":28.324,"w":13.353,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter cost or other basis (see ","S":3,"TS":[0,12,0,0]}]},{"x":12.837,"y":28.324,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8019999999999996,"y":28.949,"w":5.445,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions)","S":3,"TS":[0,12,0,0]}]},{"x":7.251,"y":28.949,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":29.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"30 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":29.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"31 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":29.825,"w":14.82,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter section 179 deduction and ","S":-1,"TS":[0,11.73,0,0]}]},{"x":3.8,"y":30.449,"w":16.018,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"special allowance (see instructions) ","S":-1,"TS":[0,11.73,0,0]}]},{"x":13.163,"y":30.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"31 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":31.558999999999997,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":31.564999999999998,"w":13.671,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 30 by line 14 (see ","S":3,"TS":[0,12,0,0]}]},{"x":12.763,"y":31.564999999999998,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":32.24,"w":13.633,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions if you claimed the ","S":3,"TS":[0,12,0,0]}]},{"x":12.861,"y":32.24,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":32.915,"w":14.837,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"section 179 deduction or special ","S":3,"TS":[0,12,0,0]}]},{"x":3.8019999999999996,"y":33.59,"w":4.739,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"allowance)","S":3,"TS":[0,12,0,0]}]},{"x":6.502,"y":33.59,"w":10.664,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"x":12.076,"y":33.59,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":33.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":34.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"33 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":34.29,"w":14.134,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter depreciation method and ","S":3,"TS":[0,12,0,0]}]},{"x":12.858,"y":34.29,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":34.977,"w":12.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"percentage (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":11.75,"y":34.977,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":12.076,"y":34.977,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":35.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"33 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":35.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"34 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":35.793,"w":15.653,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 32 by the percentage ","S":-1,"TS":[0,11.64,0,0]}]},{"x":3.801,"y":36.418,"w":12.447,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on line 33 (see instructions) ","S":-1,"TS":[0,11.64,0,0]}]},{"x":11.001,"y":36.418,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.64,0,0]}]},{"x":11.751,"y":36.418,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.64,0,0]}]},{"x":13.163,"y":36.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"34 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":37.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"35 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":37.34,"w":8.893,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 31 and 34","S":3,"TS":[0,12,0,0]}]},{"x":9.501,"y":37.34,"w":5.332,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"x":12.076,"y":37.34,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":37.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"35 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":38.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"36 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":38.059,"w":16.17,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the applicable limit explained ","S":-1,"TS":[0,11.46,0,0]}]},{"x":3.801,"y":38.684,"w":11.411,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"in the line 36 instructions ","S":-1,"TS":[0,11.46,0,0]}]},{"x":10.251,"y":38.684,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"x":11.001,"y":38.684,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"x":11.751,"y":38.684,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"x":13.163,"y":38.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"36 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":39.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"37 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":39.559,"w":15.375,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 36 by the percentage ","S":-1,"TS":[0,11.73,0,0]}]},{"x":3.8,"y":40.184,"w":4.335,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on line 14","S":-1,"TS":[0,11.73,0,0]}]},{"x":6.5,"y":40.184,"w":11,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.73,0,0]}]},{"x":12.077,"y":40.184,"w":1.375,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.73,0,0]}]},{"x":13.163,"y":40.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"37 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":41.247,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"38 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":41.231,"w":4.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":6.006,"y":41.231,"w":3.78,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"smaller ","S":9,"TS":[0,12,1,0]}]},{"x":8.017,"y":41.231,"w":7.353,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of line 35 or line ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":41.856,"w":15.581,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"37. If you skipped lines 36 and 37, ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":42.481,"w":13.728,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"enter the amount from line 35. ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":43.106,"w":15.209,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Also enter this amount on line 28 ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":43.731,"w":2.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"above","S":3,"TS":[0,12,0,0]}]},{"x":5.75,"y":43.731,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":44.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"38 ","S":9,"TS":[0,12,1,0]}]},{"x":31.845,"y":44.947,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":32.987,"y":44.947,"w":2.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2106","S":10,"TS":[0,14,1,0]}]},{"x":34.377,"y":44.947,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":34.551,"y":44.947,"w":3.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(2013) ","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":2330,"AM":1024,"x":6.207,"y":2.069,"w":16.29,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2331,"AM":1024,"x":29.103,"y":2.096,"w":4.747,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A165_L12_1_","EN":0},"TI":2332,"AM":0,"TU":"Enter the date the vehicle was placed in service","x":24.803,"y":5.342,"w":5.368,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A165_L12_2_","EN":0},"TI":2333,"AM":0,"TU":"Enter the date the vehicle was placed in service","x":30.285,"y":5.282,"w":5.368,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L13_1_","EN":0},"TI":2334,"AM":0,"TU":"Total miles the vehicle was driven during 2013","x":24.749,"y":6.146,"w":3.98,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L13_2_","EN":0},"TI":2335,"AM":0,"TU":"Total miles the vehicle was driven during 2013","x":30.23,"y":6.032,"w":3.979,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L14_1_","EN":0},"TI":2336,"AM":0,"TU":"Business miles included on line 12","x":24.771,"y":6.842,"w":3.985,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L14_2_","EN":0},"TI":2337,"AM":0,"TU":"Business miles included on line 12","x":30.279,"y":6.755,"w":3.985,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L15_1_","EN":0},"TI":2338,"AM":1024,"TU":"Percent of business use. Divide line 13 by line 12","x":24.831,"y":7.592,"w":4.497,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L15_2_","EN":0},"TI":2339,"AM":1024,"TU":"Percent of business use. Divide line 13 by line 12","x":30.312,"y":7.532,"w":4.497,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L16_1_","EN":0},"TI":2340,"AM":0,"TU":"Average daily roundtrip commuting distance","x":24.788,"y":8.369,"w":3.94,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L16_2_","EN":0},"TI":2341,"AM":0,"TU":"Average daily roundtrip commuting distance","x":30.27,"y":8.309,"w":3.94,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L17_1_","EN":0},"TI":2342,"AM":0,"TU":"Commuting miles included on line 12","x":24.786,"y":9.119,"w":3.997,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L17_2_","EN":0},"TI":2343,"AM":0,"TU":"Commuting miles included on line 12","x":30.267,"y":9.059,"w":3.997,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L18_1_","EN":0},"TI":2344,"AM":1024,"TU":"Commuting miles included on line 12","x":24.817,"y":9.823,"w":3.997,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L18_2_","EN":0},"TI":2345,"AM":1024,"TU":"Commuting miles included on line 12","x":30.299,"y":9.763,"w":3.997,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":2354,"AM":1024,"TU":"22","x":30.637,"y":14.288,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L23_1_","EN":0},"TI":2355,"AM":0,"TU":"Line 23(a). Gasoline, oil, repairs, vehicle insurance, etc.","x":19.867,"y":16.471,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L23_2_","EN":0},"TI":2356,"AM":0,"TU":"Line 23(b). Gasoline, oil, repairs, vehicle insurance, etc","x":30.703,"y":16.463,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24A_1_","EN":0},"TI":2357,"AM":0,"TU":"Line 24a (a). Vehicle rentals.","x":14.438,"y":17.315,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24A_2_","EN":0},"TI":2358,"AM":0,"TU":"Line 24a (b). Vehicle rentals.","x":25.226,"y":17.258,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24B_1_","EN":0},"TI":2359,"AM":0,"TU":"Line 24b (a). Inclusion amount (see instructions).","x":14.461,"y":18.088,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24B_2_","EN":0},"TI":2360,"AM":0,"TU":"Line 24b (b). Inclusion amount (see instructions).","x":25.226,"y":18.008,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24C_1_","EN":0},"TI":2361,"AM":1024,"TU":"(b) Vehicle 2_23","x":19.914,"y":18.73,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24C_2_","EN":0},"TI":2362,"AM":1024,"TU":"(b) Vehicle 2_23","x":30.749,"y":18.723,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L25_1_","EN":0},"TI":2363,"AM":0,"TU":"Line 25 (a). Value of employer- provided vehicle (applies only if 100% of annual lease value was included on Form W-2 - see instructions)","x":19.855,"y":21.78,"w":4.425,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L25_2_","EN":0},"TI":2364,"AM":0,"TU":"Line 25 (b). Value of employer- provided vehicle (applies only if 100% of annual lease value was included on Form W-2 - see instructions","x":30.69,"y":21.772,"w":4.425,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L26_1_","EN":0},"TI":2365,"AM":1024,"TU":"26. Add lines 23, 24c, and 25","x":19.882,"y":22.557,"w":4.425,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L26_2_","EN":0},"TI":2366,"AM":1024,"TU":"26. Add lines 23, 24c, and 25","x":30.717,"y":22.549,"w":4.425,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L27_1_","EN":0},"TI":2367,"AM":1024,"TU":"27. Multiply line 26 by the percentage on line 14","x":19.858,"y":23.942,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L27_2_","EN":0},"TI":2368,"AM":1024,"TU":"27. Multiply line 26 by the percentage on line 14","x":30.693,"y":23.934,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L28_1_","EN":0},"TI":2369,"AM":0,"TU":"Line 28 (a). Depreciation.","x":19.911,"y":24.785,"w":4.285,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L28_2_","EN":0},"TI":2370,"AM":0,"TU":"Line 28 (b). Depreciation.","x":30.746,"y":24.777,"w":4.285,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L29_1_","EN":0},"TI":2371,"AM":1024,"TU":"29. Add lines 27 and 28.","x":19.907,"y":26.216,"w":4.425,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L29_2_","EN":0},"TI":2372,"AM":1024,"TU":"29. Add lines 27 and 28.","x":30.653,"y":26.208,"w":4.425,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L30_1_","EN":0},"TI":2373,"AM":0,"TU":"Line 30 (a). Enter cost or other basis (see instructions).","x":14.467,"y":29.166,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L30_2_","EN":0},"TI":2374,"AM":0,"TU":"Line 30 (b). Enter cost or other basis (see instructions).","x":25.286,"y":29.114,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L31_1_","EN":0},"TI":2375,"AM":0,"TU":"Line 31 (a). Enter section 179 deduction and special allowance (see instructions).","x":19.857,"y":30.679,"w":4.365,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L31_2_","EN":0},"TI":2376,"AM":0,"TU":"Line 31 (b). Enter section 179 deduction and special allowance (see instructions)","x":30.68,"y":30.672,"w":4.365,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L32_1_","EN":0},"TI":2377,"AM":0,"TU":"Line 32 (a). Multiply line 30 by line 14 (see instructions if you claimed the section 179 deduction or special allowance).","x":14.49,"y":33.659,"w":4.464,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L32_2_","EN":0},"TI":2378,"AM":0,"TU":"Line 32 (b). Multiply line 30 by line 14 (see instructions if you claimed the section 179 deduction or special allowance).","x":25.308,"y":33.606,"w":4.464,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A160_L33T_1_","EN":0},"TI":2379,"AM":0,"TU":"Line 33 (a). Enter depreciation method (see instructions).","x":14.434,"y":34.56,"w":5.272,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A160_L33T_2_","EN":0},"TI":2380,"AM":0,"TU":"Line 33 (b). Enter depreciation method (see instructions)","x":25.252,"y":34.508,"w":5.272,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L33_1_","EN":0},"TI":2381,"AM":0,"TU":"Line 33 (a). Enter depreciation percentage (see instructions).","x":14.467,"y":35.303,"w":5.273,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L33_2_","EN":0},"TI":2382,"AM":0,"TU":"Line 33 (b). Enter depreciation percentage (see instructions).","x":25.286,"y":35.25,"w":5.272,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L34_1_","EN":0},"TI":2383,"AM":1024,"TU":"(b) Vehicle 2_30","x":19.832,"y":36.708,"w":4.419,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L34_2_","EN":0},"TI":2384,"AM":1024,"TU":"(b) Vehicle 2_30","x":30.655,"y":36.607,"w":4.419,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L35_1_","EN":0},"TI":2385,"AM":1024,"TU":"(b) Vehicle 2_30","x":19.815,"y":37.555,"w":4.419,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L35_2_","EN":0},"TI":2386,"AM":1024,"TU":"(b) Vehicle 2_30","x":30.638,"y":37.455,"w":4.419,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L36_1_","EN":0},"TI":2387,"AM":0,"TU":"Line 36 (a). Enter the applicable limit explained in the line 36 instructions.","x":14.467,"y":38.944,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L36_2_","EN":0},"TI":2388,"AM":0,"TU":"Line 36 (b). Enter the applicable limit explained in the line 36 instructions.","x":25.286,"y":38.891,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L37_1_","EN":0},"TI":2389,"AM":1024,"TU":"(b) Vehicle 2_31","x":19.887,"y":40.522,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L37_2_","EN":0},"TI":2390,"AM":1024,"TU":"(b) Vehicle 2_31","x":30.709,"y":40.394,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L38_1_","EN":0},"TI":2391,"AM":1024,"TU":"(b) Vehicle 2_31","x":19.838,"y":44.184,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L38_2_","EN":0},"TI":2392,"AM":1024,"TU":"(b) Vehicle 2_31","x":30.661,"y":44.084,"w":4.372,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20Y","EN":0},"TI":2346,"AM":0,"x":31.009,"y":10.52,"w":0.581,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20N","EN":0},"TI":2347,"AM":0,"x":33.713,"y":10.502,"w":0.581,"h":0.833,"checked":false}],"id":{"Id":"L20RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L19Y","EN":0},"TI":2348,"AM":0,"x":31.027,"y":11.246,"w":0.581,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L19N","EN":0},"TI":2349,"AM":0,"x":33.731,"y":11.228,"w":0.581,"h":0.833,"checked":false}],"id":{"Id":"L19RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21AY","EN":0},"TI":2350,"AM":0,"x":31.02,"y":12.001,"w":0.581,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21AN","EN":0},"TI":2351,"AM":0,"x":33.724,"y":11.983,"w":0.581,"h":0.833,"checked":false}],"id":{"Id":"L21ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21BY","EN":0},"TI":2352,"AM":0,"x":31.04,"y":12.729,"w":0.581,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21BN","EN":0},"TI":2353,"AM":0,"x":33.744,"y":12.711,"w":0.581,"h":0.833,"checked":false}],"id":{"Id":"L21BRB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F2106EZ.json b/test/data/fd/form/F2106EZ.json index 33571f05..74a7ea51 100755 --- a/test/data/fd/form/F2106EZ.json +++ b/test/data/fd/form/F2106EZ.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":84.066,"y":3.001,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":47.111},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":47.111},{"oc":"#221f1f","x":53.172,"y":5.251,"w":1.5,"l":26.073},{"oc":"#221f1f","x":53.172,"y":6.751,"w":0.75,"l":26.073},{"oc":"#221f1f","x":79.159,"y":5.251,"w":1.5,"l":19.886},{"oc":"#221f1f","x":79.159,"y":6.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":85.347,"y":6.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":91.534,"y":6.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":6.147,"y":13.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.159,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":38.322,"y":24.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":79.159,"y":26.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":26.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":26.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":30.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":31.501,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":69.259,"y":33.001,"w":0.75,"l":5.036},{"dsh":1,"oc":"#221f1f","x":74.209,"y":33.001,"w":0.75,"l":6.273},{"dsh":1,"oc":"#221f1f","x":80.397,"y":33.001,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":18.522,"y":36.001,"w":0.75,"l":16.173},{"dsh":1,"oc":"#221f1f","x":59.359,"y":36.001,"w":0.75,"l":14.936},{"dsh":1,"oc":"#221f1f","x":82.872,"y":36.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":42.001,"w":1.5,"l":45.818},{"oc":"#221f1f","x":51.934,"y":42.001,"w":1.5,"l":32.261},{"oc":"#221f1f","x":84.109,"y":42.001,"w":1.5,"l":14.936},{"oc":"#bfbfbf","x":-0.75,"y":49.5,"w":0.75,"l":1.499}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.152,"y":2.985,"w":1.5,"l":2.297},{"oc":"#221f1f","x":53.215,"y":5.22,"w":0.75,"l":1.547},{"oc":"#221f1f","x":79.202,"y":5.22,"w":0.75,"l":0.797},{"oc":"#221f1f","x":79.202,"y":5.97,"w":0.75,"l":0.797},{"dsh":1,"oc":"#221f1f","x":91.577,"y":5.97,"w":0.75,"l":0.797},{"dsh":1,"oc":"#221f1f","x":85.39,"y":5.97,"w":0.75,"l":0.797},{"oc":"#221f1f","x":82.915,"y":14.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":14.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":20.985,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.235,"w":0.75,"l":3.039},{"oc":"#221f1f","x":79.202,"y":23.235,"w":0.75,"l":3.039},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":2.297},{"oc":"#221f1f","x":95.29,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":26.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":79.202,"y":26.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":26.235,"w":0.75,"l":3.047},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":13.872,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":30.323,"w":6.188,"h":0.743,"clr":-1},{"x":69.302,"y":32.251,"w":4.95,"h":0.75,"clr":1},{"x":74.252,"y":32.251,"w":6.188,"h":0.75,"clr":1},{"x":80.44,"y":32.251,"w":12.375,"h":0.75,"clr":1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.367,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.417,"y":2.367,"w":3.835,"clr":-1,"A":"left","R":[{"T":"2106-EZ","S":-1,"TS":[0,22,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.8760000000000003,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.23,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.313,"w":13.557000000000006,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20%20(99)","S":-1,"TS":[0,9.23,0,0]}]},{"oc":"#221f1f","x":28.669,"y":2.789,"w":21.452000000000012,"clr":-1,"A":"left","R":[{"T":"Unreimbursed%20Employee%20Business%20Expenses","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":39.323,"y":3.473,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.691,"y":3.566,"w":17.893000000000008,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":22.104,"y":4.223,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":82.229,"y":4.316,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9729999999999999,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.3310000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":90.001,"y":3.3310000000000004,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.793,"y":3.8129999999999997,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.793,"y":4.385,"w":6.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.761,"y":4.385,"w":2.39,"clr":-1,"A":"left","R":[{"T":"129A","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":4.872,"clr":-1,"A":"left","R":[{"T":"Your%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.652,"y":4.938,"w":19.559000000000005,"clr":-1,"A":"left","R":[{"T":"Occupation%20in%20which%20you%20incurred%20expenses","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.984,"y":4.938,"w":10.942000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":6.59,"w":27.504999999999995,"clr":-1,"A":"left","R":[{"T":"You%20Can%20Use%20This%20Form%20Only%20if%20All%20of%20the%20Following%20Apply.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":7.5280000000000005,"w":56.65899999999994,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20are%20an%20employee%20deducting%20ordinary%20and%20necessary%20expenses%20attributable%20to%20your%20job.%20An%20ordinary%20expense%20is%20one%20that%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.943,"y":8.778,"w":38.118999999999986,"clr":-1,"A":"left","R":[{"T":"your%20business.%20An%20expense%20does%20not%20have%20to%20be%20required%20to%20be%20considered%20necessary.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.943,"y":9.653,"w":2.834,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.879,"y":9.653,"w":3.0549999999999997,"clr":-1,"A":"left","R":[{"T":"do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.159,"y":9.653,"w":53.864999999999945,"clr":-1,"A":"left","R":[{"T":"%20get%20reimbursed%20by%20your%20employer%20for%20any%20expenses%20(amounts%20your%20employer%20included%20in%20box%201%20of%20your%20Form%20W-2%20are%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.95,"y":10.278,"w":20.338,"clr":-1,"A":"left","R":[{"T":"considered%20reimbursements%20for%20this%20purpose).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.95,"y":11.028,"w":38.87799999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20are%20claiming%20vehicle%20expense%2C%20you%20are%20using%20the%20standard%20mileage%20rate%20for%202013.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":11.789,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":-1,"TS":[0,11.28,1,0]}]},{"oc":"#221f1f","x":11.596,"y":11.789,"w":21.34,"clr":-1,"A":"left","R":[{"T":"You%20can%20use%20the%20standard%20mileage%20rate%20for%202013%20","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":38.596,"y":11.789,"w":5.056000000000001,"clr":-1,"A":"left","R":[{"T":"only%20if%3A%20(a)%20","S":-1,"TS":[0,11.28,1,0]}]},{"oc":"#221f1f","x":45.265,"y":11.789,"w":33.19099999999999,"clr":-1,"A":"left","R":[{"T":"you%20owned%20the%20vehicle%20and%20used%20the%20standard%20mileage%20rate%20for%20the%20first%20year","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":5.936,"y":12.464,"w":14.964000000000006,"clr":-1,"A":"left","R":[{"T":"you%20placed%20the%20vehicle%20in%20service%2C%20","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":24.997,"y":12.464,"w":2.7409999999999997,"clr":-1,"A":"left","R":[{"T":"or%20(b)%20","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":28.726,"y":12.464,"w":46.02899999999997,"clr":-1,"A":"left","R":[{"T":"you%20leased%20the%20vehicle%20and%20used%20the%20standard%20mileage%20rate%20for%20the%20portion%20of%20the%20lease%20period%20after%201997.","S":-1,"TS":[0,11.28,0,0]}]},{"x":6.838,"y":13.694,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":13.635,"w":10.559000000000005,"clr":-1,"A":"left","R":[{"T":"Figure%20Your%20Expenses","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":15.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":30.971999999999998,"clr":-1,"A":"left","R":[{"T":"Complete%20Part%20II.%20Multiply%20line%208a%20by%2056.5%C2%A2%20(.565).%20Enter%20the%20result%20here","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":15.59,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":15.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.04,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.04,"w":30.526000000000003,"clr":-1,"A":"left","R":[{"T":"Parking%20fees%2C%20tolls%2C%20and%20transportation%2C%20including%20train%2C%20bus%2C%20etc.%2C%20that%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.701,"y":17.04,"w":3.333,"clr":-1,"A":"left","R":[{"T":"did%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.329,"y":17.04,"w":8.112,"clr":-1,"A":"left","R":[{"T":"%20involve%20overnight%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":17.727,"w":17.152,"clr":-1,"A":"left","R":[{"T":"travel%20or%20commuting%20to%20and%20from%20work%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.931,"y":17.727,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":17.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":19.29,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.29,"w":41.04099999999998,"clr":-1,"A":"left","R":[{"T":"Travel%20expense%20while%20away%20from%20home%20overnight%2C%20including%20lodging%2C%20airplane%2C%20car%20rental%2C%20etc.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.231,"y":19.29,"w":1.611,"clr":-1,"A":"left","R":[{"T":"Do%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":19.977,"w":1.555,"clr":-1,"A":"left","R":[{"T":"not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.295,"y":19.977,"w":15.117000000000004,"clr":-1,"A":"left","R":[{"T":"%20include%20meals%20and%20entertainment%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.876,"y":19.977,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":20.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":21.54,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.54,"w":24.118000000000006,"clr":-1,"A":"left","R":[{"T":"Business%20expenses%20not%20included%20on%20lines%201%20through%203.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.886,"y":21.54,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":49.709,"y":21.54,"w":8.67,"clr":-1,"A":"left","R":[{"T":"%20include%20meals%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":22.228,"w":6.447000000000001,"clr":-1,"A":"left","R":[{"T":"entertainment%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.436,"y":22.228,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":22.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":23.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.84,"w":17.302000000000003,"clr":-1,"A":"left","R":[{"T":"Meals%20and%20entertainment%20expenses%3A%20%20%20%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.465,"y":23.84,"w":15.901000000000002,"clr":-1,"A":"left","R":[{"T":"%C3%97%20%2050%25%20(.50).%20(Employees%20subject%20to","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.54,"w":41.322999999999986,"clr":-1,"A":"left","R":[{"T":"Department%20of%20Transportation%20(DOT)%20hours%20of%20service%20limits%3A%20Multiply%20meal%20expenses%20incurred%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":25.227,"w":42.08199999999998,"clr":-1,"A":"left","R":[{"T":"while%20away%20from%20home%20on%20business%20by%2080%25%20(.80)%20instead%20of%2050%25.%20For%20details%2C%20see%20instructions.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":25.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":26.915,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.915,"w":7.781000000000001,"clr":-1,"A":"left","R":[{"T":"Total%20expenses.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.537,"y":26.915,"w":18.08000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20through%205.%20Enter%20here%20and%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.01,"y":26.915,"w":15.617000000000006,"clr":-1,"A":"left","R":[{"T":"%20Schedule%20A%20(Form%201040)%2C%20line%2021%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":70.238,"y":26.915,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":27.602,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.951,"y":27.602,"w":15.949000000000005,"clr":-1,"A":"left","R":[{"T":"Schedule%20A%20(Form%201040NR)%2C%20line%207","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.092,"y":27.602,"w":22.908,"clr":-1,"A":"left","R":[{"T":").%20(Armed%20Forces%20reservists%2C%20fee-basis%20state%20or%20local%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.29,"w":39.801,"clr":-1,"A":"left","R":[{"T":"government%20officials%2C%20qualified%20performing%20artists%2C%20and%20individuals%20with%20disabilities%3A%20See%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":28.977,"w":27.004000000000005,"clr":-1,"A":"left","R":[{"T":"instructions%20for%20special%20rules%20on%20where%20to%20enter%20this%20amount.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.379,"y":28.977,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":29.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":30.136,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":30.14,"w":13.892000000000003,"clr":-1,"A":"left","R":[{"T":"Information%20on%20Your%20Vehicle.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":38.304,"y":30.14,"w":8.280000000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":50.644,"y":30.14,"w":2.612,"clr":-1,"A":"left","R":[{"T":"%20only%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":55.005,"y":30.14,"w":19.89200000000001,"clr":-1,"A":"left","R":[{"T":"if%20you%20are%20claiming%20vehicle%20expense%20on%20line%201.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":32.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":35.73,"clr":-1,"A":"left","R":[{"T":"When%20did%20you%20place%20your%20vehicle%20in%20service%20for%20business%20use%3F%20(month%2C%20day%2C%20year)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.159,"y":31.996000000000002,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.364,"y":32.09,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.551,"y":32.09,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":33.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":33.59,"w":52.162999999999954,"clr":-1,"A":"left","R":[{"T":"Of%20the%20total%20number%20of%20miles%20you%20drove%20your%20vehicle%20during%202013%2C%20enter%20the%20number%20of%20miles%20you%20used%20your%20vehicle%20for%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.414,"y":35.058,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Business","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.64,"y":35.059,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":38.115,"y":35.09,"w":13.059000000000001,"clr":-1,"A":"left","R":[{"T":"Commuting%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.24,"y":35.059,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":77.715,"y":35.09,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"Other","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":36.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":29.800000000000008,"clr":-1,"A":"left","R":[{"T":"Was%20your%20vehicle%20available%20for%20personal%20use%20during%20off-duty%20hours%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":36.59,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.807,"y":36.59,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.865,"y":36.59,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":38.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.09,"w":32.651999999999994,"clr":-1,"A":"left","R":[{"T":"Do%20you%20(or%20your%20spouse)%20have%20another%20vehicle%20available%20for%20personal%20use%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.628,"y":38.09,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.807,"y":38.09,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.865,"y":38.09,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":39.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"11a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":22.636000000000006,"clr":-1,"A":"left","R":[{"T":"Do%20you%20have%20evidence%20to%20support%20your%20deduction%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.191,"y":39.59,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.807,"y":39.59,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.865,"y":39.59,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":41.028,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.028,"w":14.779000000000005,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20is%20the%20evidence%20written%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.816,"y":41.028,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.807,"y":41.09,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.865,"y":41.09,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":41.858,"w":33.23,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":63.29,"y":41.876,"w":7.522,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2020604Q","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.227,"y":41.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.369,"y":41.822,"w":3.835,"clr":-1,"A":"left","R":[{"T":"2106-EZ","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":41.822,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":23.472,"y":4.316,"w":45.34799999999996,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%202106%20and%20its%20separate%20instructions%20is%20available%20at%20www.irs.gov%2Fform2106","S":-1,"TS":[0,10.52,1,0]}]},{"oc":"#221f1f","x":5.941,"y":8.153,"w":58.955999999999946,"clr":-1,"A":"left","R":[{"T":"common%20and%20accepted%20in%20your%20field%20of%20trade%2C%20business%2C%20or%20profession.%20A%20necessary%20expense%20is%20one%20that%20is%20helpful%20and%20appropriate%20for%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":953,"AM":1024,"x":6.229,"y":5.93,"w":46.86,"h":0.833,"TU":"Your name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":954,"AM":0,"x":53.357,"y":5.957,"w":25.719,"h":0.833,"TU":"Occupation in which you incurred expenses"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":955,"AM":1024,"x":79.359,"y":5.908,"w":20.016,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":956,"AM":1024,"x":83.026,"y":15.627,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":957,"AM":0,"x":83.08,"y":17.934,"w":11.983,"h":0.833,"TU":"Line 2. parking fees, tolls, and transportation, including train, bus, etc. that did not involve overnight travel or commuting to and from work."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":958,"AM":0,"x":83.119,"y":20.091,"w":11.983,"h":0.833,"TU":"Line 3. Travel expense while away from home overnight, including lodging, airplane, car rental, etc. Do not include meals and entertainment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":959,"AM":0,"x":83.119,"y":22.232,"w":11.983,"h":0.898},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5A","EN":0},"TI":960,"AM":0,"x":38.514,"y":24.134,"w":8.766,"h":0.833,"TU":"Line 5. Meals and entertainment expenses."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":961,"AM":0,"x":83.16,"y":25.384,"w":11.901,"h":0.844,"TU":"Line 5. Meals and entertainment expenses times 50% (.50). (Employees subject to Department of Transportation (DOT) hours of service limits: Multiply meal expenses incurred while away from home on business by 80% (.80) instead of 50%. For details, see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":962,"AM":1024,"x":83.235,"y":29.097,"w":11.901,"h":0.88},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":963,"AM":0,"x":69.103,"y":32.125,"w":23.91,"h":0.833,"TU":"LIne 7. When did you place your vehicle in service for business use: (month, day, year)","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":964,"AM":0,"x":18.521,"y":35.407,"w":16.191,"h":0.833,"TU":"Line 8a. Business miles."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":965,"AM":0,"x":59.359,"y":35.407,"w":14.953,"h":0.833,"TU":"Line 8b. Commuting miles (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8C","EN":0},"TI":966,"AM":0,"x":82.871,"y":35.407,"w":14.953,"h":0.833,"TU":"Line 8c. Other miles."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX0Y","EN":0},"TI":967,"AM":0,"x":87.744,"y":36.737,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX0N","EN":0},"TI":968,"AM":0,"x":93.946,"y":36.705,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BX0RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9Y","EN":0},"TI":969,"AM":0,"x":87.701,"y":38.191,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9N","EN":0},"TI":970,"AM":0,"x":93.903,"y":38.16,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BX9RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXAY","EN":0},"TI":971,"AM":0,"x":87.723,"y":39.696,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXAN","EN":0},"TI":972,"AM":0,"x":93.925,"y":39.665,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BXARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXBY","EN":0},"TI":973,"AM":0,"x":87.679,"y":41.151,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXBN","EN":0},"TI":974,"AM":0,"x":93.881,"y":41.119,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BXBRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Unreimbursed Employee Business Expenses","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131202092711-08'00'","ModDate":"D:20140108131331-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":30.57,"y":3.001,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":2.235,"y":5.251,"w":1.5,"l":17.131,"oc":"#221f1f"},{"x":2.235,"y":6.751,"w":0.75,"l":17.131,"oc":"#221f1f"},{"x":19.335,"y":5.251,"w":1.5,"l":9.481,"oc":"#221f1f"},{"x":19.335,"y":6.751,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":28.785,"y":5.251,"w":1.5,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":6.751,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":31.035,"y":6.751,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":33.285,"y":6.751,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":2.235,"y":13.501,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":15.001,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":28.785,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":16.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":18.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":21.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":23.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":23.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":23.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.935,"y":24.751,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":28.785,"y":26.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":26.251,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":26.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":30.001,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":31.501,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":25.185,"y":33.001,"w":0.75,"l":1.831,"oc":"#221f1f","dsh":1},{"x":26.985,"y":33.001,"w":0.75,"l":2.281,"oc":"#221f1f","dsh":1},{"x":29.235,"y":33.001,"w":0.75,"l":4.531,"oc":"#221f1f","dsh":1},{"x":6.735,"y":36.001,"w":0.75,"l":5.881,"oc":"#221f1f","dsh":1},{"x":21.585,"y":36.001,"w":0.75,"l":5.431,"oc":"#221f1f","dsh":1},{"x":30.135,"y":36.001,"w":0.75,"l":5.431,"oc":"#221f1f","dsh":1},{"x":2.235,"y":42.001,"w":1.5,"l":16.661,"oc":"#221f1f"},{"x":18.885,"y":42.001,"w":1.5,"l":11.731,"oc":"#221f1f"},{"x":30.585,"y":42.001,"w":1.5,"l":5.431,"oc":"#221f1f"}],"VLines":[{"x":7.651,"y":2.235,"w":1.5,"l":3.047,"oc":"#221f1f"},{"x":30.601,"y":2.235,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":2.985,"w":1.5,"l":2.297,"oc":"#221f1f"},{"x":19.351,"y":5.22,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":28.801,"y":5.22,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":28.801,"y":5.97,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":33.301,"y":5.97,"w":0.75,"l":0.797,"oc":"#221f1f","dsh":1},{"x":31.051,"y":5.97,"w":0.75,"l":0.797,"oc":"#221f1f","dsh":1},{"x":30.151,"y":14.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":14.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":14.985,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.651,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":16.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.801,"y":16.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.651,"y":16.485,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.651,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":18.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.801,"y":18.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.651,"y":18.735,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.651,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":20.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.801,"y":20.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.651,"y":20.985,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.651,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":23.235,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":28.801,"y":23.235,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":34.651,"y":23.235,"w":0.75,"l":2.297,"oc":"#221f1f"},{"x":34.651,"y":25.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":26.235,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":28.801,"y":26.235,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":34.651,"y":26.235,"w":0.75,"l":3.047,"oc":"#221f1f"},{"x":34.651,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":13.872,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.251,"y":30.323,"w":2.25,"h":0.743,"oc":"#221f1f"},{"x":27.001,"y":32.251,"w":2.25,"h":0.75,"clr":1},{"x":29.251,"y":32.251,"w":4.5,"h":0.75,"clr":1}],"Texts":[{"x":2.001,"y":2.367,"w":2.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":3.265,"y":2.367,"w":3.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2106-EZ","S":-1,"TS":[0,22,1,0]}]},{"x":2.001,"y":3.8760000000000003,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.23,0,0]}]},{"x":2.001,"y":4.313,"w":13.557,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99)","S":-1,"TS":[0,9.23,0,0]}]},{"x":10.266,"y":2.789,"w":21.452,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Unreimbursed Employee Business Expenses","S":11,"TS":[0,18,1,0]}]},{"x":14.14,"y":3.473,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":14.515,"y":3.566,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":48,"TS":[3,10,0,0]}]},{"x":14.638,"y":3.566,"w":17.893,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach to Form 1040 or Form 1040NR.","S":-1,"TS":[0,11,1,0]}]},{"x":7.879,"y":4.223,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":8.254,"y":4.316,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":48,"TS":[3,10,0,0]}]},{"x":29.742,"y":4.316,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.52,0,0]}]},{"x":31.02,"y":1.9729999999999999,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.426,"y":3.3310000000000004,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.568,"y":3.3310000000000004,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":31.038,"y":3.8129999999999997,"w":5.447,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.038,"y":4.385,"w":6.909,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":33.936,"y":4.385,"w":2.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"129A","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":4.938,"w":4.872,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your name","S":2,"TS":[0,10,0,0]}]},{"x":19.351,"y":4.938,"w":19.559,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Occupation in which you incurred expenses","S":2,"TS":[0,10,0,0]}]},{"x":28.926,"y":4.938,"w":10.942,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Social security number","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":6.59,"w":27.505,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You Can Use This Form Only if All of the Following Apply.","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":7.5280000000000005,"w":56.659,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• You are an employee deducting ordinary and necessary expenses attributable to your job. An ordinary expense is one that is ","S":3,"TS":[0,12,0,0]}]},{"x":2.002,"y":8.778,"w":38.119,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"your business. An expense does not have to be required to be considered necessary.","S":3,"TS":[0,12,0,0]}]},{"x":2.002,"y":9.653,"w":2.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• You ","S":3,"TS":[0,12,0,0]}]},{"x":3.433,"y":9.653,"w":3.055,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"do not","S":9,"TS":[0,12,1,0]}]},{"x":4.99,"y":9.653,"w":53.865,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" get reimbursed by your employer for any expenses (amounts your employer included in box 1 of your Form W-2 are not ","S":3,"TS":[0,12,0,0]}]},{"x":2.005,"y":10.278,"w":20.338,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"considered reimbursements for this purpose).","S":3,"TS":[0,12,0,0]}]},{"x":2.005,"y":11.028,"w":38.878,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you are claiming vehicle expense, you are using the standard mileage rate for 2013.","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":11.789,"w":4.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Caution: ","S":-1,"TS":[0,11.28,1,0]}]},{"x":4.058,"y":11.789,"w":21.34,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You can use the standard mileage rate for 2013 ","S":-1,"TS":[0,11.28,0,0]}]},{"x":13.876,"y":11.789,"w":5.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"only if: (a) ","S":-1,"TS":[0,11.28,1,0]}]},{"x":16.301,"y":11.789,"w":33.191,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you owned the vehicle and used the standard mileage rate for the first year","S":-1,"TS":[0,11.28,0,0]}]},{"x":35.749,"y":11.789,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.28,0,0]}]},{"x":1.999,"y":12.464,"w":14.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you placed the vehicle in service, ","S":-1,"TS":[0,11.28,0,0]}]},{"x":8.931,"y":12.464,"w":2.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or (b) ","S":-1,"TS":[0,11.28,0,0]}]},{"x":10.287,"y":12.464,"w":46.029,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you leased the vehicle and used the standard mileage rate for the portion of the lease period after 1997.","S":-1,"TS":[0,11.28,0,0]}]},{"x":2.327,"y":13.694,"w":2.555,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I","S":-1,"TS":[0,13,0,0]}]},{"x":5.126,"y":13.635,"w":10.559,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Figure Your Expenses","S":10,"TS":[0,14,1,0]}]},{"x":2.588,"y":15.59,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":15.59,"w":30.972,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete Part II. Multiply line 8a by 56.5¢ (.565). Enter the result here","S":3,"TS":[0,12,0,0]}]},{"x":21.501,"y":15.59,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":15.59,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":17.04,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":17.04,"w":30.526,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Parking fees, tolls, and transportation, including train, bus, etc., that ","S":3,"TS":[0,12,0,0]}]},{"x":19.005,"y":17.04,"w":3.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"did not","S":9,"TS":[0,12,1,0]}]},{"x":20.688,"y":17.04,"w":8.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" involve overnight ","S":3,"TS":[0,12,0,0]}]},{"x":3.798,"y":17.727,"w":17.152,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"travel or commuting to and from work ","S":3,"TS":[0,12,0,0]}]},{"x":13.998,"y":17.727,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":17.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":19.29,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":19.29,"w":41.041,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Travel expense while away from home overnight, including lodging, airplane, car rental, etc. ","S":3,"TS":[0,12,0,0]}]},{"x":24.652,"y":19.29,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":19.977,"w":1.555,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"not","S":9,"TS":[0,12,1,0]}]},{"x":4.675,"y":19.977,"w":15.117,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" include meals and entertainment ","S":3,"TS":[0,12,0,0]}]},{"x":13.25,"y":19.977,"w":26.66,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":20.09,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":21.54,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":21.54,"w":24.118,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business expenses not included on lines 1 through 3. ","S":3,"TS":[0,12,0,0]}]},{"x":16.163,"y":21.54,"w":3.166,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not","S":9,"TS":[0,12,1,0]}]},{"x":17.917,"y":21.54,"w":8.67,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" include meals and ","S":3,"TS":[0,12,0,0]}]},{"x":3.7990000000000004,"y":22.228,"w":6.447,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"entertainment ","S":3,"TS":[0,12,0,0]}]},{"x":7.9990000000000006,"y":22.228,"w":35.991,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":22.34,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":23.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":23.84,"w":17.302,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Meals and entertainment expenses: $","S":3,"TS":[0,12,0,0]}]},{"x":17.101,"y":23.84,"w":15.901,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"× 50% (.50). (Employees subject to","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":24.54,"w":41.323,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of Transportation (DOT) hours of service limits: Multiply meal expenses incurred ","S":3,"TS":[0,12,0,0]}]},{"x":3.8019999999999996,"y":25.227,"w":42.082,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"while away from home on business by 80% (.80) instead of 50%. For details, see instructions.)","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":25.34,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":26.915,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":27.602,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":28.29,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":26.915,"w":7.781,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Total expenses. ","S":9,"TS":[0,12,1,0]}]},{"x":8.036,"y":26.915,"w":18.08,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 1 through 5. Enter here and on","S":3,"TS":[0,12,0,0]}]},{"x":17.299,"y":26.915,"w":15.617,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Schedule A (Form 1040), line 21 ","S":9,"TS":[0,12,1,0]}]},{"x":25.382,"y":26.915,"w":1.444,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(or ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":27.602,"w":1.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on ","S":3,"TS":[0,12,0,0]}]},{"x":4.55,"y":27.602,"w":15.949,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule A (Form 1040NR), line 7","S":9,"TS":[0,12,1,0]}]},{"x":12.602,"y":27.602,"w":22.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"). (Armed Forces reservists, fee-basis state or local ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":28.29,"w":39.801,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"government officials, qualified performing artists, and individuals with disabilities: See the","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":28.977,"w":27.004,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions for special rules on where to enter this amount.) ","S":3,"TS":[0,12,0,0]}]},{"x":19.252,"y":28.977,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":29.09,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6 ","S":3,"TS":[0,12,0,0]}]},{"x":2.235,"y":30.136,"w":2.85,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II","S":-1,"TS":[0,13,0,0]}]},{"x":5.126,"y":30.14,"w":13.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Information on Your Vehicle. ","S":10,"TS":[0,14,1,0]}]},{"x":13.77,"y":30.14,"w":8.28,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete this part","S":-1,"TS":[0,13,0,0]}]},{"x":18.257,"y":30.14,"w":2.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" only ","S":10,"TS":[0,14,1,0]}]},{"x":19.843,"y":30.14,"w":19.892,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"if you are claiming vehicle expense on line 1.","S":-1,"TS":[0,13,0,0]}]},{"x":2.588,"y":32.09,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":32.09,"w":35.73,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"When did you place your vehicle in service for business use? (month, day, year) ","S":3,"TS":[0,12,0,0]}]},{"x":23.899,"y":31.996000000000002,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":26.882,"y":32.09,"w":0.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/","S":3,"TS":[0,12,0,0]}]},{"x":29.132,"y":32.09,"w":0.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":33.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":33.59,"w":52.163,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Of the total number of miles you drove your vehicle during 2013, enter the number of miles you used your vehicle for:","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":35.058,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":35.09,"w":4.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business","S":3,"TS":[0,12,0,0]}]},{"x":12.801,"y":35.059,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":13.701,"y":35.09,"w":13.059,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Commuting (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":27.201,"y":35.059,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c ","S":9,"TS":[0,12,1,0]}]},{"x":28.101,"y":35.09,"w":2.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":36.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":36.59,"w":29.8,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Was your vehicle available for personal use during off-duty hours? ","S":3,"TS":[0,12,0,0]}]},{"x":20.751,"y":36.59,"w":18.662,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"x":32.498,"y":36.59,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.701,"y":36.59,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":38.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":38.09,"w":32.652,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you (or your spouse) have another vehicle available for personal use? ","S":3,"TS":[0,12,0,0]}]},{"x":22.251,"y":38.09,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":32.498,"y":38.09,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.701,"y":38.09,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":39.59,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11a","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":39.59,"w":22.636,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you have evidence to support your deduction? ","S":3,"TS":[0,12,0,0]}]},{"x":17.001,"y":39.59,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":32.498,"y":39.59,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.701,"y":39.59,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.901,"y":41.028,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":41.028,"w":14.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If “Yes,” is the evidence written? ","S":3,"TS":[0,12,0,0]}]},{"x":12.501,"y":41.028,"w":33.325,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"x":32.498,"y":41.09,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.701,"y":41.09,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":41.858,"w":33.23,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see your tax return instructions.","S":-1,"TS":[0,11,1,0]}]},{"x":22.855,"y":41.876,"w":7.522,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 20604Q","S":2,"TS":[0,10,0,0]}]},{"x":30.832,"y":41.822,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":31.975,"y":41.822,"w":3.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2106-EZ","S":10,"TS":[0,14,1,0]}]},{"x":34.43,"y":41.822,"w":3.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013)","S":2,"TS":[0,10,0,0]}]},{"x":8.376,"y":4.316,"w":45.348,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Information about Form 2106 and its separate instructions is available at www.irs.gov/form2106","S":-1,"TS":[0,10.52,1,0]}]},{"x":2.001,"y":8.153,"w":58.956,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"common and accepted in your field of trade, business, or profession. A necessary expense is one that is helpful and appropriate for ","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1348,"AM":1024,"TU":"Your name","x":2.265,"y":5.93,"w":17.04,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":1349,"AM":0,"TU":"Occupation in which you incurred expenses","x":19.402,"y":5.957,"w":9.353,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1350,"AM":1024,"x":28.858,"y":5.908,"w":7.279,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":1351,"AM":1024,"x":30.191,"y":15.627,"w":4.358,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":1352,"AM":0,"TU":"Line 2. parking fees, tolls, and transportation, including train, bus, etc. that did not involve overnight travel or commuting to and from work.","x":30.211,"y":17.934,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1353,"AM":0,"TU":"Line 3. Travel expense while away from home overnight, including lodging, airplane, car rental, etc. Do not include meals and entertainment.","x":30.225,"y":20.091,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":1354,"AM":0,"x":30.225,"y":22.232,"w":4.357,"h":0.898},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5A","EN":0},"TI":1355,"AM":0,"TU":"Line 5. Meals and entertainment expenses.","x":14.005,"y":24.134,"w":3.188,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":1356,"AM":0,"TU":"Line 5. Meals and entertainment expenses times 50% (.50). (Employees subject to Department of Transportation (DOT) hours of service limits: Multiply meal expenses incurred while away from home on business by 80% (.80) instead of 50%. For details, see instructions).","x":30.24,"y":25.384,"w":4.328,"h":0.844},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":1357,"AM":1024,"x":30.267,"y":29.097,"w":4.327,"h":0.88},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":1358,"AM":0,"TU":"LIne 7. When did you place your vehicle in service for business use: (month, day, year)","x":25.128,"y":32.125,"w":8.694,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":1359,"AM":0,"TU":"Line 8a. Business miles.","x":6.735,"y":35.407,"w":5.887,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":1360,"AM":0,"TU":"Line 8b. Commuting miles (see instructions).","x":21.585,"y":35.407,"w":5.438,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8C","EN":0},"TI":1361,"AM":0,"TU":"Line 8c. Other miles.","x":30.135,"y":35.407,"w":5.438,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX0Y","EN":0},"TI":1362,"AM":0,"TU":"Line 9. Checkboxes.","x":31.907,"y":36.737,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX0N","EN":0},"TI":1363,"AM":0,"TU":"Line 9. Checkboxes.","x":34.162,"y":36.705,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BX0RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9Y","EN":0},"TI":1364,"AM":0,"TU":"Line 10. Checkboxes.","x":31.891,"y":38.191,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9N","EN":0},"TI":1365,"AM":0,"TU":"Line 10. Checkboxes.","x":34.147,"y":38.16,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BX9RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXAY","EN":0},"TI":1366,"AM":0,"TU":"Line 11a. Checkboxes.","x":31.899,"y":39.696,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXAN","EN":0},"TI":1367,"AM":0,"TU":"Line 11a. Checkboxes.","x":34.154,"y":39.665,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BXARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXBY","EN":0},"TI":1368,"AM":0,"TU":"Line 11b. Checkboxes.","x":31.883,"y":41.151,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXBN","EN":0},"TI":1369,"AM":0,"TU":"Line 11b. Checkboxes.","x":34.139,"y":41.119,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BXBRB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F2106EZS.json b/test/data/fd/form/F2106EZS.json index a8d80edf..404cc28f 100755 --- a/test/data/fd/form/F2106EZS.json +++ b/test/data/fd/form/F2106EZS.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":84.066,"y":3.001,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":47.111},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":47.111},{"oc":"#221f1f","x":53.172,"y":5.251,"w":1.5,"l":26.073},{"oc":"#221f1f","x":53.172,"y":6.751,"w":0.75,"l":26.073},{"oc":"#221f1f","x":79.159,"y":5.251,"w":1.5,"l":19.886},{"oc":"#221f1f","x":79.159,"y":6.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":85.347,"y":6.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":91.534,"y":6.751,"w":0.75,"l":7.511},{"oc":"#221f1f","x":6.147,"y":13.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":15.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.159,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":38.322,"y":24.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":79.159,"y":26.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":26.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":26.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":30.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":31.501,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":69.259,"y":33.001,"w":0.75,"l":5.036},{"dsh":1,"oc":"#221f1f","x":74.209,"y":33.001,"w":0.75,"l":6.273},{"dsh":1,"oc":"#221f1f","x":80.397,"y":33.001,"w":0.75,"l":12.461},{"dsh":1,"oc":"#221f1f","x":18.522,"y":36.001,"w":0.75,"l":16.173},{"dsh":1,"oc":"#221f1f","x":59.359,"y":36.001,"w":0.75,"l":14.936},{"dsh":1,"oc":"#221f1f","x":82.872,"y":36.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":42.001,"w":1.5,"l":45.818},{"oc":"#221f1f","x":51.934,"y":42.001,"w":1.5,"l":32.261},{"oc":"#221f1f","x":84.109,"y":42.001,"w":1.5,"l":14.936},{"oc":"#bfbfbf","x":-0.75,"y":49.5,"w":0.75,"l":1.499}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.152,"y":2.985,"w":1.5,"l":2.297},{"oc":"#221f1f","x":53.215,"y":5.22,"w":0.75,"l":1.547},{"oc":"#221f1f","x":79.202,"y":5.22,"w":0.75,"l":0.797},{"oc":"#221f1f","x":79.202,"y":5.97,"w":0.75,"l":0.797},{"dsh":1,"oc":"#221f1f","x":91.577,"y":5.97,"w":0.75,"l":0.797},{"dsh":1,"oc":"#221f1f","x":85.39,"y":5.97,"w":0.75,"l":0.797},{"oc":"#221f1f","x":82.915,"y":14.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":14.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":16.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":20.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":20.985,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.235,"w":0.75,"l":3.039},{"oc":"#221f1f","x":79.202,"y":23.235,"w":0.75,"l":3.039},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":2.297},{"oc":"#221f1f","x":95.29,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":26.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":79.202,"y":26.235,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":26.235,"w":0.75,"l":3.047},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":13.872,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":30.323,"w":6.188,"h":0.743,"clr":-1},{"x":69.302,"y":32.251,"w":4.95,"h":0.75,"clr":1},{"x":74.252,"y":32.251,"w":6.188,"h":0.75,"clr":1},{"x":80.44,"y":32.251,"w":12.375,"h":0.75,"clr":1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.367,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.417,"y":2.367,"w":3.835,"clr":-1,"A":"left","R":[{"T":"2106-EZ","S":-1,"TS":[0,22,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.8760000000000003,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.23,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.313,"w":13.557000000000006,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20%20(99)","S":-1,"TS":[0,9.23,0,0]}]},{"oc":"#221f1f","x":28.669,"y":2.789,"w":21.452000000000012,"clr":-1,"A":"left","R":[{"T":"Unreimbursed%20Employee%20Business%20Expenses","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":39.323,"y":3.473,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.691,"y":3.566,"w":17.893000000000008,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":22.104,"y":4.223,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":82.229,"y":4.316,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9729999999999999,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.3310000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":90.001,"y":3.3310000000000004,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.793,"y":3.8129999999999997,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.793,"y":4.385,"w":6.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.761,"y":4.385,"w":2.39,"clr":-1,"A":"left","R":[{"T":"129A","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":4.872,"clr":-1,"A":"left","R":[{"T":"Your%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.652,"y":4.938,"w":19.559000000000005,"clr":-1,"A":"left","R":[{"T":"Occupation%20in%20which%20you%20incurred%20expenses","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.984,"y":4.938,"w":10.942000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":6.59,"w":27.504999999999995,"clr":-1,"A":"left","R":[{"T":"You%20Can%20Use%20This%20Form%20Only%20if%20All%20of%20the%20Following%20Apply.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":7.5280000000000005,"w":56.65899999999994,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20are%20an%20employee%20deducting%20ordinary%20and%20necessary%20expenses%20attributable%20to%20your%20job.%20An%20ordinary%20expense%20is%20one%20that%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.943,"y":8.778,"w":38.118999999999986,"clr":-1,"A":"left","R":[{"T":"your%20business.%20An%20expense%20does%20not%20have%20to%20be%20required%20to%20be%20considered%20necessary.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.943,"y":9.653,"w":2.834,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.879,"y":9.653,"w":3.0549999999999997,"clr":-1,"A":"left","R":[{"T":"do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.159,"y":9.653,"w":53.864999999999945,"clr":-1,"A":"left","R":[{"T":"%20get%20reimbursed%20by%20your%20employer%20for%20any%20expenses%20(amounts%20your%20employer%20included%20in%20box%201%20of%20your%20Form%20W-2%20are%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.95,"y":10.278,"w":20.338,"clr":-1,"A":"left","R":[{"T":"considered%20reimbursements%20for%20this%20purpose).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.95,"y":11.028,"w":38.87799999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20are%20claiming%20vehicle%20expense%2C%20you%20are%20using%20the%20standard%20mileage%20rate%20for%202013.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":11.789,"w":4.333,"clr":-1,"A":"left","R":[{"T":"Caution%3A%20","S":-1,"TS":[0,11.28,1,0]}]},{"oc":"#221f1f","x":11.596,"y":11.789,"w":21.34,"clr":-1,"A":"left","R":[{"T":"You%20can%20use%20the%20standard%20mileage%20rate%20for%202013%20","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":38.596,"y":11.789,"w":5.056000000000001,"clr":-1,"A":"left","R":[{"T":"only%20if%3A%20(a)%20","S":-1,"TS":[0,11.28,1,0]}]},{"oc":"#221f1f","x":45.265,"y":11.789,"w":33.19099999999999,"clr":-1,"A":"left","R":[{"T":"you%20owned%20the%20vehicle%20and%20used%20the%20standard%20mileage%20rate%20for%20the%20first%20year","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":5.936,"y":12.464,"w":14.964000000000006,"clr":-1,"A":"left","R":[{"T":"you%20placed%20the%20vehicle%20in%20service%2C%20","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":24.997,"y":12.464,"w":2.7409999999999997,"clr":-1,"A":"left","R":[{"T":"or%20(b)%20","S":-1,"TS":[0,11.28,0,0]}]},{"oc":"#221f1f","x":28.726,"y":12.464,"w":46.02899999999997,"clr":-1,"A":"left","R":[{"T":"you%20leased%20the%20vehicle%20and%20used%20the%20standard%20mileage%20rate%20for%20the%20portion%20of%20the%20lease%20period%20after%201997.","S":-1,"TS":[0,11.28,0,0]}]},{"x":6.838,"y":13.694,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":13.635,"w":10.559000000000005,"clr":-1,"A":"left","R":[{"T":"Figure%20Your%20Expenses","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":15.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.59,"w":30.971999999999998,"clr":-1,"A":"left","R":[{"T":"Complete%20Part%20II.%20Multiply%20line%208a%20by%2056.5%C2%A2%20(.565).%20Enter%20the%20result%20here","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.565,"y":15.59,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":15.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.04,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.04,"w":30.526000000000003,"clr":-1,"A":"left","R":[{"T":"Parking%20fees%2C%20tolls%2C%20and%20transportation%2C%20including%20train%2C%20bus%2C%20etc.%2C%20that%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.701,"y":17.04,"w":3.333,"clr":-1,"A":"left","R":[{"T":"did%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.329,"y":17.04,"w":8.112,"clr":-1,"A":"left","R":[{"T":"%20involve%20overnight%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":17.727,"w":17.152,"clr":-1,"A":"left","R":[{"T":"travel%20or%20commuting%20to%20and%20from%20work%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.931,"y":17.727,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":17.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":19.29,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.29,"w":41.04099999999998,"clr":-1,"A":"left","R":[{"T":"Travel%20expense%20while%20away%20from%20home%20overnight%2C%20including%20lodging%2C%20airplane%2C%20car%20rental%2C%20etc.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.231,"y":19.29,"w":1.611,"clr":-1,"A":"left","R":[{"T":"Do%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":19.977,"w":1.555,"clr":-1,"A":"left","R":[{"T":"not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.295,"y":19.977,"w":15.117000000000004,"clr":-1,"A":"left","R":[{"T":"%20include%20meals%20and%20entertainment%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.876,"y":19.977,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":20.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":21.54,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.54,"w":24.118000000000006,"clr":-1,"A":"left","R":[{"T":"Business%20expenses%20not%20included%20on%20lines%201%20through%203.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.886,"y":21.54,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":49.709,"y":21.54,"w":8.67,"clr":-1,"A":"left","R":[{"T":"%20include%20meals%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":22.228,"w":6.447000000000001,"clr":-1,"A":"left","R":[{"T":"entertainment%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.436,"y":22.228,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":22.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":23.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.84,"w":17.302000000000003,"clr":-1,"A":"left","R":[{"T":"Meals%20and%20entertainment%20expenses%3A%20%20%20%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.465,"y":23.84,"w":15.901000000000002,"clr":-1,"A":"left","R":[{"T":"%C3%97%20%2050%25%20(.50).%20(Employees%20subject%20to","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.54,"w":41.322999999999986,"clr":-1,"A":"left","R":[{"T":"Department%20of%20Transportation%20(DOT)%20hours%20of%20service%20limits%3A%20Multiply%20meal%20expenses%20incurred%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":25.227,"w":42.08199999999998,"clr":-1,"A":"left","R":[{"T":"while%20away%20from%20home%20on%20business%20by%2080%25%20(.80)%20instead%20of%2050%25.%20For%20details%2C%20see%20instructions.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":25.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":26.915,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.915,"w":7.781000000000001,"clr":-1,"A":"left","R":[{"T":"Total%20expenses.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.537,"y":26.915,"w":18.08000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20through%205.%20Enter%20here%20and%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.01,"y":26.915,"w":15.617000000000006,"clr":-1,"A":"left","R":[{"T":"%20Schedule%20A%20(Form%201040)%2C%20line%2021%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":70.238,"y":26.915,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":27.602,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.951,"y":27.602,"w":15.949000000000005,"clr":-1,"A":"left","R":[{"T":"Schedule%20A%20(Form%201040NR)%2C%20line%207","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.092,"y":27.602,"w":22.908,"clr":-1,"A":"left","R":[{"T":").%20(Armed%20Forces%20reservists%2C%20fee-basis%20state%20or%20local%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.29,"w":39.801,"clr":-1,"A":"left","R":[{"T":"government%20officials%2C%20qualified%20performing%20artists%2C%20and%20individuals%20with%20disabilities%3A%20See%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":28.977,"w":27.004000000000005,"clr":-1,"A":"left","R":[{"T":"instructions%20for%20special%20rules%20on%20where%20to%20enter%20this%20amount.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.379,"y":28.977,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":29.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":30.136,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":30.14,"w":13.892000000000003,"clr":-1,"A":"left","R":[{"T":"Information%20on%20Your%20Vehicle.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":38.304,"y":30.14,"w":8.280000000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":50.644,"y":30.14,"w":2.612,"clr":-1,"A":"left","R":[{"T":"%20only%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":55.005,"y":30.14,"w":19.89200000000001,"clr":-1,"A":"left","R":[{"T":"if%20you%20are%20claiming%20vehicle%20expense%20on%20line%201.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":32.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":35.73,"clr":-1,"A":"left","R":[{"T":"When%20did%20you%20place%20your%20vehicle%20in%20service%20for%20business%20use%3F%20(month%2C%20day%2C%20year)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.159,"y":31.996000000000002,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.364,"y":32.09,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.551,"y":32.09,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":33.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":33.59,"w":52.162999999999954,"clr":-1,"A":"left","R":[{"T":"Of%20the%20total%20number%20of%20miles%20you%20drove%20your%20vehicle%20during%202013%2C%20enter%20the%20number%20of%20miles%20you%20used%20your%20vehicle%20for%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.414,"y":35.058,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.09,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Business","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.64,"y":35.059,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":38.115,"y":35.09,"w":13.059000000000001,"clr":-1,"A":"left","R":[{"T":"Commuting%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.24,"y":35.059,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":77.715,"y":35.09,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"Other","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":36.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.59,"w":29.800000000000008,"clr":-1,"A":"left","R":[{"T":"Was%20your%20vehicle%20available%20for%20personal%20use%20during%20off-duty%20hours%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":36.59,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.807,"y":36.59,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.865,"y":36.59,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":38.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.09,"w":32.651999999999994,"clr":-1,"A":"left","R":[{"T":"Do%20you%20(or%20your%20spouse)%20have%20another%20vehicle%20available%20for%20personal%20use%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.628,"y":38.09,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.807,"y":38.09,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.865,"y":38.09,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":39.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"11a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":22.636000000000006,"clr":-1,"A":"left","R":[{"T":"Do%20you%20have%20evidence%20to%20support%20your%20deduction%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.191,"y":39.59,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.807,"y":39.59,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.865,"y":39.59,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":41.028,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.028,"w":14.779000000000005,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20is%20the%20evidence%20written%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.816,"y":41.028,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.807,"y":41.09,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":95.865,"y":41.09,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":41.858,"w":33.23,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":63.29,"y":41.876,"w":7.522,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2020604Q","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.227,"y":41.822,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.369,"y":41.822,"w":3.835,"clr":-1,"A":"left","R":[{"T":"2106-EZ","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":41.822,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":23.472,"y":4.316,"w":45.34799999999996,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%202106%20and%20its%20separate%20instructions%20is%20available%20at%20www.irs.gov%2Fform2106","S":-1,"TS":[0,10.52,1,0]}]},{"oc":"#221f1f","x":5.941,"y":8.153,"w":58.955999999999946,"clr":-1,"A":"left","R":[{"T":"common%20and%20accepted%20in%20your%20field%20of%20trade%2C%20business%2C%20or%20profession.%20A%20necessary%20expense%20is%20one%20that%20is%20helpful%20and%20appropriate%20for%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":975,"AM":1024,"x":6.229,"y":5.93,"w":46.86,"h":0.833,"TU":"Your name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":976,"AM":0,"x":53.357,"y":5.957,"w":25.719,"h":0.833,"TU":"Occupation in which you incurred expenses"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":977,"AM":1024,"x":79.359,"y":5.908,"w":20.016,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":978,"AM":1024,"x":83.026,"y":15.627,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":979,"AM":0,"x":83.08,"y":17.934,"w":11.983,"h":0.833,"TU":"Line 2. parking fees, tolls, and transportation, including train, bus, etc. that did not involve overnight travel or commuting to and from work."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":980,"AM":0,"x":83.119,"y":20.091,"w":11.983,"h":0.833,"TU":"Line 3. Travel expense while away from home overnight, including lodging, airplane, car rental, etc. Do not include meals and entertainment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":981,"AM":0,"x":83.119,"y":22.232,"w":11.983,"h":0.898},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5A","EN":0},"TI":982,"AM":0,"x":38.514,"y":24.134,"w":8.766,"h":0.833,"TU":"Line 5. Meals and entertainment expenses."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":983,"AM":0,"x":83.16,"y":25.384,"w":11.901,"h":0.844,"TU":"Line 5. Meals and entertainment expenses times 50% (.50). (Employees subject to Department of Transportation (DOT) hours of service limits: Multiply meal expenses incurred while away from home on business by 80% (.80) instead of 50%. For details, see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":984,"AM":1024,"x":83.235,"y":29.097,"w":11.901,"h":0.88},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":985,"AM":0,"x":69.103,"y":32.125,"w":23.91,"h":0.833,"TU":"LIne 7. When did you place your vehicle in service for business use: (month, day, year)","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":986,"AM":0,"x":18.521,"y":35.407,"w":16.191,"h":0.833,"TU":"Line 8a. Business miles."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":987,"AM":0,"x":59.359,"y":35.407,"w":14.953,"h":0.833,"TU":"Line 8b. Commuting miles (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8C","EN":0},"TI":988,"AM":0,"x":82.871,"y":35.407,"w":14.953,"h":0.833,"TU":"Line 8c. Other miles."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX0Y","EN":0},"TI":989,"AM":0,"x":87.744,"y":36.737,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX0N","EN":0},"TI":990,"AM":0,"x":93.946,"y":36.705,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BX0RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9Y","EN":0},"TI":991,"AM":0,"x":87.701,"y":38.191,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9N","EN":0},"TI":992,"AM":0,"x":93.903,"y":38.16,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BX9RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXAY","EN":0},"TI":993,"AM":0,"x":87.723,"y":39.696,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXAN","EN":0},"TI":994,"AM":0,"x":93.925,"y":39.665,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BXARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXBY","EN":0},"TI":995,"AM":0,"x":87.679,"y":41.151,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXBN","EN":0},"TI":996,"AM":0,"x":93.881,"y":41.119,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BXBRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Unreimbursed Employee Business Expenses","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131202092711-08'00'","ModDate":"D:20140108131331-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":30.57,"y":3.001,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":2.235,"y":5.251,"w":1.5,"l":17.131,"oc":"#221f1f"},{"x":2.235,"y":6.751,"w":0.75,"l":17.131,"oc":"#221f1f"},{"x":19.335,"y":5.251,"w":1.5,"l":9.481,"oc":"#221f1f"},{"x":19.335,"y":6.751,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":28.785,"y":5.251,"w":1.5,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":6.751,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":31.035,"y":6.751,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":33.285,"y":6.751,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":2.235,"y":13.501,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":15.001,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":28.785,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":16.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":18.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":21.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":23.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":23.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":23.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.935,"y":24.751,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":28.785,"y":26.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":26.251,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":26.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":30.001,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":31.501,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":25.185,"y":33.001,"w":0.75,"l":1.831,"oc":"#221f1f","dsh":1},{"x":26.985,"y":33.001,"w":0.75,"l":2.281,"oc":"#221f1f","dsh":1},{"x":29.235,"y":33.001,"w":0.75,"l":4.531,"oc":"#221f1f","dsh":1},{"x":6.735,"y":36.001,"w":0.75,"l":5.881,"oc":"#221f1f","dsh":1},{"x":21.585,"y":36.001,"w":0.75,"l":5.431,"oc":"#221f1f","dsh":1},{"x":30.135,"y":36.001,"w":0.75,"l":5.431,"oc":"#221f1f","dsh":1},{"x":2.235,"y":42.001,"w":1.5,"l":16.661,"oc":"#221f1f"},{"x":18.885,"y":42.001,"w":1.5,"l":11.731,"oc":"#221f1f"},{"x":30.585,"y":42.001,"w":1.5,"l":5.431,"oc":"#221f1f"}],"VLines":[{"x":7.651,"y":2.235,"w":1.5,"l":3.047,"oc":"#221f1f"},{"x":30.601,"y":2.235,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":2.985,"w":1.5,"l":2.297,"oc":"#221f1f"},{"x":19.351,"y":5.22,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":28.801,"y":5.22,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":28.801,"y":5.97,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":33.301,"y":5.97,"w":0.75,"l":0.797,"oc":"#221f1f","dsh":1},{"x":31.051,"y":5.97,"w":0.75,"l":0.797,"oc":"#221f1f","dsh":1},{"x":30.151,"y":14.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":14.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":14.985,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.651,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":16.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.801,"y":16.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.651,"y":16.485,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.651,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":18.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.801,"y":18.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.651,"y":18.735,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.651,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":20.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.801,"y":20.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.651,"y":20.985,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.651,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":23.235,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":28.801,"y":23.235,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":34.651,"y":23.235,"w":0.75,"l":2.297,"oc":"#221f1f"},{"x":34.651,"y":25.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":26.235,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":28.801,"y":26.235,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":34.651,"y":26.235,"w":0.75,"l":3.047,"oc":"#221f1f"},{"x":34.651,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":13.872,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.251,"y":30.323,"w":2.25,"h":0.743,"oc":"#221f1f"},{"x":27.001,"y":32.251,"w":2.25,"h":0.75,"clr":1},{"x":29.251,"y":32.251,"w":4.5,"h":0.75,"clr":1}],"Texts":[{"x":2.001,"y":2.367,"w":2.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":3.265,"y":2.367,"w":3.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2106-EZ","S":-1,"TS":[0,22,1,0]}]},{"x":2.001,"y":3.8760000000000003,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.23,0,0]}]},{"x":2.001,"y":4.313,"w":13.557,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99)","S":-1,"TS":[0,9.23,0,0]}]},{"x":10.266,"y":2.789,"w":21.452,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Unreimbursed Employee Business Expenses","S":11,"TS":[0,18,1,0]}]},{"x":14.14,"y":3.473,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":14.515,"y":3.566,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":48,"TS":[3,10,0,0]}]},{"x":14.638,"y":3.566,"w":17.893,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach to Form 1040 or Form 1040NR.","S":-1,"TS":[0,11,1,0]}]},{"x":7.879,"y":4.223,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":8.254,"y":4.316,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":48,"TS":[3,10,0,0]}]},{"x":29.742,"y":4.316,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.52,0,0]}]},{"x":31.02,"y":1.9729999999999999,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.426,"y":3.3310000000000004,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.568,"y":3.3310000000000004,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":31.038,"y":3.8129999999999997,"w":5.447,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.038,"y":4.385,"w":6.909,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":33.936,"y":4.385,"w":2.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"129A","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":4.938,"w":4.872,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your name","S":2,"TS":[0,10,0,0]}]},{"x":19.351,"y":4.938,"w":19.559,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Occupation in which you incurred expenses","S":2,"TS":[0,10,0,0]}]},{"x":28.926,"y":4.938,"w":10.942,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Social security number","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":6.59,"w":27.505,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You Can Use This Form Only if All of the Following Apply.","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":7.5280000000000005,"w":56.659,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• You are an employee deducting ordinary and necessary expenses attributable to your job. An ordinary expense is one that is ","S":3,"TS":[0,12,0,0]}]},{"x":2.002,"y":8.778,"w":38.119,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"your business. An expense does not have to be required to be considered necessary.","S":3,"TS":[0,12,0,0]}]},{"x":2.002,"y":9.653,"w":2.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• You ","S":3,"TS":[0,12,0,0]}]},{"x":3.433,"y":9.653,"w":3.055,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"do not","S":9,"TS":[0,12,1,0]}]},{"x":4.99,"y":9.653,"w":53.865,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" get reimbursed by your employer for any expenses (amounts your employer included in box 1 of your Form W-2 are not ","S":3,"TS":[0,12,0,0]}]},{"x":2.005,"y":10.278,"w":20.338,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"considered reimbursements for this purpose).","S":3,"TS":[0,12,0,0]}]},{"x":2.005,"y":11.028,"w":38.878,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you are claiming vehicle expense, you are using the standard mileage rate for 2013.","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":11.789,"w":4.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Caution: ","S":-1,"TS":[0,11.28,1,0]}]},{"x":4.058,"y":11.789,"w":21.34,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You can use the standard mileage rate for 2013 ","S":-1,"TS":[0,11.28,0,0]}]},{"x":13.876,"y":11.789,"w":5.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"only if: (a) ","S":-1,"TS":[0,11.28,1,0]}]},{"x":16.301,"y":11.789,"w":33.191,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you owned the vehicle and used the standard mileage rate for the first year","S":-1,"TS":[0,11.28,0,0]}]},{"x":35.749,"y":11.789,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.28,0,0]}]},{"x":1.999,"y":12.464,"w":14.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you placed the vehicle in service, ","S":-1,"TS":[0,11.28,0,0]}]},{"x":8.931,"y":12.464,"w":2.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or (b) ","S":-1,"TS":[0,11.28,0,0]}]},{"x":10.287,"y":12.464,"w":46.029,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you leased the vehicle and used the standard mileage rate for the portion of the lease period after 1997.","S":-1,"TS":[0,11.28,0,0]}]},{"x":2.327,"y":13.694,"w":2.555,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I","S":-1,"TS":[0,13,0,0]}]},{"x":5.126,"y":13.635,"w":10.559,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Figure Your Expenses","S":10,"TS":[0,14,1,0]}]},{"x":2.588,"y":15.59,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":15.59,"w":30.972,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete Part II. Multiply line 8a by 56.5¢ (.565). Enter the result here","S":3,"TS":[0,12,0,0]}]},{"x":21.501,"y":15.59,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":15.59,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":17.04,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":17.04,"w":30.526,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Parking fees, tolls, and transportation, including train, bus, etc., that ","S":3,"TS":[0,12,0,0]}]},{"x":19.005,"y":17.04,"w":3.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"did not","S":9,"TS":[0,12,1,0]}]},{"x":20.688,"y":17.04,"w":8.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" involve overnight ","S":3,"TS":[0,12,0,0]}]},{"x":3.798,"y":17.727,"w":17.152,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"travel or commuting to and from work ","S":3,"TS":[0,12,0,0]}]},{"x":13.998,"y":17.727,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":17.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":19.29,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":19.29,"w":41.041,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Travel expense while away from home overnight, including lodging, airplane, car rental, etc. ","S":3,"TS":[0,12,0,0]}]},{"x":24.652,"y":19.29,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":19.977,"w":1.555,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"not","S":9,"TS":[0,12,1,0]}]},{"x":4.675,"y":19.977,"w":15.117,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" include meals and entertainment ","S":3,"TS":[0,12,0,0]}]},{"x":13.25,"y":19.977,"w":26.66,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":20.09,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":21.54,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":21.54,"w":24.118,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business expenses not included on lines 1 through 3. ","S":3,"TS":[0,12,0,0]}]},{"x":16.163,"y":21.54,"w":3.166,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not","S":9,"TS":[0,12,1,0]}]},{"x":17.917,"y":21.54,"w":8.67,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" include meals and ","S":3,"TS":[0,12,0,0]}]},{"x":3.7990000000000004,"y":22.228,"w":6.447,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"entertainment ","S":3,"TS":[0,12,0,0]}]},{"x":7.9990000000000006,"y":22.228,"w":35.991,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":22.34,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":23.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":23.84,"w":17.302,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Meals and entertainment expenses: $","S":3,"TS":[0,12,0,0]}]},{"x":17.101,"y":23.84,"w":15.901,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"× 50% (.50). (Employees subject to","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":24.54,"w":41.323,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of Transportation (DOT) hours of service limits: Multiply meal expenses incurred ","S":3,"TS":[0,12,0,0]}]},{"x":3.8019999999999996,"y":25.227,"w":42.082,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"while away from home on business by 80% (.80) instead of 50%. For details, see instructions.)","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":25.34,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":26.915,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":27.602,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":28.29,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":26.915,"w":7.781,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Total expenses. ","S":9,"TS":[0,12,1,0]}]},{"x":8.036,"y":26.915,"w":18.08,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 1 through 5. Enter here and on","S":3,"TS":[0,12,0,0]}]},{"x":17.299,"y":26.915,"w":15.617,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Schedule A (Form 1040), line 21 ","S":9,"TS":[0,12,1,0]}]},{"x":25.382,"y":26.915,"w":1.444,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(or ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":27.602,"w":1.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on ","S":3,"TS":[0,12,0,0]}]},{"x":4.55,"y":27.602,"w":15.949,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule A (Form 1040NR), line 7","S":9,"TS":[0,12,1,0]}]},{"x":12.602,"y":27.602,"w":22.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"). (Armed Forces reservists, fee-basis state or local ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":28.29,"w":39.801,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"government officials, qualified performing artists, and individuals with disabilities: See the","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":28.977,"w":27.004,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions for special rules on where to enter this amount.) ","S":3,"TS":[0,12,0,0]}]},{"x":19.252,"y":28.977,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":29.09,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6 ","S":3,"TS":[0,12,0,0]}]},{"x":2.235,"y":30.136,"w":2.85,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II","S":-1,"TS":[0,13,0,0]}]},{"x":5.126,"y":30.14,"w":13.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Information on Your Vehicle. ","S":10,"TS":[0,14,1,0]}]},{"x":13.77,"y":30.14,"w":8.28,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete this part","S":-1,"TS":[0,13,0,0]}]},{"x":18.257,"y":30.14,"w":2.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" only ","S":10,"TS":[0,14,1,0]}]},{"x":19.843,"y":30.14,"w":19.892,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"if you are claiming vehicle expense on line 1.","S":-1,"TS":[0,13,0,0]}]},{"x":2.588,"y":32.09,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":32.09,"w":35.73,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"When did you place your vehicle in service for business use? (month, day, year) ","S":3,"TS":[0,12,0,0]}]},{"x":23.899,"y":31.996000000000002,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":26.882,"y":32.09,"w":0.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/","S":3,"TS":[0,12,0,0]}]},{"x":29.132,"y":32.09,"w":0.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":33.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":33.59,"w":52.163,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Of the total number of miles you drove your vehicle during 2013, enter the number of miles you used your vehicle for:","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":35.058,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":35.09,"w":4.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business","S":3,"TS":[0,12,0,0]}]},{"x":12.801,"y":35.059,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":13.701,"y":35.09,"w":13.059,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Commuting (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":27.201,"y":35.059,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c ","S":9,"TS":[0,12,1,0]}]},{"x":28.101,"y":35.09,"w":2.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":36.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":36.59,"w":29.8,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Was your vehicle available for personal use during off-duty hours? ","S":3,"TS":[0,12,0,0]}]},{"x":20.751,"y":36.59,"w":18.662,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"x":32.498,"y":36.59,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.701,"y":36.59,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":38.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":38.09,"w":32.652,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you (or your spouse) have another vehicle available for personal use? ","S":3,"TS":[0,12,0,0]}]},{"x":22.251,"y":38.09,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":32.498,"y":38.09,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.701,"y":38.09,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":39.59,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11a","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":39.59,"w":22.636,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you have evidence to support your deduction? ","S":3,"TS":[0,12,0,0]}]},{"x":17.001,"y":39.59,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":32.498,"y":39.59,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.701,"y":39.59,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.901,"y":41.028,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":41.028,"w":14.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If “Yes,” is the evidence written? ","S":3,"TS":[0,12,0,0]}]},{"x":12.501,"y":41.028,"w":33.325,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"x":32.498,"y":41.09,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.701,"y":41.09,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":41.858,"w":33.23,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see your tax return instructions.","S":-1,"TS":[0,11,1,0]}]},{"x":22.855,"y":41.876,"w":7.522,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 20604Q","S":2,"TS":[0,10,0,0]}]},{"x":30.832,"y":41.822,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":31.975,"y":41.822,"w":3.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2106-EZ","S":10,"TS":[0,14,1,0]}]},{"x":34.43,"y":41.822,"w":3.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013)","S":2,"TS":[0,10,0,0]}]},{"x":8.376,"y":4.316,"w":45.348,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Information about Form 2106 and its separate instructions is available at www.irs.gov/form2106","S":-1,"TS":[0,10.52,1,0]}]},{"x":2.001,"y":8.153,"w":58.956,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"common and accepted in your field of trade, business, or profession. A necessary expense is one that is helpful and appropriate for ","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1387,"AM":1024,"TU":"Your name","x":2.265,"y":5.93,"w":17.04,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":1388,"AM":0,"TU":"Occupation in which you incurred expenses","x":19.402,"y":5.957,"w":9.353,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1389,"AM":1024,"x":28.858,"y":5.908,"w":7.279,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":1390,"AM":1024,"x":30.191,"y":15.627,"w":4.358,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":1391,"AM":0,"TU":"Line 2. parking fees, tolls, and transportation, including train, bus, etc. that did not involve overnight travel or commuting to and from work.","x":30.211,"y":17.934,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1392,"AM":0,"TU":"Line 3. Travel expense while away from home overnight, including lodging, airplane, car rental, etc. Do not include meals and entertainment.","x":30.225,"y":20.091,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":1393,"AM":0,"x":30.225,"y":22.232,"w":4.357,"h":0.898},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5A","EN":0},"TI":1394,"AM":0,"TU":"Line 5. Meals and entertainment expenses.","x":14.005,"y":24.134,"w":3.188,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":1395,"AM":0,"TU":"Line 5. Meals and entertainment expenses times 50% (.50). (Employees subject to Department of Transportation (DOT) hours of service limits: Multiply meal expenses incurred while away from home on business by 80% (.80) instead of 50%. For details, see instructions).","x":30.24,"y":25.384,"w":4.328,"h":0.844},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":1396,"AM":1024,"x":30.267,"y":29.097,"w":4.327,"h":0.88},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":1397,"AM":0,"TU":"LIne 7. When did you place your vehicle in service for business use: (month, day, year)","x":25.128,"y":32.125,"w":8.694,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":1398,"AM":0,"TU":"Line 8a. Business miles.","x":6.735,"y":35.407,"w":5.887,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":1399,"AM":0,"TU":"Line 8b. Commuting miles (see instructions).","x":21.585,"y":35.407,"w":5.438,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8C","EN":0},"TI":1400,"AM":0,"TU":"Line 8c. Other miles.","x":30.135,"y":35.407,"w":5.438,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX0Y","EN":0},"TI":1401,"AM":0,"TU":"Line 9. Checkboxes.","x":31.907,"y":36.737,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX0N","EN":0},"TI":1402,"AM":0,"TU":"Line 9. Checkboxes.","x":34.162,"y":36.705,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BX0RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9Y","EN":0},"TI":1403,"AM":0,"TU":"Line 10. Checkboxes.","x":31.891,"y":38.191,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9N","EN":0},"TI":1404,"AM":0,"TU":"Line 10. Checkboxes.","x":34.147,"y":38.16,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BX9RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXAY","EN":0},"TI":1405,"AM":0,"TU":"Line 11a. Checkboxes.","x":31.899,"y":39.696,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXAN","EN":0},"TI":1406,"AM":0,"TU":"Line 11a. Checkboxes.","x":34.154,"y":39.665,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BXARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXBY","EN":0},"TI":1407,"AM":0,"TU":"Line 11b. Checkboxes.","x":31.883,"y":41.151,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXBN","EN":0},"TI":1408,"AM":0,"TU":"Line 11b. Checkboxes.","x":34.139,"y":41.119,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BXBRB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F2106S.json b/test/data/fd/form/F2106S.json index 8412f8f0..dbb0116f 100755 --- a/test/data/fd/form/F2106S.json +++ b/test/data/fd/form/F2106S.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 2106","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":14.936},{"oc":"#221f1f","x":20.997,"y":5.234,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.066,"y":3.001,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":5.249,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":48.349},{"oc":"#221f1f","x":54.409,"y":6.751,"w":1.125,"l":24.836},{"oc":"#221f1f","x":79.159,"y":6.751,"w":1.125,"l":6.273},{"oc":"#221f1f","x":85.347,"y":6.751,"w":1.125,"l":6.273},{"oc":"#221f1f","x":91.534,"y":6.751,"w":1.125,"l":7.511},{"oc":"#221f1f","x":6.147,"y":7.948,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":53.299},{"oc":"#221f1f","x":59.359,"y":10.501,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.159,"y":10.501,"w":0.75,"l":19.886},{"oc":"#221f1f","x":59.359,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":10.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":10.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":63.072,"y":18.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":75.447,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":18.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":20.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":20.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":21.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":24.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":78.935,"y":27.001,"w":0.75,"l":3.763},{"oc":"#221f1f","x":78.935,"y":24.001,"w":0.75,"l":3.763},{"oc":"#221f1f","x":6.147,"y":27.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":29.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":63.072,"y":31.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.202,"y":31.501,"w":0.75,"l":3.713},{"oc":"#221f1f","x":79.202,"y":29.251,"w":0.75,"l":3.713},{"oc":"#221f1f","x":82.872,"y":31.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":39.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":39.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":39.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":39.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":39.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":39.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":42.001,"w":1.5,"l":47.111},{"oc":"#221f1f","x":53.172,"y":42.001,"w":1.5,"l":33.498},{"oc":"#221f1f","x":86.584,"y":42.001,"w":1.5,"l":12.461}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.031},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.769},{"oc":"#221f1f","x":84.152,"y":2.985,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.152,"y":4.019,"w":1.5,"l":1.26},{"oc":"#221f1f","x":54.452,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":5.985,"w":0.75,"l":0.789},{"dsh":1,"oc":"#221f1f","x":91.577,"y":5.985,"w":0.75,"l":0.789},{"dsh":1,"oc":"#221f1f","x":85.39,"y":5.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":8.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":8.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":59.402,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":75.49,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":10.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":14.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":59.402,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":63.115,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":75.49,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.915,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":1.539},{"oc":"#221f1f","x":63.115,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":18.728,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":18.728,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":18.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":62.63,"y":23.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":58.867,"y":23.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":75.172,"y":23.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":82.697,"y":24.001,"w":0.75,"l":3},{"oc":"#221f1f","x":78.935,"y":24.001,"w":0.75,"l":3},{"oc":"#221f1f","x":95.24,"y":23.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":63.115,"y":29.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":59.402,"y":29.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":75.49,"y":29.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":29.251,"w":0.75,"l":2.25},{"oc":"#221f1f","x":79.202,"y":29.251,"w":0.75,"l":2.25},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":59.402,"y":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":63.115,"y":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":75.49,"y":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":82.915,"y":31.485,"w":0.75,"l":3.789},{"oc":"#221f1f","x":79.202,"y":31.485,"w":0.75,"l":3.789},{"oc":"#221f1f","x":82.915,"y":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":31.485,"w":0.75,"l":3.781},{"oc":"#221f1f","x":63.115,"y":38.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":38.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.115,"y":35.236,"w":0.75,"l":3.031},{"oc":"#221f1f","x":59.402,"y":35.236,"w":0.75,"l":3.031},{"oc":"#221f1f","x":75.49,"y":35.236,"w":0.75,"l":3.789},{"oc":"#221f1f","x":82.915,"y":35.236,"w":0.75,"l":3.789},{"oc":"#221f1f","x":79.202,"y":35.236,"w":0.75,"l":3.789},{"oc":"#221f1f","x":95.29,"y":35.236,"w":0.75,"l":3.789},{"oc":"#221f1f","x":82.915,"y":38.986,"w":0.75,"l":3.031},{"oc":"#221f1f","x":79.202,"y":38.986,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":38.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":41.236,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":7.073,"w":6.188,"h":0.875,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":10.501,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":82.915,"y":10.501,"w":12.375,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":10.501,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":12.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":82.915,"y":12.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":12.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":14.251,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":82.915,"y":14.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":14.251,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":15.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":82.915,"y":15.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":95.29,"y":15.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":63.115,"y":17.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":75.49,"y":17.251,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":17.251,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":18.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":78.935,"y":24.001,"w":3.763,"h":3,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":29.251,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":59.402,"y":31.501,"w":3.713,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":31.501,"w":3.713,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":59.402,"y":35.251,"w":3.713,"h":3,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":35.251,"w":3.713,"h":3.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.634,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.417,"y":2.634,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2106%20","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.7510000000000003,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.370000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.251,"w":13.557000000000004,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20(99)%20","S":-1,"TS":[0,9.370000000000001,0,0]}]},{"oc":"#221f1f","x":29.624,"y":2.434,"w":14.673000000000007,"clr":-1,"A":"left","R":[{"T":"Employee%20Business%20Expenses%20","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":40.865,"y":3.375,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":42.233,"y":3.4690000000000003,"w":17.893000000000008,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":24.147,"y":4.089,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.21,"y":4.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9689999999999999,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.295,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":90.001,"y":3.295,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.965,"y":3.8920000000000003,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":4.338,"w":6.074999999999999,"clr":-1,"A":"left","R":[{"T":"Sequence%20No","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.273,"y":4.338,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20%20%20","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":94.124,"y":4.338,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"129","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":5.15,"clr":-1,"A":"left","R":[{"T":"Your%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":54.89,"y":4.938,"w":15.003000000000005,"clr":-1,"A":"left","R":[{"T":"Occupation%20in%20which%20you%20incurred","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":73.275,"y":4.938,"w":4.556000000000001,"clr":-1,"A":"left","R":[{"T":"expenses%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":4.938,"w":11.003999999999998,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.838,"y":6.957,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":6.947,"w":30.680000000000017,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Employee%20Business%20Expenses%20and%20Reimbursements%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":8.729,"w":13.616000000000003,"clr":-1,"A":"left","R":[{"T":"Step%201%20%20Enter%20Your%20Expenses","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":65.444,"y":8.007,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Column%20A%20%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":62.906,"y":8.695,"w":8.781000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20Than%20Meals%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.705,"y":9.382,"w":8.207,"clr":-1,"A":"left","R":[{"T":"and%20Entertainment","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.229,"y":8.007,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Column%20B%20%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":85.271,"y":8.695,"w":5.465000000000002,"clr":-1,"A":"left","R":[{"T":"Meals%20and%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.024,"y":9.382,"w":6.243,"clr":-1,"A":"left","R":[{"T":"Entertainment","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.04,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":11.04,"w":28.910999999999987,"clr":-1,"A":"left","R":[{"T":"Vehicle%20expense%20from%20line%2022%20or%20line%2029.%20(Rural%20mail%20carriers%3A%20See%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.658,"y":11.727,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.383,"y":11.727,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"..................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":12.54,"w":1.112,"clr":-1,"A":"left","R":[{"T":"2%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":12.54,"w":30.804000000000002,"clr":-1,"A":"left","R":[{"T":"Parking%20fees%2C%20tolls%2C%20and%20transportation%2C%20including%20train%2C%20bus%2C%20etc.%2C%20that%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.655,"y":13.228,"w":3.333,"clr":-1,"A":"left","R":[{"T":"did%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.438,"y":13.228,"w":25.264,"clr":-1,"A":"left","R":[{"T":"%20involve%20overnight%20travel%20or%20commuting%20to%20and%20from%20work%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.101,"y":13.228,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":13.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":14.04,"w":1.112,"clr":-1,"A":"left","R":[{"T":"3%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":14.04,"w":30.262000000000015,"clr":-1,"A":"left","R":[{"T":"Travel%20expense%20while%20away%20from%20home%20overnight%2C%20including%20lodging%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":14.728,"w":10.779000000000003,"clr":-1,"A":"left","R":[{"T":"airplane%2C%20car%20rental%2C%20etc.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.779,"y":14.728,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.364,"y":14.728,"w":14.839000000000004,"clr":-1,"A":"left","R":[{"T":"%20include%20meals%20and%20entertainment","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.55,"y":14.728,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":15.54,"w":1.112,"clr":-1,"A":"left","R":[{"T":"4%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":15.54,"w":24.118000000000006,"clr":-1,"A":"left","R":[{"T":"Business%20expenses%20not%20included%20on%20lines%201%20through%203.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.489,"y":15.54,"w":3.4440000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":48.207,"y":15.54,"w":3.779,"clr":-1,"A":"left","R":[{"T":"%20include%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.657,"y":16.228,"w":11.06,"clr":-1,"A":"left","R":[{"T":"meals%20and%20entertainment","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.632,"y":16.228,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"..............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":16.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":17.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":17.84,"w":23.46800000000001,"clr":-1,"A":"left","R":[{"T":"Meals%20and%20entertainment%20expenses%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":17.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":17.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":18.541,"w":8.893,"clr":-1,"A":"left","R":[{"T":"6%20%20Total%20expenses.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.062,"y":18.541,"w":21.990000000000002,"clr":-1,"A":"left","R":[{"T":"In%20Column%20A%2C%20add%20lines%201%20through%204%20and%20enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.66,"y":19.228,"w":21.730000000000004,"clr":-1,"A":"left","R":[{"T":"result.%20In%20Column%20B%2C%20enter%20the%20amount%20from%20line%205","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.134,"y":19.228,"w":9.331,"clr":-1,"A":"left","R":[{"T":"......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":19.341,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":20.376,"w":5.613000000000001,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20Note%3A%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.249,"y":20.376,"w":48.397999999999946,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20not%20reimbursed%20for%20any%20expenses%20in%20Step%201%2C%20skip%20line%207%20and%20enter%20the%20amount%20from%20line%206%20on%20line%208.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":22.291,"w":43.84699999999995,"clr":-1,"A":"left","R":[{"T":"Step%202%20%20Enter%20Reimbursements%20Received%20From%20Your%20Employer%20for%20Expenses%20Listed%20in%20Step%201%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.605,"y":23.915,"w":1.112,"clr":-1,"A":"left","R":[{"T":"7%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.702,"y":23.915,"w":27.652999999999995,"clr":-1,"A":"left","R":[{"T":"Enter%20reimbursements%20received%20from%20your%20employer%20that%20were%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.931,"y":23.915,"w":1.555,"clr":-1,"A":"left","R":[{"T":"not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.707,"y":24.602,"w":30.398,"clr":-1,"A":"left","R":[{"T":"reported%20to%20you%20in%20box%201%20of%20Form%20W-2.%20Include%20any%20reimbursements%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.705,"y":25.29,"w":26.098999999999997,"clr":-1,"A":"left","R":[{"T":"reported%20under%20code%20%E2%80%9CL%E2%80%9D%20in%20box%2012%20of%20your%20Form%20W-2%20(see%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.707,"y":25.977,"w":5.445,"clr":-1,"A":"left","R":[{"T":"instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.32,"y":25.977,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.069,"y":26.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":27.541,"w":38.177,"clr":-1,"A":"left","R":[{"T":"Step%203%20%20Figure%20Expenses%20To%20Deduct%20on%20Schedule%20A%20(Form%201040%20or%20Form%201040NR)%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":29.103,"w":1.112,"clr":-1,"A":"left","R":[{"T":"8%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":29.103,"w":31.242999999999995,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%207%20from%20line%206.%20If%20zero%20or%20less%2C%20enter%20-0-.%20However%2C%20if%20%20line%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.66,"y":29.79,"w":29.97,"clr":-1,"A":"left","R":[{"T":"is%20greater%20than%20line%206%20in%20Column%20A%2C%20report%20the%20excess%20as%20%20income%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.666,"y":30.477,"w":20.322000000000006,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%207%20(or%20on%20Form%201040NR%2C%20line%208)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.078,"y":30.477,"w":10.664,"clr":-1,"A":"left","R":[{"T":".......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":30.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":32.005,"w":2.833,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.981,"y":32.005,"w":6.556,"clr":-1,"A":"left","R":[{"T":"both%20columns","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.652,"y":32.692,"w":29.469,"clr":-1,"A":"left","R":[{"T":"employee%20business%20expenses.%20Stop%20here%20and%20attach%20Form%202106%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":33.38,"w":5.408000000000001,"clr":-1,"A":"left","R":[{"T":"your%20return.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":35.228,"w":1.112,"clr":-1,"A":"left","R":[{"T":"9%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":35.227,"w":30.901000000000014,"clr":-1,"A":"left","R":[{"T":"In%20Column%20A%2C%20enter%20the%20amount%20from%20line%208.%20In%20Column%20B%2C%20multiply%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.644,"y":35.915,"w":30.73100000000001,"clr":-1,"A":"left","R":[{"T":"8%20by%2050%25%20(.50).%20(Employees%20subject%20to%20Department%20of%20Transportation%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.644,"y":36.602,"w":30.39299999999999,"clr":-1,"A":"left","R":[{"T":"(DOT)%20hours%20of%20service%20limits%3A%20Multiply%20meal%20expenses%20incurred%20while%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.647,"y":37.29,"w":28.451999999999998,"clr":-1,"A":"left","R":[{"T":"away%20from%20home%20on%20business%20by%2080%25%20(.80)%20instead%20of%2050%25.%20For%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.646,"y":37.977,"w":11.057,"clr":-1,"A":"left","R":[{"T":"details%2C%20see%20instructions.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.621,"y":37.977,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":38.091,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":38.915,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":38.915,"w":30.53,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20line%209%20of%20both%20columns%20and%20enter%20the%20total%20here.%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":52.017,"y":38.915,"w":11.113000000000005,"clr":-1,"A":"left","R":[{"T":"Also%2C%20enter%20the%20total%20on%20","S":-1,"TS":[0,11.82,1,0]}]},{"oc":"#221f1f","x":9.643,"y":39.603,"w":15.061000000000007,"clr":-1,"A":"left","R":[{"T":"Schedule%20A%20(Form%201040)%2C%20line%2021","S":-1,"TS":[0,11.82,1,0]}]},{"oc":"#221f1f","x":30.339,"y":39.603,"w":3.1300000000000003,"clr":-1,"A":"left","R":[{"T":"%20(or%20on%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":34.976,"y":39.603,"w":15.949000000000005,"clr":-1,"A":"left","R":[{"T":"Schedule%20A%20(Form%201040NR)%2C%20line%207","S":-1,"TS":[0,11.82,1,0]}]},{"oc":"#221f1f","x":57.016,"y":39.603,"w":7.649000000000001,"clr":-1,"A":"left","R":[{"T":").%20(Armed%20Forces%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":9.643,"y":40.29,"w":44.559999999999995,"clr":-1,"A":"left","R":[{"T":"reservists%2C%20%20qualified%20performing%20artists%2C%20fee-basis%20state%20or%20local%20government%20officials%2C%20and%20individuals%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":9.637,"y":40.988,"w":36.72499999999998,"clr":-1,"A":"left","R":[{"T":"with%20%20disabilities%3A%20See%20the%20instructions%20for%20special%20rules%20on%20where%20to%20enter%20the%20total.)%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":65.737,"y":40.988,"w":8.166,"clr":-1,"A":"left","R":[{"T":".....%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":75.661,"y":40.895,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.948,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":41.858,"w":33.23,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":65.169,"y":41.876,"w":7.484,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011700N","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":42.01,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":42.01,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2106","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.119,"y":42.01,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":25.516,"y":4.09,"w":45.34799999999996,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%202106%20and%20its%20separate%20instructions%20is%20available%20at%20www.irs.gov%2Fform2106","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":13.864,"y":32.005,"w":0.5549999999999999,"clr":-1,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.12,"y":32.005,"w":16.263000000000005,"clr":-1,"A":"left","R":[{"T":"of%20line%208%20are%20zero%2C%20you%20cannot%20deduct","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":997,"AM":1024,"x":6.229,"y":5.821,"w":48.098,"h":0.906,"TU":"Your name"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":998,"AM":0,"x":54.594,"y":5.821,"w":24.482,"h":0.906,"TU":"Occupation in which you incurred expenses"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":999,"AM":1024,"x":79.359,"y":5.828,"w":19.642,"h":0.911},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":1000,"AM":0,"x":63.319,"y":11.862,"w":11.983,"h":0.873,"TU":"Line 1. Vehicle expense from line 22 or line 29. (Rural mail carriers\" See instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":1001,"AM":0,"x":63.298,"y":13.444,"w":12.024,"h":0.833,"TU":"Line 2. Parking fees, tolls, and transportation, including train, bus, etc. that did not involve overnight travel or commuting to and from work."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1002,"AM":0,"x":63.298,"y":14.944,"w":12.024,"h":0.833,"TU":"Line 3. Travel expense while away from home overnight, including lodging, airplane, car rental, etc. Do not include meals and entertainment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":1003,"AM":0,"x":63.298,"y":16.416,"w":12.024,"h":0.833,"TU":"Line 4. Business expenses not included on lines 1 through 3. Do not include meals and entertainment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":1004,"AM":0,"x":83.098,"y":17.862,"w":12.024,"h":0.866,"TU":"Line 5. Meals and Entertainment expenses (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6A","EN":0},"TI":1005,"AM":1024,"x":63.298,"y":19.424,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6B","EN":0},"TI":1006,"AM":1024,"x":83.098,"y":19.397,"w":12.024,"h":0.838,"TU":"Column B Meals and Entertainment_6"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7A","EN":0},"TI":1007,"AM":0,"x":62.811,"y":26.077,"w":12.066,"h":0.873,"TU":"Line 7. Column A Other Than Meals and Entertainment. Enter reimbursements received from your employer that were not reported to you in box 1 of Form W-2. Include any reimbursements reported under Code \"L\" in box 12 of your Form W-2 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7B","EN":0},"TI":1008,"AM":0,"x":82.847,"y":26.019,"w":12.066,"h":0.873,"TU":"Line 7. Column B Meals and Entertainment. Enter reimbursements received from your employer that were not reported to you in box 1 of Form W-2. Include any reimbursements reported under Code \"L\" in box 12 of your Form W-2 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":1009,"AM":1024,"x":63.319,"y":30.638,"w":11.983,"h":0.847},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":1010,"AM":1024,"x":83.354,"y":30.603,"w":11.983,"h":0.847},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":1011,"AM":1024,"x":63.36,"y":38.287,"w":11.901,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10B","EN":0},"TI":1012,"AM":0,"x":83.396,"y":38.275,"w":11.901,"h":0.833,"TU":"Line 9. In Column B, multiply line 8 by 50% (.50). (Employees subject to Department of Transportation (DOT) hours of service limits: Multiply meal expenses incurred while away from home on business by 80% (.80) instead of 50%. For details, see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":1013,"AM":1024,"x":83.235,"y":41.077,"w":11.901,"h":0.885,"TU":"10"}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":86.711},{"oc":"#221f1f","x":92.772,"y":3.001,"w":1.5,"l":6.273},{"oc":"#221f1f","x":6.147,"y":3.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":5.251,"w":0.75,"l":58.249},{"oc":"#221f1f","x":64.309,"y":5.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.022,"y":5.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":5.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":64.309,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.022,"y":6.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":72.972,"y":6.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":77.922,"y":6.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":82.872,"y":6.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":89.059,"y":6.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":94.009,"y":6.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":64.309,"y":6.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.022,"y":6.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":6.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":64.309,"y":7.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":7.501,"w":1.125,"l":14.936},{"oc":"#221f1f","x":82.872,"y":7.501,"w":1.125,"l":16.173},{"oc":"#221f1f","x":64.309,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.022,"y":8.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":8.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":64.309,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.022,"y":9.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":82.872,"y":9.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":64.309,"y":9.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":9.751,"w":1.125,"l":14.936},{"oc":"#221f1f","x":82.872,"y":9.751,"w":1.125,"l":16.173},{"oc":"#221f1f","x":64.309,"y":10.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":68.022,"y":10.501,"w":1.125,"l":14.936},{"oc":"#221f1f","x":82.872,"y":10.501,"w":1.125,"l":16.173},{"oc":"#221f1f","x":6.147,"y":13.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":14.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":15.001,"w":1.125,"l":33.498},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":33.498},{"oc":"#221f1f","x":39.559,"y":15.001,"w":1.125,"l":29.786},{"oc":"#221f1f","x":39.559,"y":15.751,"w":0.75,"l":29.786},{"oc":"#221f1f","x":69.238,"y":15.001,"w":1.125,"l":29.807},{"oc":"#221f1f","x":69.238,"y":15.751,"w":0.75,"l":29.807},{"oc":"#221f1f","x":35.847,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":39.559,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":15.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":51.934,"y":17.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":15.751,"w":0.75,"l":12.482},{"oc":"#221f1f","x":69.238,"y":17.251,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.613,"y":15.751,"w":0.75,"l":2.582},{"oc":"#221f1f","x":81.613,"y":17.251,"w":0.75,"l":2.582},{"oc":"#221f1f","x":35.847,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":18.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":17.251,"w":0.75,"l":12.482},{"oc":"#221f1f","x":66.784,"y":17.251,"w":0.75,"l":2.582},{"oc":"#221f1f","x":69.259,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":81.634,"y":18.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":17.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":18.751,"w":0.75,"l":12.482},{"oc":"#221f1f","x":66.784,"y":18.751,"w":0.75,"l":2.582},{"oc":"#221f1f","x":84.109,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":18.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":18.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":19.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.784,"y":19.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":18.751,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.613,"y":18.751,"w":0.75,"l":2.582},{"oc":"#221f1f","x":84.109,"y":19.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":19.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":22.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.409,"y":22.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":66.784,"y":22.501,"w":1.125,"l":2.561},{"oc":"#221f1f","x":84.109,"y":22.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.484,"y":22.501,"w":1.125,"l":2.561},{"oc":"#221f1f","x":35.847,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.784,"y":23.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":23.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":23.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.784,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":25.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":54.409,"y":25.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":66.784,"y":25.501,"w":1.125,"l":2.561},{"oc":"#221f1f","x":84.109,"y":25.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.484,"y":25.501,"w":1.125,"l":2.561},{"oc":"#221f1f","x":39.559,"y":27.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":27.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":27.001,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.613,"y":27.001,"w":0.75,"l":2.582},{"oc":"#221f1f","x":6.147,"y":27.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":27.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":35.847,"y":28.501,"w":0.75,"l":33.498},{"oc":"#221f1f","x":69.238,"y":28.501,"w":0.75,"l":29.807},{"oc":"#221f1f","x":35.847,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":28.501,"w":0.75,"l":12.482},{"oc":"#221f1f","x":54.409,"y":30.001,"w":0.75,"l":12.482},{"oc":"#221f1f","x":66.784,"y":28.501,"w":0.75,"l":2.582},{"oc":"#221f1f","x":66.784,"y":30.001,"w":0.75,"l":2.582},{"oc":"#221f1f","x":84.109,"y":28.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.109,"y":30.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":28.501,"w":0.75,"l":2.582},{"oc":"#221f1f","x":96.484,"y":30.001,"w":0.75,"l":2.582},{"oc":"#221f1f","x":35.847,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":30.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":39.559,"y":31.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":30.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":51.934,"y":31.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":30.001,"w":0.75,"l":12.482},{"oc":"#221f1f","x":69.238,"y":31.501,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.634,"y":30.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":81.634,"y":31.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":34.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":31.501,"w":0.75,"l":12.482},{"oc":"#221f1f","x":66.784,"y":31.501,"w":0.75,"l":2.582},{"oc":"#221f1f","x":69.259,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":81.634,"y":34.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":31.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":31.501,"w":0.75,"l":2.582},{"oc":"#221f1f","x":35.847,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":36.001,"w":0.75,"l":12.482},{"oc":"#221f1f","x":66.784,"y":36.001,"w":0.75,"l":2.582},{"oc":"#221f1f","x":84.109,"y":36.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":36.001,"w":0.75,"l":2.582},{"oc":"#221f1f","x":35.847,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":36.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":36.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":37.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.784,"y":37.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":36.001,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.634,"y":36.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":37.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":37.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":38.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":38.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":38.251,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.634,"y":38.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":51.934,"y":39.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":38.251,"w":0.75,"l":12.482},{"oc":"#221f1f","x":54.409,"y":39.751,"w":0.75,"l":12.482},{"oc":"#221f1f","x":66.784,"y":38.251,"w":0.75,"l":2.582},{"oc":"#221f1f","x":66.784,"y":39.751,"w":0.75,"l":2.582},{"oc":"#221f1f","x":84.109,"y":38.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.109,"y":39.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":38.251,"w":0.75,"l":2.582},{"oc":"#221f1f","x":96.484,"y":39.751,"w":0.75,"l":2.582},{"oc":"#221f1f","x":35.847,"y":41.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":39.559,"y":39.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":39.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":54.409,"y":41.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":66.784,"y":41.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":39.751,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.634,"y":39.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":84.109,"y":41.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":41.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":39.559,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":51.934,"y":45.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.238,"y":45.001,"w":0.75,"l":12.482},{"oc":"#221f1f","x":81.634,"y":45.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":45.001,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":68.065,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.352,"y":5.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":5.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":5.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":6.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":6.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":6.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":68.065,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.352,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":8.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.352,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":68.065,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":9.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":14.978,"w":0.75,"l":0.789},{"oc":"#221f1f","x":69.302,"y":14.978,"w":1.125,"l":0.789},{"oc":"#221f1f","x":35.89,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":15.736,"w":1.125,"l":1.531},{"oc":"#221f1f","x":84.152,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":15.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":17.236,"w":1.125,"l":0.781},{"oc":"#221f1f","x":81.677,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":17.986,"w":1.125,"l":0.781},{"oc":"#221f1f","x":81.677,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":17.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":18.736,"w":1.125,"l":0.781},{"oc":"#221f1f","x":84.152,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":19.485,"w":0.75,"l":3.039},{"oc":"#221f1f","x":39.602,"y":19.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":54.452,"y":19.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":66.827,"y":19.485,"w":0.75,"l":3.039},{"oc":"#221f1f","x":69.302,"y":19.485,"w":1.125,"l":3.031},{"oc":"#221f1f","x":84.152,"y":19.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":96.527,"y":19.485,"w":0.75,"l":3.039},{"oc":"#221f1f","x":35.89,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":22.485,"w":1.125,"l":0.781},{"oc":"#221f1f","x":84.152,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":23.235,"w":1.125,"l":1.531},{"oc":"#221f1f","x":84.152,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":39.602,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":69.302,"y":24.735,"w":1.125,"l":0.781},{"oc":"#221f1f","x":84.152,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":24.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":35.89,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":25.485,"w":1.125,"l":1.531},{"oc":"#221f1f","x":84.152,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":27.735,"w":1.125,"l":0.781},{"oc":"#221f1f","x":39.602,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":51.977,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":28.485,"w":1.125,"l":1.531},{"oc":"#221f1f","x":81.677,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":29.985,"w":1.125,"l":1.531},{"oc":"#221f1f","x":84.152,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":35.89,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":51.977,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":54.452,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":69.302,"y":31.485,"w":1.125,"l":3.031},{"oc":"#221f1f","x":81.677,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":84.152,"y":31.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":39.602,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":34.485,"w":1.125,"l":1.531},{"oc":"#221f1f","x":84.152,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":35.985,"w":1.125,"l":1.531},{"oc":"#221f1f","x":84.152,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.827,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":37.486,"w":1.125,"l":0.781},{"oc":"#221f1f","x":84.152,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":39.602,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":51.977,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":38.235,"w":1.125,"l":1.531},{"oc":"#221f1f","x":81.677,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":39.602,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":54.452,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.827,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.302,"y":39.736,"w":1.125,"l":1.531},{"oc":"#221f1f","x":84.152,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":39.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":35.89,"y":41.236,"w":0.75,"l":3.781},{"oc":"#221f1f","x":39.602,"y":41.236,"w":0.75,"l":3.781},{"oc":"#221f1f","x":54.452,"y":41.236,"w":0.75,"l":3.781},{"oc":"#221f1f","x":66.827,"y":41.236,"w":0.75,"l":3.781},{"oc":"#221f1f","x":69.302,"y":41.236,"w":1.125,"l":3.781},{"oc":"#221f1f","x":84.152,"y":41.236,"w":0.75,"l":3.781},{"oc":"#221f1f","x":96.527,"y":41.236,"w":0.75,"l":3.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":3.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":15.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":15.751,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":15.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":15.751,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":54.452,"y":17.251,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":66.827,"y":17.251,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":84.152,"y":17.251,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":96.527,"y":17.251,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":54.452,"y":18.001,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":66.827,"y":18.001,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":84.152,"y":18.001,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":96.527,"y":18.001,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":18.751,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":18.751,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":18.751,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":18.751,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":19.501,"w":12.375,"h":3,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":19.501,"w":2.475,"h":3,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":19.501,"w":12.375,"h":3,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":19.501,"w":2.475,"h":3,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":22.501,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":22.501,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":22.501,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":22.501,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":23.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":23.251,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":23.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":23.251,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":24.751,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":24.751,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":24.751,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":24.751,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":25.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":25.501,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":25.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":25.501,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":54.452,"y":28.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":66.827,"y":28.501,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":84.152,"y":28.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":96.527,"y":28.501,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":30.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":30.001,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":30.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":30.001,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":54.452,"y":31.501,"w":12.375,"h":3,"clr":-1},{"oc":"#bfc0c4","x":66.827,"y":31.501,"w":2.475,"h":3,"clr":-1},{"oc":"#bfc0c4","x":84.152,"y":31.501,"w":12.375,"h":3,"clr":-1},{"oc":"#bfc0c4","x":96.527,"y":31.501,"w":2.475,"h":3,"clr":-1},{"oc":"#bfc0c4","x":54.452,"y":34.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":66.827,"y":34.501,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":84.152,"y":34.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":96.527,"y":34.501,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":36.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":36.001,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":36.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":36.001,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":37.501,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":37.501,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":37.501,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":37.501,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bfc0c4","x":54.452,"y":38.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":66.827,"y":38.251,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":84.152,"y":38.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":96.527,"y":38.251,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":39.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":39.751,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":39.751,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":39.751,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":39.602,"y":41.251,"w":12.375,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":51.977,"y":41.251,"w":2.475,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":69.302,"y":41.251,"w":12.375,"h":3.75,"clr":-1},{"oc":"#bfc0c4","x":81.677,"y":41.251,"w":2.475,"h":3.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.126,"w":8.134000000000002,"clr":-1,"A":"left","R":[{"T":"Form%202106%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.365,"y":2.01,"w":2.8520000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.797,"y":2.01,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":10,"TS":[0,14,1,0]}]},{"x":6.584,"y":2.822,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":2.822,"w":14.287000000000008,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Vehicle%20Expenses%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.54,"w":14.948000000000006,"clr":-1,"A":"left","R":[{"T":"Section%20A%2C%20General%20Information%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":26.615,"y":3.54,"w":17.357,"clr":-1,"A":"left","R":[{"T":"(You%20must%20complete%20this%20section%20if%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.228,"w":13.890000000000004,"clr":-1,"A":"left","R":[{"T":"are%20claiming%20vehicle%20expenses.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.771,"y":3.8760000000000003,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":73.434,"y":3.8760000000000003,"w":4.334,"clr":-1,"A":"left","R":[{"T":"Vehicle%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.211,"y":3.8760000000000003,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.932,"y":3.8760000000000003,"w":4.334,"clr":-1,"A":"left","R":[{"T":"Vehicle%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":5.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":5.09,"w":21.243000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20date%20the%20vehicle%20was%20placed%20in%20service","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.126,"y":5.09,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.098,"y":5.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":71.889,"y":5.028,"w":0.611,"clr":-1,"A":"left","R":[{"T":"%2F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.805,"y":5.028,"w":0.611,"clr":-1,"A":"left","R":[{"T":"%2F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.976,"y":5.028,"w":0.611,"clr":-1,"A":"left","R":[{"T":"%2F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.905,"y":5.028,"w":0.611,"clr":-1,"A":"left","R":[{"T":"%2F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":5.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.84,"w":20.893000000000004,"clr":-1,"A":"left","R":[{"T":"Total%20miles%20the%20vehicle%20was%20driven%20during%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":5.84,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.098,"y":5.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":78.882,"y":5.84,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.142,"y":5.84,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":6.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":6.59,"w":15.653000000000004,"clr":-1,"A":"left","R":[{"T":"Business%20miles%20included%20on%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":6.59,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.098,"y":6.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":78.882,"y":6.59,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.142,"y":6.59,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":7.34,"w":22.117000000000004,"clr":-1,"A":"left","R":[{"T":"Percent%20of%20business%20use.%20Divide%20line%2013%20by%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":7.34,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.098,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":80.946,"y":7.34,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.205,"y":7.34,"w":1.278,"clr":-1,"A":"left","R":[{"T":"%25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":8.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":20.042,"clr":-1,"A":"left","R":[{"T":"Average%20daily%20roundtrip%20commuting%20distance%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":8.09,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.098,"y":8.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":78.882,"y":8.09,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.142,"y":8.09,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":8.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.84,"w":16.822000000000003,"clr":-1,"A":"left","R":[{"T":"Commuting%20miles%20included%20on%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":8.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.098,"y":8.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":78.882,"y":8.84,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.142,"y":8.84,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":9.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":30.23400000000001,"clr":-1,"A":"left","R":[{"T":"Other%20miles.%20Add%20lines%2013%20and%2016%20and%20subtract%20the%20total%20from%20line%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.567,"y":9.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.629,"y":9.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.098,"y":9.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":78.882,"y":9.59,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.142,"y":9.59,"w":2.612,"clr":-1,"A":"left","R":[{"T":"miles%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":10.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":29.800000000000008,"clr":-1,"A":"left","R":[{"T":"Was%20your%20vehicle%20available%20for%20personal%20use%20during%20off-duty%20hours%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":10.34,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.202,"y":10.34,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.627,"y":10.34,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":11.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.09,"w":32.651999999999994,"clr":-1,"A":"left","R":[{"T":"Do%20you%20(or%20your%20spouse)%20have%20another%20vehicle%20available%20for%20personal%20use%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.628,"y":11.09,"w":15.996,"clr":-1,"A":"left","R":[{"T":"...........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.202,"y":11.09,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.627,"y":11.09,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":11.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.84,"w":22.636000000000006,"clr":-1,"A":"left","R":[{"T":"Do%20you%20have%20evidence%20to%20support%20your%20deduction%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.191,"y":11.84,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.202,"y":11.84,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.627,"y":11.84,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.695,"y":12.527,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.892,"y":12.527,"w":14.779000000000005,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20is%20the%20evidence%20written%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.814,"y":12.527,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.202,"y":12.59,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.627,"y":12.59,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":13.322,"w":16.115000000000002,"clr":-1,"A":"left","R":[{"T":"Section%20B%E2%80%9EStandard%20Mileage%20Rate%20","S":-1,"TS":[0,13.4,1,0]}]},{"oc":"#221f1f","x":29.749,"y":13.322,"w":39.893999999999984,"clr":-1,"A":"left","R":[{"T":"(See%20the%20instructions%20for%20Part%20II%20to%20find%20out%20whether%20to%20complete%20this%20section%20or%20Section%20C.)%20","S":-1,"TS":[0,12.4,0,0]}]},{"oc":"#221f1f","x":6.694,"y":14.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.772,"y":14.09,"w":29.196000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2013%20by%2056.5%C2%A2%20(.565).%20Enter%20the%20result%20here%20and%20on%20line%201","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":14.09,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":14.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":14.822,"w":13.171000000000006,"clr":-1,"A":"left","R":[{"T":"Section%20C%2C%20Actual%20Expenses","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":49.733,"y":14.84,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":52.397,"y":14.84,"w":4.334,"clr":-1,"A":"left","R":[{"T":"Vehicle%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.405,"y":14.84,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":82.126,"y":14.84,"w":4.334,"clr":-1,"A":"left","R":[{"T":"Vehicle%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":15.559000000000001,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":15.541,"w":13.037000000000004,"clr":-1,"A":"left","R":[{"T":"Gasoline%2C%20oil%2C%20repairs%2C%20vehicle%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":16.228,"w":6.835000000000001,"clr":-1,"A":"left","R":[{"T":"insurance%2C%20etc.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":16.228,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":16.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.735,"y":17.09,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"24a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.09,"w":6.500000000000001,"clr":-1,"A":"left","R":[{"T":"Vehicle%20rentals","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":17.09,"w":9.331,"clr":-1,"A":"left","R":[{"T":"......%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.192,"y":17.09,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"24a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.398,"y":17.84,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":15.763000000000003,"clr":-1,"A":"left","R":[{"T":"Inclusion%20amount%20(see%20instructions)%20","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":32.751,"y":17.84,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":36.163,"y":17.84,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"24b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.455,"y":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":13.986000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2024b%20from%20line%2024a%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":32.751,"y":18.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":36.192,"y":18.59,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"24c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":19.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.403,"w":16.039,"clr":-1,"A":"left","R":[{"T":"Value%20of%20employer-provided%20vehicle%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.028,"w":14.003000000000005,"clr":-1,"A":"left","R":[{"T":"(applies%20only%20if%20100%25%20of%20annual%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.653,"w":15.428,"clr":-1,"A":"left","R":[{"T":"lease%20value%20was%20included%20on%20Form%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.277,"w":10.168000000000003,"clr":-1,"A":"left","R":[{"T":"W-2%E2%80%94see%20instructions)","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":26.565,"y":21.278,"w":6.665,"clr":-1,"A":"left","R":[{"T":"....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":21.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":22.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":22.34,"w":11.654000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2023%2C%2024c%2C%20and%2025.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.549,"y":22.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.611,"y":22.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":22.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":23.059,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.04,"w":15.375000000000009,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2026%20by%20the%20percentage%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.893,"y":23.728,"w":4.335000000000001,"clr":-1,"A":"left","R":[{"T":"on%20line%2014","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":18.318,"y":23.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":20.381,"y":23.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":22.445,"y":23.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":24.506,"y":23.728,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":26.57,"y":23.728,"w":7.02,"clr":-1,"A":"left","R":[{"T":"....%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":36.636,"y":23.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":24.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.59,"w":13.501000000000001,"clr":-1,"A":"left","R":[{"T":"Depreciation%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":24.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":24.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":25.309,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.29,"w":14.598000000000004,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2027%20and%2028.%20Enter%20total%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":25.978,"w":7.984000000000001,"clr":-1,"A":"left","R":[{"T":"here%20and%20on%20line%201","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.501,"y":25.978,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":26.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":26.822,"w":17.339000000000002,"clr":-1,"A":"left","R":[{"T":"Section%20D%2C%20Depreciation%20of%20Vehicles%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":33.463,"y":26.822,"w":41.56099999999997,"clr":-1,"A":"left","R":[{"T":"(Use%20this%20section%20only%20if%20you%20owned%20the%20vehicle%20and%20are%20completing%20Section%20C%20for%20the%20vehicle.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.092,"y":27.501,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":50.756,"y":27.501,"w":6.0020000000000024,"clr":-1,"A":"left","R":[{"T":"Vehicle%201%20%20%20%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.405,"y":27.501,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":82.126,"y":27.501,"w":4.334,"clr":-1,"A":"left","R":[{"T":"Vehicle%202%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":28.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":28.324,"w":13.631000000000007,"clr":-1,"A":"left","R":[{"T":"Enter%20cost%20or%20other%20basis%20(see%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":28.949,"w":5.445,"clr":-1,"A":"left","R":[{"T":"instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.379,"y":28.949,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":29.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.825,"w":14.820000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20section%20179%20deduction%20and%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":10.887,"y":30.449,"w":16.018,"clr":-1,"A":"left","R":[{"T":"special%20allowance%20(see%20instructions)%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":36.636,"y":30.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":31.558999999999997,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.564999999999998,"w":13.949000000000007,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2030%20by%20line%2014%20(see%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":32.24,"w":13.911000000000003,"clr":-1,"A":"left","R":[{"T":"instructions%20if%20you%20claimed%20the%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.915,"w":14.837000000000003,"clr":-1,"A":"left","R":[{"T":"section%20179%20deduction%20or%20special%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":33.59,"w":4.739000000000001,"clr":-1,"A":"left","R":[{"T":"allowance)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.318,"y":33.59,"w":11.997,"clr":-1,"A":"left","R":[{"T":"........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":33.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":34.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.29,"w":14.412000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20depreciation%20method%20and%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.977,"w":12.89,"clr":-1,"A":"left","R":[{"T":"percentage%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.751,"y":34.977,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":35.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.793,"w":15.65300000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2032%20by%20the%20percentage%20%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.418,"w":12.447000000000005,"clr":-1,"A":"left","R":[{"T":"on%20line%2033%20(see%20instructions)%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":30.689,"y":36.418,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":32.752,"y":36.418,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":36.636,"y":36.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2031%20and%2034","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":37.34,"w":6.665,"clr":-1,"A":"left","R":[{"T":"....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":38.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.059,"w":16.17,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20applicable%20limit%20explained%20%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":10.891,"y":38.684,"w":11.411000000000003,"clr":-1,"A":"left","R":[{"T":"in%20the%20line%2036%20instructions%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":28.628,"y":38.684,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":30.69,"y":38.684,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":32.752,"y":38.684,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":36.636,"y":38.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.559,"w":15.375000000000009,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2036%20by%20the%20percentage%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.184,"w":4.335000000000001,"clr":-1,"A":"left","R":[{"T":"on%20line%2014","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":18.312,"y":40.184,"w":12.375,"clr":-1,"A":"left","R":[{"T":"........%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":36.636,"y":40.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.247,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.231,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.953,"y":41.231,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.484,"y":41.231,"w":7.3530000000000015,"clr":-1,"A":"left","R":[{"T":"of%20line%2035%20or%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.856,"w":15.581000000000007,"clr":-1,"A":"left","R":[{"T":"37.%20If%20you%20skipped%20lines%2036%20and%2037%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":42.481,"w":13.728000000000002,"clr":-1,"A":"left","R":[{"T":"enter%20the%20amount%20from%20line%2035.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":43.106,"w":15.209000000000005,"clr":-1,"A":"left","R":[{"T":"Also%20enter%20this%20%20amount%20on%20line%2028%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":43.731,"w":2.7409999999999997,"clr":-1,"A":"left","R":[{"T":"above","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.251,"y":43.731,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.636,"y":44.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.01,"y":44.947,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.153,"y":44.947,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2106","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.453,"y":44.947,"w":3.02,"clr":-1,"A":"left","R":[{"T":"(2013)%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":1014,"AM":1024,"x":17.07,"y":2.069,"w":44.798,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":1015,"AM":1024,"x":80.033,"y":2.096,"w":13.054,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A165_L12_1_","EN":0},"TI":1016,"AM":0,"x":68.209,"y":5.342,"w":14.762,"h":0.833,"TU":"Enter the date the vehicle was placed in service","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A165_L12_2_","EN":0},"TI":1017,"AM":0,"x":83.283,"y":5.282,"w":14.762,"h":0.833,"TU":"Enter the date the vehicle was placed in service","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L13_1_","EN":0},"TI":1018,"AM":0,"x":68.06,"y":6.146,"w":10.944,"h":0.833,"TU":"Total miles the vehicle was driven during 2013"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L13_2_","EN":0},"TI":1019,"AM":0,"x":83.134,"y":6.032,"w":10.944,"h":0.833,"TU":"Total miles the vehicle was driven during 2013"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L14_1_","EN":0},"TI":1020,"AM":0,"x":68.12,"y":6.842,"w":10.958,"h":0.833,"TU":"Business miles included on line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L14_2_","EN":0},"TI":1021,"AM":0,"x":83.269,"y":6.755,"w":10.958,"h":0.833,"TU":"Business miles included on line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L15_1_","EN":0},"TI":1022,"AM":1024,"x":68.284,"y":7.592,"w":12.366,"h":0.833,"TU":"Percent of business use. Divide line 13 by line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L15_2_","EN":0},"TI":1023,"AM":1024,"x":83.358,"y":7.532,"w":12.366,"h":0.833,"TU":"Percent of business use. Divide line 13 by line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L16_1_","EN":0},"TI":1024,"AM":0,"x":68.168,"y":8.369,"w":10.835,"h":0.833,"TU":"Average daily roundtrip commuting distance"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L16_2_","EN":0},"TI":1025,"AM":0,"x":83.242,"y":8.309,"w":10.835,"h":0.833,"TU":"Average daily roundtrip commuting distance"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L17_1_","EN":0},"TI":1026,"AM":0,"x":68.161,"y":9.119,"w":10.992,"h":0.833,"TU":"Commuting miles included on line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L17_2_","EN":0},"TI":1027,"AM":0,"x":83.235,"y":9.059,"w":10.992,"h":0.833,"TU":"Commuting miles included on line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L18_1_","EN":0},"TI":1028,"AM":1024,"x":68.248,"y":9.823,"w":10.992,"h":0.833,"TU":"Commuting miles included on line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L18_2_","EN":0},"TI":1029,"AM":1024,"x":83.322,"y":9.763,"w":10.992,"h":0.833,"TU":"Commuting miles included on line 12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":1038,"AM":1024,"x":84.253,"y":14.288,"w":12.189,"h":0.833,"TU":"22"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L23_1_","EN":0},"TI":1039,"AM":0,"x":54.636,"y":16.471,"w":12.024,"h":0.833,"TU":"Line 23(a). Gasoline, oil, repairs, vehicle insurance, etc."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L23_2_","EN":0},"TI":1040,"AM":0,"x":84.433,"y":16.463,"w":12.024,"h":0.833,"TU":"Line 23(b). Gasoline, oil, repairs, vehicle insurance, etc"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24A_1_","EN":0},"TI":1041,"AM":0,"x":39.703,"y":17.315,"w":12.189,"h":0.833,"TU":"Line 24a (a). Vehicle rentals."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24A_2_","EN":0},"TI":1042,"AM":0,"x":69.371,"y":17.258,"w":12.189,"h":0.833,"TU":"Line 24a (b). Vehicle rentals."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24B_1_","EN":0},"TI":1043,"AM":0,"x":39.767,"y":18.088,"w":12.189,"h":0.833,"TU":"Line 24b (a). Inclusion amount (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24B_2_","EN":0},"TI":1044,"AM":0,"x":69.371,"y":18.008,"w":12.189,"h":0.833,"TU":"Line 24b (b). Inclusion amount (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24C_1_","EN":0},"TI":1045,"AM":1024,"x":54.763,"y":18.73,"w":12.025,"h":0.833,"TU":"(b) Vehicle 2_23"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24C_2_","EN":0},"TI":1046,"AM":1024,"x":84.56,"y":18.723,"w":12.024,"h":0.833,"TU":"(b) Vehicle 2_23"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L25_1_","EN":0},"TI":1047,"AM":0,"x":54.6,"y":21.78,"w":12.169,"h":0.833,"TU":"Line 25 (a). Value of employer- provided vehicle (applies only if 100% of annual lease value was included on Form W-2 - see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L25_2_","EN":0},"TI":1048,"AM":0,"x":84.397,"y":21.772,"w":12.169,"h":0.833,"TU":"Line 25 (b). Value of employer- provided vehicle (applies only if 100% of annual lease value was included on Form W-2 - see instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L26_1_","EN":0},"TI":1049,"AM":1024,"x":54.675,"y":22.557,"w":12.169,"h":0.833,"TU":"26. Add lines 23, 24c, and 25"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L26_2_","EN":0},"TI":1050,"AM":1024,"x":84.472,"y":22.549,"w":12.169,"h":0.833,"TU":"26. Add lines 23, 24c, and 25"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L27_1_","EN":0},"TI":1051,"AM":1024,"x":54.609,"y":23.942,"w":12.024,"h":0.833,"TU":"27. Multiply line 26 by the percentage on line 14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L27_2_","EN":0},"TI":1052,"AM":1024,"x":84.406,"y":23.934,"w":12.024,"h":0.833,"TU":"27. Multiply line 26 by the percentage on line 14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L28_1_","EN":0},"TI":1053,"AM":0,"x":54.756,"y":24.785,"w":11.784,"h":0.833,"TU":"Line 28 (a). Depreciation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L28_2_","EN":0},"TI":1054,"AM":0,"x":84.553,"y":24.777,"w":11.784,"h":0.833,"TU":"Line 28 (b). Depreciation."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L29_1_","EN":0},"TI":1055,"AM":1024,"x":54.745,"y":26.216,"w":12.169,"h":0.833,"TU":"29. Add lines 27 and 28."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L29_2_","EN":0},"TI":1056,"AM":1024,"x":84.297,"y":26.208,"w":12.169,"h":0.833,"TU":"29. Add lines 27 and 28."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L30_1_","EN":0},"TI":1057,"AM":0,"x":39.786,"y":29.166,"w":12.024,"h":0.833,"TU":"Line 30 (a). Enter cost or other basis (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L30_2_","EN":0},"TI":1058,"AM":0,"x":69.536,"y":29.114,"w":12.024,"h":0.833,"TU":"Line 30 (b). Enter cost or other basis (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L31_1_","EN":0},"TI":1059,"AM":0,"x":54.608,"y":30.679,"w":12.004,"h":0.833,"TU":"Line 31 (a). Enter section 179 deduction and special allowance (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L31_2_","EN":0},"TI":1060,"AM":0,"x":84.371,"y":30.672,"w":12.004,"h":0.833,"TU":"Line 31 (b). Enter section 179 deduction and special allowance (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L32_1_","EN":0},"TI":1061,"AM":0,"x":39.848,"y":33.659,"w":12.275,"h":0.833,"TU":"Line 32 (a). Multiply line 30 by line 14 (see instructions if you claimed the section 179 deduction or special allowance)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L32_2_","EN":0},"TI":1062,"AM":0,"x":69.598,"y":33.606,"w":12.275,"h":0.833,"TU":"Line 32 (b). Multiply line 30 by line 14 (see instructions if you claimed the section 179 deduction or special allowance)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A160_L33T_1_","EN":0},"TI":1063,"AM":0,"x":39.692,"y":34.56,"w":14.499,"h":0.833,"TU":"Line 33 (a). Enter depreciation method (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A160_L33T_2_","EN":0},"TI":1064,"AM":0,"x":69.442,"y":34.508,"w":14.499,"h":0.833,"TU":"Line 33 (b). Enter depreciation method (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L33_1_","EN":0},"TI":1065,"AM":0,"x":39.786,"y":35.303,"w":14.499,"h":0.833,"TU":"Line 33 (a). Enter depreciation percentage (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L33_2_","EN":0},"TI":1066,"AM":0,"x":69.536,"y":35.25,"w":14.499,"h":0.833,"TU":"Line 33 (b). Enter depreciation percentage (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L34_1_","EN":0},"TI":1067,"AM":1024,"x":54.539,"y":36.708,"w":12.152,"h":0.833,"TU":"(b) Vehicle 2_30"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L34_2_","EN":0},"TI":1068,"AM":1024,"x":84.301,"y":36.607,"w":12.153,"h":0.833,"TU":"(b) Vehicle 2_30"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L35_1_","EN":0},"TI":1069,"AM":1024,"x":54.491,"y":37.555,"w":12.153,"h":0.833,"TU":"(b) Vehicle 2_30"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L35_2_","EN":0},"TI":1070,"AM":1024,"x":84.254,"y":37.455,"w":12.152,"h":0.833,"TU":"(b) Vehicle 2_30"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L36_1_","EN":0},"TI":1071,"AM":0,"x":39.786,"y":38.944,"w":12.024,"h":0.833,"TU":"Line 36 (a). Enter the applicable limit explained in the line 36 instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L36_2_","EN":0},"TI":1072,"AM":0,"x":69.536,"y":38.891,"w":12.024,"h":0.833,"TU":"Line 36 (b). Enter the applicable limit explained in the line 36 instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L37_1_","EN":0},"TI":1073,"AM":1024,"x":54.688,"y":40.522,"w":12.024,"h":0.833,"TU":"(b) Vehicle 2_31"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L37_2_","EN":0},"TI":1074,"AM":1024,"x":84.451,"y":40.394,"w":12.024,"h":0.833,"TU":"(b) Vehicle 2_31"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L38_1_","EN":0},"TI":1075,"AM":1024,"x":54.555,"y":44.184,"w":12.024,"h":0.833,"TU":"(b) Vehicle 2_31"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L38_2_","EN":0},"TI":1076,"AM":1024,"x":84.318,"y":44.084,"w":12.024,"h":0.833,"TU":"(b) Vehicle 2_31"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20Y","EN":0},"TI":1030,"AM":0,"x":85.274,"y":10.52,"w":1.597,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20N","EN":0},"TI":1031,"AM":0,"x":92.711,"y":10.502,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"L20RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L19Y","EN":0},"TI":1032,"AM":0,"x":85.324,"y":11.246,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L19N","EN":0},"TI":1033,"AM":0,"x":92.761,"y":11.228,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"L19RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21AY","EN":0},"TI":1034,"AM":0,"x":85.304,"y":12.001,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21AN","EN":0},"TI":1035,"AM":0,"x":92.741,"y":11.983,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"L21ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21BY","EN":0},"TI":1036,"AM":0,"x":85.359,"y":12.729,"w":1.596,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21BN","EN":0},"TI":1037,"AM":0,"x":92.796,"y":12.711,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"L21BRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Title":"2013 Form 2106 ","Author":"SE:W:CAR:MP","Subject":"Employee Business Expenses","Keywords":"Fillable","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131101093253-07'00'","ModDate":"D:20140108130608-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":5.251,"w":1.5,"l":5.431,"oc":"#221f1f"},{"x":7.635,"y":5.234,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.57,"y":3.001,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.57,"y":5.249,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.235,"y":6.751,"w":1.125,"l":17.581,"oc":"#221f1f"},{"x":19.785,"y":6.751,"w":1.125,"l":9.031,"oc":"#221f1f"},{"x":28.785,"y":6.751,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":31.035,"y":6.751,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":33.285,"y":6.751,"w":1.125,"l":2.731,"oc":"#221f1f"},{"x":2.235,"y":7.948,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":8.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":10.501,"w":0.75,"l":19.381,"oc":"#221f1f"},{"x":21.585,"y":10.501,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":10.501,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":21.585,"y":12.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":12.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":12.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":10.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":10.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":10.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":14.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":14.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":14.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":15.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":15.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":15.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":18.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.935,"y":18.751,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":27.435,"y":18.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":18.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":18.751,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":18.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":20.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":18.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":20.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":21.751,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":24.001,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":28.704,"y":27.001,"w":0.75,"l":1.368,"oc":"#221f1f"},{"x":28.704,"y":24.001,"w":0.75,"l":1.368,"oc":"#221f1f"},{"x":2.235,"y":27.001,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":29.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":22.935,"y":31.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.801,"y":31.501,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":28.801,"y":29.251,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":30.135,"y":31.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":39.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":39.001,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":39.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":39.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":39.001,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":39.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":42.001,"w":1.5,"l":17.131,"oc":"#221f1f"},{"x":19.335,"y":42.001,"w":1.5,"l":12.181,"oc":"#221f1f"},{"x":31.485,"y":42.001,"w":1.5,"l":4.531,"oc":"#221f1f"}],"VLines":[{"x":7.651,"y":2.235,"w":1.5,"l":3.031,"oc":"#221f1f"},{"x":30.601,"y":2.235,"w":1.5,"l":0.769,"oc":"#221f1f"},{"x":30.601,"y":2.985,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":4.019,"w":1.5,"l":1.26,"oc":"#221f1f"},{"x":19.801,"y":5.235,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":5.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":5.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":33.301,"y":5.985,"w":0.75,"l":0.789,"oc":"#221f1f","dsh":1},{"x":31.051,"y":5.985,"w":0.75,"l":0.789,"oc":"#221f1f","dsh":1},{"x":21.601,"y":8.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.801,"y":8.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.951,"y":10.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":21.601,"y":10.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":27.451,"y":10.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.151,"y":10.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.801,"y":10.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.151,"y":10.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.951,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.951,"y":14.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":14.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":14.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":14.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":14.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":14.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.951,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.951,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":21.601,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":22.951,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":27.451,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":30.151,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.651,"y":17.236,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":22.951,"y":18.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":18.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":18.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":18.728,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":18.728,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.651,"y":18.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.775,"y":23.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":21.406,"y":23.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":27.335,"y":23.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":30.072,"y":24.001,"w":0.75,"l":3,"oc":"#221f1f"},{"x":28.704,"y":24.001,"w":0.75,"l":3,"oc":"#221f1f"},{"x":34.633,"y":23.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":22.951,"y":29.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":21.601,"y":29.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":27.451,"y":29.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.151,"y":29.251,"w":0.75,"l":2.25,"oc":"#221f1f"},{"x":28.801,"y":29.251,"w":0.75,"l":2.25,"oc":"#221f1f"},{"x":34.651,"y":29.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.951,"y":31.485,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":21.601,"y":31.485,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":22.951,"y":31.485,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":27.451,"y":31.485,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":30.151,"y":31.485,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":28.801,"y":31.485,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":30.151,"y":31.485,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":34.651,"y":31.485,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":22.951,"y":38.236,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":21.601,"y":38.236,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":22.951,"y":35.236,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":21.601,"y":35.236,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":27.451,"y":35.236,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":30.151,"y":35.236,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":28.801,"y":35.236,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":34.651,"y":35.236,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":30.151,"y":38.986,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":28.801,"y":38.986,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":34.651,"y":38.986,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.651,"y":41.236,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":7.073,"w":2.25,"h":0.875,"oc":"#221f1f"},{"x":28.801,"y":10.501,"w":1.35,"h":2.25,"oc":"#bfc0c4"},{"x":30.151,"y":10.501,"w":4.5,"h":2.25,"oc":"#bfc0c4"},{"x":34.651,"y":10.501,"w":1.35,"h":2.25,"oc":"#bfc0c4"},{"x":30.151,"y":12.751,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":30.151,"y":14.251,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":30.151,"y":15.751,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":22.951,"y":17.251,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":28.704,"y":24.001,"w":1.368,"h":3,"oc":"#bfc0c4"},{"x":28.801,"y":29.251,"w":1.35,"h":2.25,"oc":"#bfc0c4"},{"x":21.601,"y":31.501,"w":1.35,"h":3.75,"oc":"#bfc0c4"},{"x":28.801,"y":31.501,"w":1.35,"h":3.75,"oc":"#bfc0c4"},{"x":21.601,"y":35.251,"w":1.35,"h":3,"oc":"#bfc0c4"},{"x":28.801,"y":35.251,"w":1.35,"h":3.75,"oc":"#bfc0c4"}],"Texts":[{"x":2.001,"y":2.634,"w":2.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":3.265,"y":2.634,"w":2.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2106 ","S":-1,"TS":[0,28,1,0]}]},{"x":2.001,"y":3.7510000000000003,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.370000000000001,0,0]}]},{"x":2.001,"y":4.251,"w":13.557,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99) ","S":-1,"TS":[0,9.370000000000001,0,0]}]},{"x":10.613,"y":2.434,"w":14.673,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Employee Business Expenses ","S":-1,"TS":[0,24,1,0]}]},{"x":14.701,"y":3.375,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":15.076,"y":3.4690000000000003,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":48,"TS":[3,10,0,0]}]},{"x":15.198,"y":3.4690000000000003,"w":17.893,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach to Form 1040 or Form 1040NR.","S":8,"TS":[0,10,1,0]}]},{"x":8.622,"y":4.089,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":8.997,"y":4.09,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":48,"TS":[3,10,0,0]}]},{"x":29.008,"y":4.09,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":2,"TS":[0,10,0,0]}]},{"x":31.02,"y":1.9689999999999999,"w":9.561,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074 ","S":2,"TS":[0,10,0,0]}]},{"x":31.426,"y":3.295,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.568,"y":3.295,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":34.676,"y":3.295,"w":0.334,"oc":"#221f1f","sw":0.43490625,"A":"left","R":[{"T":" ","S":-1,"TS":[0,25,0,0]}]},{"x":31.101,"y":3.8920000000000003,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.101,"y":4.338,"w":6.075,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No","S":2,"TS":[0,10,0,0]}]},{"x":33.758,"y":4.338,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":1,"TS":[0,8,0,0]}]},{"x":34.068,"y":4.338,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"129","S":10,"TS":[0,14,1,0]}]},{"x":35.235,"y":4.338,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":4.938,"w":5.15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your name ","S":2,"TS":[0,10,0,0]}]},{"x":19.801,"y":4.938,"w":15.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Occupation in which you incurred","S":2,"TS":[0,10,0,0]}]},{"x":26.365,"y":4.938,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":26.486,"y":4.938,"w":4.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"expenses ","S":2,"TS":[0,10,0,0]}]},{"x":28.801,"y":4.938,"w":11.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Social security number","S":8,"TS":[0,10,1,0]}]},{"x":2.327,"y":6.957,"w":2.833,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":6.947,"w":30.68,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Employee Business Expenses and Reimbursements ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":8.729,"w":13.616,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Step 1 Enter Your Expenses","S":10,"TS":[0,14,1,0]}]},{"x":23.639,"y":8.007,"w":5.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Column A ","S":9,"TS":[0,12,1,0]}]},{"x":22.716,"y":8.695,"w":8.781,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other Than Meals ","S":3,"TS":[0,12,0,0]}]},{"x":22.643,"y":9.382,"w":8.207,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and Entertainment","S":3,"TS":[0,12,0,0]}]},{"x":30.833,"y":8.007,"w":5.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Column B ","S":9,"TS":[0,12,1,0]}]},{"x":30.849,"y":8.695,"w":5.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Meals and ","S":3,"TS":[0,12,0,0]}]},{"x":30.395,"y":9.382,"w":6.243,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Entertainment","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":11.04,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":11.04,"w":28.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle expense from line 22 or line 29. (Rural mail carriers: See ","S":3,"TS":[0,12,0,0]}]},{"x":3.353,"y":11.727,"w":5.723,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions.)","S":3,"TS":[0,12,0,0]}]},{"x":7.253,"y":11.727,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................. ","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":11.84,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":12.54,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":12.54,"w":30.804,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Parking fees, tolls, and transportation, including train, bus, etc., that ","S":3,"TS":[0,12,0,0]}]},{"x":3.352,"y":13.228,"w":3.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"did not","S":9,"TS":[0,12,1,0]}]},{"x":5.091,"y":13.228,"w":25.264,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" involve overnight travel or commuting to and from work ","S":3,"TS":[0,12,0,0]}]},{"x":19.877,"y":13.228,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":13.34,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":14.04,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":14.04,"w":30.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Travel expense while away from home overnight, including lodging, ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":14.728,"w":10.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"airplane, car rental, etc. ","S":3,"TS":[0,12,0,0]}]},{"x":8.851,"y":14.728,"w":3.166,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not","S":9,"TS":[0,12,1,0]}]},{"x":10.519,"y":14.728,"w":14.839,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" include meals and entertainment","S":3,"TS":[0,12,0,0]}]},{"x":19.314,"y":14.728,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":14.84,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":15.54,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":15.54,"w":24.118,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business expenses not included on lines 1 through 3. ","S":3,"TS":[0,12,0,0]}]},{"x":15.655,"y":15.54,"w":3.444,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not ","S":9,"TS":[0,12,1,0]}]},{"x":17.371,"y":15.54,"w":3.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" include ","S":3,"TS":[0,12,0,0]}]},{"x":3.352,"y":16.228,"w":11.06,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"meals and entertainment","S":3,"TS":[0,12,0,0]}]},{"x":10.253,"y":16.228,"w":19.995,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............. ","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":16.34,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":17.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":17.84,"w":23.468,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Meals and entertainment expenses (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":17.001,"y":17.84,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":17.84,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":18.541,"w":8.893,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 Total expenses. ","S":9,"TS":[0,12,1,0]}]},{"x":7.136,"y":18.541,"w":21.99,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"In Column A, add lines 1 through 4 and enter the ","S":3,"TS":[0,12,0,0]}]},{"x":21.06,"y":18.541,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.354,"y":19.228,"w":21.73,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"result. In Column B, enter the amount from line 5","S":3,"TS":[0,12,0,0]}]},{"x":16.253,"y":19.228,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...... ","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":19.341,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":20.376,"w":5.613,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Note: ","S":9,"TS":[0,12,1,0]}]},{"x":4.659,"y":20.376,"w":48.398,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you were not reimbursed for any expenses in Step 1, skip line 7 and enter the amount from line 6 on line 8. ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":22.291,"w":43.847,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Step 2 Enter Reimbursements Received From Your Employer for Expenses Listed in Step 1 ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":22.983,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":3.369,"y":22.983,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":21.157,"y":22.983,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":22.525,"y":22.983,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.086,"y":22.983,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":28.454,"y":22.983,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":29.823,"y":22.983,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":34.383,"y":22.983,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2.606,"y":23.915,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7 ","S":3,"TS":[0,12,0,0]}]},{"x":2.919,"y":24.602,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.919,"y":25.29,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.369,"y":23.915,"w":27.653,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter reimbursements received from your employer that were ","S":3,"TS":[0,12,0,0]}]},{"x":17.27,"y":23.915,"w":1.555,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"not","S":9,"TS":[0,12,1,0]}]},{"x":20.708,"y":23.915,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.371,"y":24.602,"w":30.398,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"reported to you in box 1 of Form W-2. Include any reimbursements ","S":3,"TS":[0,12,0,0]}]},{"x":3.37,"y":25.29,"w":25.821,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"reported under code “L” in box 12 of your Form W-2 (see ","S":3,"TS":[0,12,0,0]}]},{"x":21.134,"y":25.29,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.371,"y":25.977,"w":5.445,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions)","S":3,"TS":[0,12,0,0]}]},{"x":6.503,"y":25.977,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":21.684,"y":26.09,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":27.541,"w":38.177,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Step 3 Figure Expenses To Deduct on Schedule A (Form 1040 or Form 1040NR) ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":28.246,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":28.246,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":21.351,"y":28.246,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":22.701,"y":28.235,"w":1.39,"oc":"#272872","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":27.201,"y":28.235,"w":1.112,"oc":"#272872","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":28.551,"y":28.26,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":29.901,"y":28.235,"w":1.112,"oc":"#272872","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":34.401,"y":28.235,"w":1.112,"oc":"#272872","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":2.588,"y":29.103,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":29.79,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":29.103,"w":31.243,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 7 from line 6. If zero or less, enter -0-. However, if line 7 ","S":3,"TS":[0,12,0,0]}]},{"x":3.354,"y":29.79,"w":29.97,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"is greater than line 6 in Column A, report the excess as income on ","S":3,"TS":[0,12,0,0]}]},{"x":3.356,"y":30.477,"w":20.322,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040, line 7 (or on Form 1040NR, line 8)","S":3,"TS":[0,12,0,0]}]},{"x":15.506,"y":30.477,"w":10.664,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....... ","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":30.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":9,"TS":[0,12,1,0]}]},{"x":3.351,"y":32.005,"w":2.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Note: ","S":9,"TS":[0,12,1,0]}]},{"x":5.257,"y":32.005,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":5.288,"y":32.005,"w":6.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"both columns","S":9,"TS":[0,12,1,0]}]},{"x":9.08,"y":32.005,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":18.385,"y":32.005,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":32.692,"w":29.469,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"employee business expenses. Stop here and attach Form 2106 to ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":33.38,"w":5.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"your return. ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":35.228,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":35.915,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":36.603,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":37.29,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":35.227,"w":30.901,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"In Column A, enter the amount from line 8. In Column B, multiply line ","S":3,"TS":[0,12,0,0]}]},{"x":3.348,"y":35.915,"w":30.731,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8 by 50% (.50). (Employees subject to Department of Transportation ","S":3,"TS":[0,12,0,0]}]},{"x":3.348,"y":36.602,"w":30.393,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(DOT) hours of service limits: Multiply meal expenses incurred while ","S":3,"TS":[0,12,0,0]}]},{"x":3.349,"y":37.29,"w":28.452,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"away from home on business by 80% (.80) instead of 50%. For ","S":3,"TS":[0,12,0,0]}]},{"x":3.349,"y":37.977,"w":11.057,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"details, see instructions.)","S":3,"TS":[0,12,0,0]}]},{"x":10.249,"y":37.977,"w":18.662,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":38.091,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":38.915,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":39.603,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":40.29,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":38.915,"w":30.53,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add the amounts on line 9 of both columns and enter the total here. ","S":-1,"TS":[0,11.82,0,0]}]},{"x":18.756,"y":38.915,"w":11.113,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Also, enter the total on ","S":-1,"TS":[0,11.82,1,0]}]},{"x":3.347,"y":39.603,"w":15.061,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule A (Form 1040), line 21","S":-1,"TS":[0,11.82,1,0]}]},{"x":10.873,"y":39.603,"w":3.13,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (or on ","S":-1,"TS":[0,11.82,0,0]}]},{"x":12.559,"y":39.603,"w":15.949,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule A (Form 1040NR), line 7","S":-1,"TS":[0,11.82,1,0]}]},{"x":20.574,"y":39.603,"w":7.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"). (Armed Forces ","S":-1,"TS":[0,11.82,0,0]}]},{"x":3.347,"y":40.29,"w":44.56,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"reservists, qualified performing artists, fee-basis state or local government officials, and individuals ","S":-1,"TS":[0,11.82,0,0]}]},{"x":3.345,"y":40.988,"w":36.725,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"with disabilities: See the instructions for special rules on where to enter the total.) ","S":-1,"TS":[0,11.82,0,0]}]},{"x":23.745,"y":40.988,"w":6.805,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.82,0,0]}]},{"x":27.196,"y":40.988,"w":1.361,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.82,0,0]}]},{"x":27.354,"y":40.895,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":28.913,"y":41.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":41.858,"w":33.23,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see your tax return instructions.","S":-1,"TS":[0,11,1,0]}]},{"x":23.539,"y":41.876,"w":7.484,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11700N","S":2,"TS":[0,10,0,0]}]},{"x":31.897,"y":42.01,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":33.04,"y":42.01,"w":2.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2106","S":10,"TS":[0,14,1,0]}]},{"x":34.43,"y":42.01,"w":3.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":9.119,"y":4.09,"w":45.348,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Information about Form 2106 and its separate instructions is available at www.irs.gov/form2106","S":8,"TS":[0,10,1,0]}]},{"x":4.882,"y":32.005,"w":0.555,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If","S":3,"TS":[0,12,0,0]}]},{"x":8.612,"y":32.005,"w":16.263,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of line 8 are zero, you cannot deduct","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1428,"AM":1024,"TU":"Your name","x":2.265,"y":5.821,"w":17.49,"h":0.906},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OCC","EN":0},"TI":1429,"AM":0,"TU":"Occupation in which you incurred expenses","x":19.852,"y":5.821,"w":8.903,"h":0.906},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1430,"AM":1024,"x":28.858,"y":5.828,"w":7.143,"h":0.911},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":1431,"AM":0,"TU":"Line 1. Vehicle expense from line 22 or line 29. (Rural mail carriers\" See instructions)","x":23.025,"y":11.862,"w":4.358,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":1432,"AM":0,"TU":"Line 2. Parking fees, tolls, and transportation, including train, bus, etc. that did not involve overnight travel or commuting to and from work.","x":23.017,"y":13.444,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1433,"AM":0,"TU":"Line 3. Travel expense while away from home overnight, including lodging, airplane, car rental, etc. Do not include meals and entertainment.","x":23.017,"y":14.944,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":1434,"AM":0,"TU":"Line 4. Business expenses not included on lines 1 through 3. Do not include meals and entertainment.","x":23.017,"y":16.416,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":1435,"AM":0,"TU":"Line 5. Meals and Entertainment expenses (see instructions).","x":30.218,"y":17.862,"w":4.373,"h":0.866},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6A","EN":0},"TI":1436,"AM":1024,"x":23.017,"y":19.424,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6B","EN":0},"TI":1437,"AM":1024,"TU":"Column B Meals and Entertainment_6","x":30.218,"y":19.397,"w":4.373,"h":0.838},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7A","EN":0},"TI":1438,"AM":0,"TU":"Line 7. Column A Other Than Meals and Entertainment. Enter reimbursements received from your employer that were not reported to you in box 1 of Form W-2. Include any reimbursements reported under Code \"L\" in box 12 of your Form W-2 (see instructions).","x":22.84,"y":26.077,"w":4.387,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7B","EN":0},"TI":1439,"AM":0,"TU":"Line 7. Column B Meals and Entertainment. Enter reimbursements received from your employer that were not reported to you in box 1 of Form W-2. Include any reimbursements reported under Code \"L\" in box 12 of your Form W-2 (see instructions).","x":30.126,"y":26.019,"w":4.388,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":1440,"AM":1024,"x":23.025,"y":30.638,"w":4.358,"h":0.847},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":1441,"AM":1024,"x":30.311,"y":30.603,"w":4.358,"h":0.847},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":1442,"AM":1024,"x":23.04,"y":38.287,"w":4.327,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10B","EN":0},"TI":1443,"AM":0,"TU":"Line 9. In Column B, multiply line 8 by 50% (.50). (Employees subject to Department of Transportation (DOT) hours of service limits: Multiply meal expenses incurred while away from home on business by 80% (.80) instead of 50%. For details, see instructions).","x":30.326,"y":38.275,"w":4.328,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":1444,"AM":1024,"TU":"10","x":30.267,"y":41.077,"w":4.327,"h":0.885}],"Boxsets":[]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":3.001,"w":1.5,"l":31.531,"oc":"#221f1f"},{"x":33.735,"y":3.001,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":3.751,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":5.251,"w":0.75,"l":21.181,"oc":"#221f1f"},{"x":23.385,"y":5.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":5.251,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":30.135,"y":5.251,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":23.385,"y":6.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":6.001,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":26.535,"y":6.001,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":28.335,"y":6.001,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":30.135,"y":6.001,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":32.385,"y":6.001,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":34.185,"y":6.001,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":23.385,"y":6.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":6.751,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":30.135,"y":6.751,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":23.385,"y":7.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":7.501,"w":1.125,"l":5.431,"oc":"#221f1f"},{"x":30.135,"y":7.501,"w":1.125,"l":5.881,"oc":"#221f1f"},{"x":23.385,"y":8.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":8.251,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":30.135,"y":8.251,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":23.385,"y":9.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":9.001,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":30.135,"y":9.001,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":23.385,"y":9.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":9.751,"w":1.125,"l":5.431,"oc":"#221f1f"},{"x":30.135,"y":9.751,"w":1.125,"l":5.881,"oc":"#221f1f"},{"x":23.385,"y":10.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":24.735,"y":10.501,"w":1.125,"l":5.431,"oc":"#221f1f"},{"x":30.135,"y":10.501,"w":1.125,"l":5.881,"oc":"#221f1f"},{"x":2.235,"y":13.501,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":14.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":15.001,"w":1.125,"l":12.181,"oc":"#221f1f"},{"x":2.235,"y":15.751,"w":0.75,"l":12.181,"oc":"#221f1f"},{"x":14.385,"y":15.001,"w":1.125,"l":10.831,"oc":"#221f1f"},{"x":14.385,"y":15.751,"w":0.75,"l":10.831,"oc":"#221f1f"},{"x":25.177,"y":15.001,"w":1.125,"l":10.839,"oc":"#221f1f"},{"x":25.177,"y":15.751,"w":0.75,"l":10.839,"oc":"#221f1f"},{"x":13.035,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":15.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":14.385,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":15.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":18.885,"y":17.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":15.751,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":25.177,"y":17.251,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.677,"y":15.751,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":29.677,"y":17.251,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":13.035,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":18.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":18.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":19.785,"y":17.251,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":24.285,"y":17.251,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":25.185,"y":18.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":29.685,"y":18.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":17.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":18.751,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":24.285,"y":18.751,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":30.585,"y":18.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":18.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":19.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":18.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":18.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":19.785,"y":19.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":19.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":18.751,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.677,"y":18.751,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":30.585,"y":19.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":19.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":22.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":22.501,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":22.501,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":22.501,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":22.501,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":23.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":23.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":23.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":23.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":23.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":24.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":24.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":24.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":24.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":24.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":25.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":25.501,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":25.501,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":25.501,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":25.501,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":14.385,"y":27.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":27.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":27.001,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.677,"y":27.001,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":2.235,"y":27.001,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":27.751,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":13.035,"y":28.501,"w":0.75,"l":12.181,"oc":"#221f1f"},{"x":25.177,"y":28.501,"w":0.75,"l":10.839,"oc":"#221f1f"},{"x":13.035,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":28.501,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":19.785,"y":30.001,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":24.285,"y":28.501,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":24.285,"y":30.001,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":30.585,"y":28.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.585,"y":30.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":28.501,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":35.085,"y":30.001,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":13.035,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":30.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":14.385,"y":31.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":30.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":18.885,"y":31.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":30.001,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":25.177,"y":31.501,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.685,"y":30.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":29.685,"y":31.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":34.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":34.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":34.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":19.785,"y":31.501,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":24.285,"y":31.501,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":25.185,"y":34.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":29.685,"y":34.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":31.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":31.501,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":13.035,"y":36.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":36.001,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":24.285,"y":36.001,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":30.585,"y":36.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":36.001,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":13.035,"y":37.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":36.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":36.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":19.785,"y":37.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":37.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":36.001,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.685,"y":36.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":37.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":37.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":38.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":38.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":38.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":38.251,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.685,"y":38.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":39.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.885,"y":39.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":19.785,"y":38.251,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":19.785,"y":39.751,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":24.285,"y":38.251,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":24.285,"y":39.751,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":30.585,"y":38.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.585,"y":39.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":38.251,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":35.085,"y":39.751,"w":0.75,"l":0.939,"oc":"#221f1f"},{"x":13.035,"y":41.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":14.385,"y":39.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":39.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":19.785,"y":41.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":24.285,"y":41.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":39.751,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.685,"y":39.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":41.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":41.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":14.385,"y":45.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.885,"y":45.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.177,"y":45.001,"w":0.75,"l":4.539,"oc":"#221f1f"},{"x":29.685,"y":45.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":2.235,"y":45.001,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":24.751,"y":3.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":3.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":23.401,"y":5.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.751,"y":5.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":5.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.401,"y":5.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.751,"y":5.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":5.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.401,"y":6.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":24.751,"y":6.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":6.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":23.401,"y":7.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.751,"y":7.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":7.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.401,"y":8.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.751,"y":8.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":8.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.401,"y":8.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":24.751,"y":8.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":8.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":23.401,"y":9.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":24.751,"y":9.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":9.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.251,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":14.978,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":25.201,"y":14.978,"w":1.125,"l":0.789,"oc":"#221f1f"},{"x":13.051,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.401,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.301,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":15.736,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":15.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":17.236,"w":1.125,"l":0.781,"oc":"#221f1f"},{"x":29.701,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":17.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":17.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":17.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":17.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":17.986,"w":1.125,"l":0.781,"oc":"#221f1f"},{"x":29.701,"y":17.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":17.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.301,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":18.736,"w":1.125,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":19.485,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":14.401,"y":19.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":19.801,"y":19.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":24.301,"y":19.485,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":25.201,"y":19.485,"w":1.125,"l":3.031,"oc":"#221f1f"},{"x":30.601,"y":19.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":35.101,"y":19.485,"w":0.75,"l":3.039,"oc":"#221f1f"},{"x":13.051,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.301,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":22.485,"w":1.125,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.401,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.301,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":23.235,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":24.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":14.401,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.301,"y":24.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":25.201,"y":24.735,"w":1.125,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":24.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":13.051,"y":25.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.401,"y":25.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":25.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.301,"y":25.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":25.485,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":25.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":25.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":27.735,"w":1.125,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.901,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":28.485,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":29.701,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.401,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.301,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":29.985,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.401,"y":31.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":13.051,"y":31.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":18.901,"y":31.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":19.801,"y":31.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":25.201,"y":31.485,"w":1.125,"l":3.031,"oc":"#221f1f"},{"x":29.701,"y":31.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":30.601,"y":31.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":14.401,"y":34.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":34.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":34.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":34.485,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":34.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.401,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.301,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":35.985,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.301,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":37.486,"w":1.125,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":14.401,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.901,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":38.235,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":29.701,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":39.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":14.401,"y":39.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.801,"y":39.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.301,"y":39.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.201,"y":39.736,"w":1.125,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":39.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":39.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.051,"y":41.236,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":14.401,"y":41.236,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":19.801,"y":41.236,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":24.301,"y":41.236,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":25.201,"y":41.236,"w":1.125,"l":3.781,"oc":"#221f1f"},{"x":30.601,"y":41.236,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":35.101,"y":41.236,"w":0.75,"l":3.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":3.001,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":14.401,"y":15.751,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":25.201,"y":15.751,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":19.801,"y":17.251,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":30.601,"y":17.251,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":19.801,"y":18.001,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":30.601,"y":18.001,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":14.401,"y":18.751,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":25.201,"y":18.751,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":14.401,"y":19.501,"w":4.5,"h":3,"oc":"#bfc0c4"},{"x":18.901,"y":19.501,"w":0.9,"h":3,"oc":"#bfc0c4"},{"x":25.201,"y":19.501,"w":4.5,"h":3,"oc":"#bfc0c4"},{"x":29.701,"y":19.501,"w":0.9,"h":3,"oc":"#bfc0c4"},{"x":14.401,"y":22.501,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":25.201,"y":22.501,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":14.401,"y":23.251,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":25.201,"y":23.251,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":14.401,"y":24.751,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":25.201,"y":24.751,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":14.401,"y":25.501,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":25.201,"y":25.501,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":19.801,"y":28.501,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":30.601,"y":28.501,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":14.401,"y":30.001,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":25.201,"y":30.001,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":19.801,"y":31.501,"w":4.5,"h":3,"oc":"#bfc0c4"},{"x":24.301,"y":31.501,"w":0.9,"h":3,"oc":"#bfc0c4"},{"x":30.601,"y":31.501,"w":4.5,"h":3,"oc":"#bfc0c4"},{"x":35.101,"y":31.501,"w":0.9,"h":3,"oc":"#bfc0c4"},{"x":19.801,"y":34.501,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":30.601,"y":34.501,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":14.401,"y":36.001,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":25.201,"y":36.001,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":14.401,"y":37.501,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":25.201,"y":37.501,"w":4.5,"h":0.75,"oc":"#bfc0c4"},{"x":19.801,"y":38.251,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":30.601,"y":38.251,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":14.401,"y":39.751,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":25.201,"y":39.751,"w":4.5,"h":1.5,"oc":"#bfc0c4"},{"x":14.401,"y":41.251,"w":4.5,"h":3.75,"oc":"#bfc0c4"},{"x":18.901,"y":41.251,"w":0.9,"h":3.75,"oc":"#bfc0c4"},{"x":25.201,"y":41.251,"w":4.5,"h":3.75,"oc":"#bfc0c4"},{"x":29.701,"y":41.251,"w":0.9,"h":3.75,"oc":"#bfc0c4"}],"Texts":[{"x":2.001,"y":2.126,"w":8.134,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 2106 (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":34.156,"y":2.01,"w":2.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":2.01,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":10,"TS":[0,14,1,0]}]},{"x":2.235,"y":2.822,"w":3.128,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":2.822,"w":14.287,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Vehicle Expenses ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":3.54,"w":14.948,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Section A, General Information ","S":9,"TS":[0,12,1,0]}]},{"x":9.519,"y":3.54,"w":17.357,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(You must complete this section if you ","S":3,"TS":[0,12,0,0]}]},{"x":20.407,"y":3.54,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":4.228,"w":13.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"are claiming vehicle expenses.)","S":3,"TS":[0,12,0,0]}]},{"x":25.576,"y":3.8760000000000003,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(a) ","S":9,"TS":[0,12,1,0]}]},{"x":26.544,"y":3.8760000000000003,"w":4.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle 1 ","S":3,"TS":[0,12,0,0]}]},{"x":31.19,"y":3.8760000000000003,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(b) ","S":9,"TS":[0,12,1,0]}]},{"x":32.18,"y":3.8760000000000003,"w":4.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle 2 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":5.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":5.09,"w":21.243,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the date the vehicle was placed in service","S":3,"TS":[0,12,0,0]}]},{"x":16.25,"y":5.09,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":23.513,"y":5.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":9,"TS":[0,12,1,0]}]},{"x":25.982,"y":5.028,"w":0.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/ ","S":3,"TS":[0,12,0,0]}]},{"x":27.77,"y":5.028,"w":0.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/ ","S":3,"TS":[0,12,0,0]}]},{"x":31.832,"y":5.028,"w":0.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/ ","S":3,"TS":[0,12,0,0]}]},{"x":33.624,"y":5.028,"w":0.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/ ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":5.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":5.84,"w":20.893,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total miles the vehicle was driven during 2013 ","S":3,"TS":[0,12,0,0]}]},{"x":16.251,"y":5.84,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":23.513,"y":5.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":9,"TS":[0,12,1,0]}]},{"x":28.525,"y":5.84,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":34.438,"y":5.84,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":6.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":6.59,"w":15.653,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business miles included on line 12 ","S":3,"TS":[0,12,0,0]}]},{"x":13.251,"y":6.59,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":23.513,"y":6.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":9,"TS":[0,12,1,0]}]},{"x":28.525,"y":6.59,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":34.438,"y":6.59,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":7.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":7.34,"w":22.117,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Percent of business use. Divide line 13 by line 12 ","S":3,"TS":[0,12,0,0]}]},{"x":16.251,"y":7.34,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":23.513,"y":7.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":9,"TS":[0,12,1,0]}]},{"x":29.276,"y":7.34,"w":1.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"% ","S":3,"TS":[0,12,0,0]}]},{"x":35.188,"y":7.34,"w":1.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"% ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":8.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":8.09,"w":20.042,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Average daily roundtrip commuting distance ","S":3,"TS":[0,12,0,0]}]},{"x":15.501,"y":8.09,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":23.513,"y":8.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15 ","S":9,"TS":[0,12,1,0]}]},{"x":28.525,"y":8.09,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":34.438,"y":8.09,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":8.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":8.84,"w":16.822,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Commuting miles included on line 12 ","S":3,"TS":[0,12,0,0]}]},{"x":14.001,"y":8.84,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":23.513,"y":8.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16 ","S":9,"TS":[0,12,1,0]}]},{"x":28.525,"y":8.84,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":34.438,"y":8.84,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":9.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"17 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":9.59,"w":30.234,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other miles. Add lines 13 and 16 and subtract the total from line 12 ","S":3,"TS":[0,12,0,0]}]},{"x":21.502,"y":9.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":22.252,"y":9.59,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":3,"TS":[0,12,0,0]}]},{"x":23.513,"y":9.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"17 ","S":9,"TS":[0,12,1,0]}]},{"x":28.525,"y":9.59,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":34.438,"y":9.59,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"miles ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":10.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"18 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":10.34,"w":29.8,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Was your vehicle available for personal use during off-duty hours? ","S":3,"TS":[0,12,0,0]}]},{"x":20.751,"y":10.34,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":31.551,"y":10.34,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.251,"y":10.34,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.276,"y":11.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"19 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":11.09,"w":32.652,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you (or your spouse) have another vehicle available for personal use? ","S":3,"TS":[0,12,0,0]}]},{"x":22.251,"y":11.09,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":29.926,"y":11.09,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":31.551,"y":11.09,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.251,"y":11.09,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.276,"y":11.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":11.84,"w":22.636,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you have evidence to support your deduction? ","S":3,"TS":[0,12,0,0]}]},{"x":17.001,"y":11.84,"w":23.994,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":31.551,"y":11.84,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.251,"y":11.84,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.276,"y":12.527,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8019999999999996,"y":12.527,"w":14.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If “Yes,” is the evidence written? ","S":3,"TS":[0,12,0,0]}]},{"x":12.501,"y":12.527,"w":31.992,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"x":31.551,"y":12.59,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.251,"y":12.59,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":13.322,"w":16.115,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Section B„Standard Mileage Rate ","S":-1,"TS":[0,13.4,1,0]}]},{"x":10.659,"y":13.322,"w":39.894,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(See the instructions for Part II to find out whether to complete this section or Section C.) ","S":-1,"TS":[0,12.4,0,0]}]},{"x":2.275,"y":14.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22 ","S":9,"TS":[0,12,1,0]}]},{"x":3.758,"y":14.09,"w":29.196,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 13 by 56.5¢ (.565). Enter the result here and on line 1","S":3,"TS":[0,12,0,0]}]},{"x":20.751,"y":14.09,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":29.363,"y":14.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22 ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":14.822,"w":13.171,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Section C, Actual Expenses","S":10,"TS":[0,14,1,0]}]},{"x":10.473,"y":14.822,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":17.926,"y":14.84,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(a) ","S":9,"TS":[0,12,1,0]}]},{"x":18.894,"y":14.84,"w":4.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle 1 ","S":3,"TS":[0,12,0,0]}]},{"x":21.332,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":21.489,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":21.645,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":21.801,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":21.958,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":22.114,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":28.715,"y":14.84,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(b) ","S":9,"TS":[0,12,1,0]}]},{"x":29.705,"y":14.84,"w":4.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle 2 ","S":3,"TS":[0,12,0,0]}]},{"x":32.143,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.299,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.455,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.612,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.768,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.925,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":15.559000000000001,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":15.541,"w":13.037,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Gasoline, oil, repairs, vehicle ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":16.228,"w":6.835,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"insurance, etc. ","S":3,"TS":[0,12,0,0]}]},{"x":8.001,"y":16.228,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":16.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23 ","S":9,"TS":[0,12,1,0]}]},{"x":2.29,"y":17.09,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24a ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":17.09,"w":6.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle rentals","S":3,"TS":[0,12,0,0]}]},{"x":8.001,"y":17.09,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":12.076,"y":17.09,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":13.002,"y":17.09,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24a ","S":9,"TS":[0,12,1,0]}]},{"x":2.895,"y":17.84,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":17.84,"w":15.763,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Inclusion amount (see instructions) ","S":-1,"TS":[0,10.65,0,0]}]},{"x":11.75,"y":17.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.65,0,0]}]},{"x":12.991,"y":17.84,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24b ","S":9,"TS":[0,12,1,0]}]},{"x":2.915,"y":18.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":18.59,"w":13.986,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 24b from line 24a ","S":-1,"TS":[0,11.46,0,0]}]},{"x":11.75,"y":18.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"x":13.002,"y":18.59,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24c ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":19.403,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"25 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":19.403,"w":16.039,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Value of employer-provided vehicle ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.801,"y":20.028,"w":14.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(applies only if 100% of annual ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.801,"y":20.653,"w":15.428,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"lease value was included on Form ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.801,"y":21.277,"w":10.168,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"W-2—see instructions)","S":-1,"TS":[0,11.55,0,0]}]},{"x":9.501,"y":21.278,"w":5.332,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"x":12.076,"y":21.278,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":21.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"25 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":22.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":22.34,"w":11.654,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 23, 24c, and 25.","S":3,"TS":[0,12,0,0]}]},{"x":10.95,"y":22.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":11.699,"y":22.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":12.025,"y":22.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":22.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":23.059,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":23.04,"w":15.375,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 26 by the percentage ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.8019999999999996,"y":23.728,"w":4.335,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on line 14","S":-1,"TS":[0,11.55,0,0]}]},{"x":6.502,"y":23.728,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":7.252,"y":23.728,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":8.003,"y":23.728,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":8.752,"y":23.728,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":9.503,"y":23.728,"w":5.616,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11.55,0,0]}]},{"x":12.079,"y":23.728,"w":1.404,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.55,0,0]}]},{"x":13.163,"y":23.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":24.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":24.59,"w":13.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Depreciation (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":11.751,"y":24.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":24.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":25.309,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"29 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":25.29,"w":14.598,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 27 and 28. Enter total ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":25.978,"w":7.984,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"here and on line 1","S":3,"TS":[0,12,0,0]}]},{"x":8.75,"y":25.978,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":26.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"29 ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":26.822,"w":17.339,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Section D, Depreciation of Vehicles ","S":9,"TS":[0,12,1,0]}]},{"x":12.009,"y":26.822,"w":41.561,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Use this section only if you owned the vehicle and are completing Section C for the vehicle.) ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":27.447,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":17.173,"y":27.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":17.329,"y":27.501,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(a) ","S":9,"TS":[0,12,1,0]}]},{"x":18.298,"y":27.501,"w":6.002,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle 1 ","S":3,"TS":[0,12,0,0]}]},{"x":28.715,"y":27.501,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(b) ","S":9,"TS":[0,12,1,0]}]},{"x":29.705,"y":27.501,"w":4.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicle 2 ","S":3,"TS":[0,12,0,0]}]},{"x":32.143,"y":27.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.299,"y":27.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.455,"y":27.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.612,"y":27.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.768,"y":27.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.925,"y":27.501,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":28.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"30 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":28.324,"w":13.353,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter cost or other basis (see ","S":3,"TS":[0,12,0,0]}]},{"x":12.837,"y":28.324,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8019999999999996,"y":28.949,"w":5.445,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions)","S":3,"TS":[0,12,0,0]}]},{"x":7.251,"y":28.949,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":29.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"30 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":29.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"31 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":29.825,"w":14.82,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter section 179 deduction and ","S":-1,"TS":[0,11.73,0,0]}]},{"x":3.8,"y":30.449,"w":16.018,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"special allowance (see instructions) ","S":-1,"TS":[0,11.73,0,0]}]},{"x":13.163,"y":30.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"31 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":31.558999999999997,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":31.564999999999998,"w":13.671,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 30 by line 14 (see ","S":3,"TS":[0,12,0,0]}]},{"x":12.763,"y":31.564999999999998,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":32.24,"w":13.633,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions if you claimed the ","S":3,"TS":[0,12,0,0]}]},{"x":12.861,"y":32.24,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":32.915,"w":14.837,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"section 179 deduction or special ","S":3,"TS":[0,12,0,0]}]},{"x":3.8019999999999996,"y":33.59,"w":4.739,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"allowance)","S":3,"TS":[0,12,0,0]}]},{"x":6.502,"y":33.59,"w":10.664,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"x":12.076,"y":33.59,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":33.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":34.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"33 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":34.29,"w":14.134,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter depreciation method and ","S":3,"TS":[0,12,0,0]}]},{"x":12.858,"y":34.29,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":34.977,"w":12.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"percentage (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":11.75,"y":34.977,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":12.076,"y":34.977,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":35.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"33 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":35.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"34 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":35.793,"w":15.653,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 32 by the percentage ","S":-1,"TS":[0,11.64,0,0]}]},{"x":3.801,"y":36.418,"w":12.447,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on line 33 (see instructions) ","S":-1,"TS":[0,11.64,0,0]}]},{"x":11.001,"y":36.418,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.64,0,0]}]},{"x":11.751,"y":36.418,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.64,0,0]}]},{"x":13.163,"y":36.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"34 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":37.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"35 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":37.34,"w":8.893,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 31 and 34","S":3,"TS":[0,12,0,0]}]},{"x":9.501,"y":37.34,"w":5.332,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"x":12.076,"y":37.34,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":37.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"35 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":38.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"36 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":38.059,"w":16.17,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the applicable limit explained ","S":-1,"TS":[0,11.46,0,0]}]},{"x":3.801,"y":38.684,"w":11.411,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"in the line 36 instructions ","S":-1,"TS":[0,11.46,0,0]}]},{"x":10.251,"y":38.684,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"x":11.001,"y":38.684,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"x":11.751,"y":38.684,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"x":13.163,"y":38.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"36 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":39.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"37 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":39.559,"w":15.375,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 36 by the percentage ","S":-1,"TS":[0,11.73,0,0]}]},{"x":3.8,"y":40.184,"w":4.335,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on line 14","S":-1,"TS":[0,11.73,0,0]}]},{"x":6.5,"y":40.184,"w":11,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11.73,0,0]}]},{"x":12.077,"y":40.184,"w":1.375,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.73,0,0]}]},{"x":13.163,"y":40.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"37 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":41.247,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"38 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":41.231,"w":4.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":6.006,"y":41.231,"w":3.78,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"smaller ","S":9,"TS":[0,12,1,0]}]},{"x":8.017,"y":41.231,"w":7.353,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of line 35 or line ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":41.856,"w":15.581,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"37. If you skipped lines 36 and 37, ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":42.481,"w":13.728,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"enter the amount from line 35. ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":43.106,"w":15.209,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Also enter this amount on line 28 ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":43.731,"w":2.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"above","S":3,"TS":[0,12,0,0]}]},{"x":5.75,"y":43.731,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":13.163,"y":44.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"38 ","S":9,"TS":[0,12,1,0]}]},{"x":31.845,"y":44.947,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":32.987,"y":44.947,"w":2.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2106","S":10,"TS":[0,14,1,0]}]},{"x":34.377,"y":44.947,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":34.551,"y":44.947,"w":3.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(2013) ","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":2403,"AM":1024,"x":6.207,"y":2.069,"w":16.29,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2404,"AM":1024,"x":29.103,"y":2.096,"w":4.747,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A165_L12_1_","EN":0},"TI":2405,"AM":0,"TU":"Enter the date the vehicle was placed in service","x":24.803,"y":5.342,"w":5.368,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A165_L12_2_","EN":0},"TI":2406,"AM":0,"TU":"Enter the date the vehicle was placed in service","x":30.285,"y":5.282,"w":5.368,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L13_1_","EN":0},"TI":2407,"AM":0,"TU":"Total miles the vehicle was driven during 2013","x":24.749,"y":6.146,"w":3.98,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L13_2_","EN":0},"TI":2408,"AM":0,"TU":"Total miles the vehicle was driven during 2013","x":30.23,"y":6.032,"w":3.979,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L14_1_","EN":0},"TI":2409,"AM":0,"TU":"Business miles included on line 12","x":24.771,"y":6.842,"w":3.985,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L14_2_","EN":0},"TI":2410,"AM":0,"TU":"Business miles included on line 12","x":30.279,"y":6.755,"w":3.985,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L15_1_","EN":0},"TI":2411,"AM":1024,"TU":"Percent of business use. Divide line 13 by line 12","x":24.831,"y":7.592,"w":4.497,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L15_2_","EN":0},"TI":2412,"AM":1024,"TU":"Percent of business use. Divide line 13 by line 12","x":30.312,"y":7.532,"w":4.497,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L16_1_","EN":0},"TI":2413,"AM":0,"TU":"Average daily roundtrip commuting distance","x":24.788,"y":8.369,"w":3.94,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L16_2_","EN":0},"TI":2414,"AM":0,"TU":"Average daily roundtrip commuting distance","x":30.27,"y":8.309,"w":3.94,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L17_1_","EN":0},"TI":2415,"AM":0,"TU":"Commuting miles included on line 12","x":24.786,"y":9.119,"w":3.997,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L17_2_","EN":0},"TI":2416,"AM":0,"TU":"Commuting miles included on line 12","x":30.267,"y":9.059,"w":3.997,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L18_1_","EN":0},"TI":2417,"AM":1024,"TU":"Commuting miles included on line 12","x":24.817,"y":9.823,"w":3.997,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L18_2_","EN":0},"TI":2418,"AM":1024,"TU":"Commuting miles included on line 12","x":30.299,"y":9.763,"w":3.997,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":2427,"AM":1024,"TU":"22","x":30.637,"y":14.288,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L23_1_","EN":0},"TI":2428,"AM":0,"TU":"Line 23(a). Gasoline, oil, repairs, vehicle insurance, etc.","x":19.867,"y":16.471,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L23_2_","EN":0},"TI":2429,"AM":0,"TU":"Line 23(b). Gasoline, oil, repairs, vehicle insurance, etc","x":30.703,"y":16.463,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24A_1_","EN":0},"TI":2430,"AM":0,"TU":"Line 24a (a). Vehicle rentals.","x":14.438,"y":17.315,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24A_2_","EN":0},"TI":2431,"AM":0,"TU":"Line 24a (b). Vehicle rentals.","x":25.226,"y":17.258,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24B_1_","EN":0},"TI":2432,"AM":0,"TU":"Line 24b (a). Inclusion amount (see instructions).","x":14.461,"y":18.088,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24B_2_","EN":0},"TI":2433,"AM":0,"TU":"Line 24b (b). Inclusion amount (see instructions).","x":25.226,"y":18.008,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24C_1_","EN":0},"TI":2434,"AM":1024,"TU":"(b) Vehicle 2_23","x":19.914,"y":18.73,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L24C_2_","EN":0},"TI":2435,"AM":1024,"TU":"(b) Vehicle 2_23","x":30.749,"y":18.723,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L25_1_","EN":0},"TI":2436,"AM":0,"TU":"Line 25 (a). Value of employer- provided vehicle (applies only if 100% of annual lease value was included on Form W-2 - see instructions)","x":19.855,"y":21.78,"w":4.425,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L25_2_","EN":0},"TI":2437,"AM":0,"TU":"Line 25 (b). Value of employer- provided vehicle (applies only if 100% of annual lease value was included on Form W-2 - see instructions","x":30.69,"y":21.772,"w":4.425,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L26_1_","EN":0},"TI":2438,"AM":1024,"TU":"26. Add lines 23, 24c, and 25","x":19.882,"y":22.557,"w":4.425,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L26_2_","EN":0},"TI":2439,"AM":1024,"TU":"26. Add lines 23, 24c, and 25","x":30.717,"y":22.549,"w":4.425,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L27_1_","EN":0},"TI":2440,"AM":1024,"TU":"27. Multiply line 26 by the percentage on line 14","x":19.858,"y":23.942,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L27_2_","EN":0},"TI":2441,"AM":1024,"TU":"27. Multiply line 26 by the percentage on line 14","x":30.693,"y":23.934,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L28_1_","EN":0},"TI":2442,"AM":0,"TU":"Line 28 (a). Depreciation.","x":19.911,"y":24.785,"w":4.285,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L28_2_","EN":0},"TI":2443,"AM":0,"TU":"Line 28 (b). Depreciation.","x":30.746,"y":24.777,"w":4.285,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L29_1_","EN":0},"TI":2444,"AM":1024,"TU":"29. Add lines 27 and 28.","x":19.907,"y":26.216,"w":4.425,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A103_L29_2_","EN":0},"TI":2445,"AM":1024,"TU":"29. Add lines 27 and 28.","x":30.653,"y":26.208,"w":4.425,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L30_1_","EN":0},"TI":2446,"AM":0,"TU":"Line 30 (a). Enter cost or other basis (see instructions).","x":14.467,"y":29.166,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L30_2_","EN":0},"TI":2447,"AM":0,"TU":"Line 30 (b). Enter cost or other basis (see instructions).","x":25.286,"y":29.114,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L31_1_","EN":0},"TI":2448,"AM":0,"TU":"Line 31 (a). Enter section 179 deduction and special allowance (see instructions).","x":19.857,"y":30.679,"w":4.365,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L31_2_","EN":0},"TI":2449,"AM":0,"TU":"Line 31 (b). Enter section 179 deduction and special allowance (see instructions)","x":30.68,"y":30.672,"w":4.365,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L32_1_","EN":0},"TI":2450,"AM":0,"TU":"Line 32 (a). Multiply line 30 by line 14 (see instructions if you claimed the section 179 deduction or special allowance).","x":14.49,"y":33.659,"w":4.464,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L32_2_","EN":0},"TI":2451,"AM":0,"TU":"Line 32 (b). Multiply line 30 by line 14 (see instructions if you claimed the section 179 deduction or special allowance).","x":25.308,"y":33.606,"w":4.464,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A160_L33T_1_","EN":0},"TI":2452,"AM":0,"TU":"Line 33 (a). Enter depreciation method (see instructions).","x":14.434,"y":34.56,"w":5.272,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A160_L33T_2_","EN":0},"TI":2453,"AM":0,"TU":"Line 33 (b). Enter depreciation method (see instructions)","x":25.252,"y":34.508,"w":5.272,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L33_1_","EN":0},"TI":2454,"AM":0,"TU":"Line 33 (a). Enter depreciation percentage (see instructions).","x":14.467,"y":35.303,"w":5.273,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L33_2_","EN":0},"TI":2455,"AM":0,"TU":"Line 33 (b). Enter depreciation percentage (see instructions).","x":25.286,"y":35.25,"w":5.272,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L34_1_","EN":0},"TI":2456,"AM":1024,"TU":"(b) Vehicle 2_30","x":19.832,"y":36.708,"w":4.419,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L34_2_","EN":0},"TI":2457,"AM":1024,"TU":"(b) Vehicle 2_30","x":30.655,"y":36.607,"w":4.419,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L35_1_","EN":0},"TI":2458,"AM":1024,"TU":"(b) Vehicle 2_30","x":19.815,"y":37.555,"w":4.419,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L35_2_","EN":0},"TI":2459,"AM":1024,"TU":"(b) Vehicle 2_30","x":30.638,"y":37.455,"w":4.419,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L36_1_","EN":0},"TI":2460,"AM":0,"TU":"Line 36 (a). Enter the applicable limit explained in the line 36 instructions.","x":14.467,"y":38.944,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L36_2_","EN":0},"TI":2461,"AM":0,"TU":"Line 36 (b). Enter the applicable limit explained in the line 36 instructions.","x":25.286,"y":38.891,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L37_1_","EN":0},"TI":2462,"AM":1024,"TU":"(b) Vehicle 2_31","x":19.887,"y":40.522,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L37_2_","EN":0},"TI":2463,"AM":1024,"TU":"(b) Vehicle 2_31","x":30.709,"y":40.394,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L38_1_","EN":0},"TI":2464,"AM":1024,"TU":"(b) Vehicle 2_31","x":19.838,"y":44.184,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L38_2_","EN":0},"TI":2465,"AM":1024,"TU":"(b) Vehicle 2_31","x":30.661,"y":44.084,"w":4.372,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20Y","EN":0},"TI":2419,"AM":0,"x":31.009,"y":10.52,"w":0.581,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L20N","EN":0},"TI":2420,"AM":0,"x":33.713,"y":10.502,"w":0.581,"h":0.833,"checked":false}],"id":{"Id":"L20RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L19Y","EN":0},"TI":2421,"AM":0,"x":31.027,"y":11.246,"w":0.581,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L19N","EN":0},"TI":2422,"AM":0,"x":33.731,"y":11.228,"w":0.581,"h":0.833,"checked":false}],"id":{"Id":"L19RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21AY","EN":0},"TI":2423,"AM":0,"x":31.02,"y":12.001,"w":0.581,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21AN","EN":0},"TI":2424,"AM":0,"x":33.724,"y":11.983,"w":0.581,"h":0.833,"checked":false}],"id":{"Id":"L21ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21BY","EN":0},"TI":2425,"AM":0,"x":31.04,"y":12.729,"w":0.581,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L21BN","EN":0},"TI":2426,"AM":0,"x":33.744,"y":12.711,"w":0.581,"h":0.833,"checked":false}],"id":{"Id":"L21BRB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F2120.json b/test/data/fd/form/F2120.json index ac1da38c..a8d5dbc1 100755 --- a/test/data/fd/form/F2120.json +++ b/test/data/fd/form/F2120.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 2120 (Rev. October 2005)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#231f20","x":83.509,"y":4.078,"w":0.747,"l":14.848},{"oc":"#231f20","x":7.984,"y":5.578,"w":1.494,"l":90.373},{"oc":"#231f20","x":7.984,"y":7.078,"w":0.747,"l":90.373},{"dsh":1,"oc":"#231f20","x":25.956,"y":8.578,"w":0.747,"l":20.948},{"oc":"#231f20","x":7.984,"y":24.331,"w":1.1955,"l":90.373},{"oc":"#231f20","x":7.984,"y":46.828,"w":1.494,"l":90.373},{"dsh":1,"oc":"#231f20","x":8.583,"y":13.082,"w":0.747,"l":67.389},{"dsh":1,"oc":"#231f20","x":8.583,"y":14.582,"w":0.747,"l":89.773},{"dsh":1,"oc":"#231f20","x":8.583,"y":10.078,"w":0.747,"l":89.773},{"dsh":1,"oc":"#231f20","x":8.583,"y":16.082,"w":0.747,"l":67.389},{"dsh":1,"oc":"#231f20","x":8.583,"y":17.582,"w":0.747,"l":89.773},{"dsh":1,"oc":"#231f20","x":79.872,"y":16.082,"w":0.747,"l":18.485},{"dsh":1,"oc":"#231f20","x":8.583,"y":19.082,"w":0.747,"l":67.389},{"dsh":1,"oc":"#231f20","x":8.583,"y":20.582,"w":0.747,"l":89.773},{"dsh":1,"oc":"#231f20","x":79.872,"y":19.082,"w":0.747,"l":18.485},{"dsh":1,"oc":"#231f20","x":8.583,"y":22.082,"w":0.747,"l":67.389},{"dsh":1,"oc":"#231f20","x":79.872,"y":22.082,"w":0.747,"l":18.485},{"dsh":1,"oc":"#231f20","x":79.872,"y":13.081,"w":0.747,"l":18.485},{"dsh":1,"oc":"#231f20","x":8.583,"y":23.581,"w":0.747,"l":89.773}],"VLines":[{"oc":"#231f20","x":22.872,"y":2.579,"w":1.494,"l":2.999},{"oc":"#231f20","x":83.509,"y":2.579,"w":1.494,"l":2.999},{"oc":"#231f20","x":79.796,"y":5.578,"w":0.747,"l":1.5},{"dsh":1,"oc":"#231f20","x":85.984,"y":6.363,"w":0.747,"l":0.622},{"dsh":1,"oc":"#231f20","x":90.934,"y":6.363,"w":0.747,"l":0.622},{"dsh":1,"oc":"#231f20","x":85.984,"y":12.366,"w":0.747,"l":0.622},{"dsh":1,"oc":"#231f20","x":90.934,"y":12.366,"w":0.747,"l":0.622},{"dsh":1,"oc":"#231f20","x":85.984,"y":15.366,"w":0.747,"l":0.622},{"dsh":1,"oc":"#231f20","x":90.934,"y":15.366,"w":0.747,"l":0.622},{"dsh":1,"oc":"#231f20","x":85.984,"y":18.366,"w":0.747,"l":0.622},{"dsh":1,"oc":"#231f20","x":90.934,"y":18.366,"w":0.747,"l":0.622},{"dsh":1,"oc":"#231f20","x":85.984,"y":21.366,"w":0.747,"l":0.622},{"dsh":1,"oc":"#231f20","x":90.934,"y":21.366,"w":0.747,"l":0.622}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":45.473,"y":47.737,"w":0.575,"h":0.207,"clr":1},{"x":45.932,"y":47.737,"w":0.729,"h":0.189,"clr":1},{"x":45.449,"y":48.116,"w":0.514,"h":0.154,"clr":1},{"x":45.229,"y":47.922,"w":0.556,"h":0.267,"clr":1}],"Texts":[{"oc":"#231f20","x":85.114,"y":2.735,"w":9.286400000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":7.735,"y":2.761,"w":2.3152,"clr":-1,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":11.5,"y":2.761,"w":2,"clr":-1,"A":"left","R":[{"T":"2120","S":-1,"TS":[3,21.9251,1,0]}]},{"oc":"#231f20","x":7.734,"y":3.4539999999999997,"w":8.950800000000003,"clr":-1,"A":"left","R":[{"T":"(Rev.%20October%202005)","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":37.347,"y":3.269,"w":12.885600000000004,"clr":-1,"A":"left","R":[{"T":"Multiple%20Support%20Declaration","S":-1,"TS":[2,16.9417,0,0]}]},{"oc":"#231f20","x":85.712,"y":4.007,"w":5.202999999999999,"clr":-1,"A":"left","R":[{"T":"Attachment","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":85.712,"y":4.443,"w":6.3554,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":94.1,"y":4.443,"w":1.6866,"clr":-1,"A":"left","R":[{"T":"114","S":-1,"TS":[0,11.9626,1,0]}]},{"oc":"#231f20","x":7.734,"y":4.206,"w":12.275000000000002,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury","S":-1,"TS":[0,8.975100000000001,0,0]}]},{"oc":"#231f20","x":7.734,"y":4.642,"w":11.104999999999999,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,8.975100000000001,0,0]}]},{"oc":"#231f20","x":38.451,"y":4.548,"w":1,"clr":-1,"A":"left","R":[{"T":"%02","S":-1,"TS":[2,9.9709,0,0]}]},{"oc":"#231f20","x":40.334,"y":4.642,"w":17.156399999999994,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040A.","S":-1,"TS":[0,11.9626,1,0]}]},{"oc":"#231f20","x":80.784,"y":5.329,"w":13.3734,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[0,9.9709,1,0]}]},{"oc":"#231f20","x":7.734,"y":5.329,"w":11.209600000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":7.734,"y":7.827999999999999,"w":10.938799999999997,"clr":-1,"A":"left","R":[{"T":"During%20the%20calendar%20year","S":-1,"TS":[0,11.9626,0,0]}]},{"oc":"#231f20","x":47.339,"y":7.827999999999999,"w":32.131099999999996,"clr":-1,"A":"left","R":[{"T":"%2C%20the%20eligible%20persons%20listed%20below%20each%20paid%20over%2010%25%20of%20the%20support%20of%3A","S":-1,"TS":[0,11.9626,0,0]}]},{"oc":"#231f20","x":45.6,"y":9.829,"w":14.081400000000004,"clr":-1,"A":"left","R":[{"T":"Name%20of%20your%20qualifying%20relative","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":7.786,"y":10.54,"w":55.97190000000006,"clr":-1,"A":"left","R":[{"T":"I%20have%20a%20signed%20statement%20from%20each%20eligible%20person%20waiving%20his%20or%20her%20right%20to%20claim%20this%20person%20as%20a%20dependent%20for%20any%20tax%20ye","S":-1,"TS":[0,11.9626,0,0]}]},{"oc":"#231f20","x":96.347,"y":10.54,"w":0.8694000000000001,"clr":-1,"A":"left","R":[{"T":"ar","S":-1,"TS":[0,11.9626,0,0]}]},{"oc":"#231f20","x":7.786,"y":11.162,"w":17.1406,"clr":-1,"A":"left","R":[{"T":"that%20began%20in%20the%20above%20calendar%20year.","S":-1,"TS":[0,11.9626,0,0]}]},{"oc":"#231f20","x":82.619,"y":12.833,"w":10.228399999999999,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":7.771000000000001,"y":12.833,"w":10.1174,"clr":-1,"A":"left","R":[{"T":"Eligible%20person%E2%80%99s%20name","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":7.771000000000001,"y":14.333,"w":26.445199999999986,"clr":-1,"A":"left","R":[{"T":"Address%20(number%2C%20street%2C%20apt.%20no.%2C%20city%2C%20state%2C%20and%20ZIP%20code)","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":82.192,"y":46.704,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":85.674,"y":46.704,"w":2.2236000000000002,"clr":-1,"A":"left","R":[{"T":"2120","S":-1,"TS":[0,13.9584,1,0]}]},{"oc":"#231f20","x":90.165,"y":46.704,"w":6.523800000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%2010-2005)","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":48.466,"y":46.704,"w":7.339000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011712F","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":82.619,"y":15.832999999999998,"w":10.228399999999999,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":7.771000000000001,"y":15.832999999999998,"w":10.1174,"clr":-1,"A":"left","R":[{"T":"Eligible%20person%E2%80%99s%20name","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":7.771000000000001,"y":17.333,"w":26.445199999999986,"clr":-1,"A":"left","R":[{"T":"Address%20(number%2C%20street%2C%20apt.%20no.%2C%20city%2C%20state%2C%20and%20ZIP%20code)","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":82.619,"y":18.833,"w":10.228399999999999,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":7.771000000000001,"y":18.833,"w":10.1174,"clr":-1,"A":"left","R":[{"T":"Eligible%20person%E2%80%99s%20name","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":7.771000000000001,"y":20.333,"w":26.445199999999986,"clr":-1,"A":"left","R":[{"T":"Address%20(number%2C%20street%2C%20apt.%20no.%2C%20city%2C%20state%2C%20and%20ZIP%20code)","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":82.619,"y":21.833,"w":10.228399999999999,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":7.771000000000001,"y":21.833,"w":10.1174,"clr":-1,"A":"left","R":[{"T":"Eligible%20person%E2%80%99s%20name","S":-1,"TS":[0,9.9709,0,0]}]},{"oc":"#231f20","x":7.771000000000001,"y":23.333,"w":26.445199999999986,"clr":-1,"A":"left","R":[{"T":"Address%20(number%2C%20street%2C%20apt.%20no.%2C%20city%2C%20state%2C%20and%20ZIP%20code)","S":-1,"TS":[0,9.9709,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1077,"AM":1024,"x":8.064,"y":6.166,"w":71.61,"h":0.899,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1078,"AM":1024,"x":79.943,"y":6.166,"w":18.356,"h":0.899,"TU":"Your social security number"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YR","EN":0},"TI":1079,"AM":0,"x":25.905,"y":7.665,"w":21.058,"h":0.9,"TU":"Calendar Year","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAM","EN":0},"TI":1080,"AM":0,"x":8.58,"y":9.165,"w":31.052,"h":0.9,"TU":"Name of your qualifying relative - First Name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAM","EN":0},"TI":1081,"AM":0,"x":40.433,"y":9.247,"w":36.632,"h":0.9,"TU":"Name of your qualifying relative - Last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_FNAM2_1_","EN":0},"TI":1082,"AM":0,"x":8.498,"y":12.165,"w":31.67,"h":0.9,"TU":"Eligible person’s first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_LNAM2_1_","EN":0},"TI":1083,"AM":0,"x":40.862,"y":12.231,"w":36.429,"h":0.9,"TU":"Eligible person’s last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A50_ESSN_1_","EN":0},"TI":1084,"AM":0,"x":79.765,"y":12.153,"w":18.356,"h":0.899,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ADDR_1_","EN":0},"TI":1085,"AM":0,"x":8.58,"y":13.665,"w":35.483,"h":0.9,"TU":"Address (number, street, apt. no.,)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ECITY_1_","EN":0},"TI":1086,"AM":0,"x":44.945,"y":13.722,"w":23.401,"h":0.9,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ESTATE_1_","EN":0},"TI":1087,"AM":0,"x":69.752,"y":13.673,"w":4.908,"h":0.973,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"A50_EZIP_1_","EN":0},"TI":1088,"AM":0,"x":77.947,"y":13.744,"w":7.881,"h":0.856,"TU":"Zip Code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_FNAM2_2_","EN":0},"TI":1089,"AM":0,"x":8.498,"y":15.165,"w":31.506,"h":0.9,"TU":"Eligible person’s first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_LNAM2_2_","EN":0},"TI":1090,"AM":0,"x":41.191,"y":15.274,"w":36.429,"h":0.9,"TU":"Eligible person’s last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A50_ESSN_2_","EN":0},"TI":1091,"AM":0,"x":80.258,"y":15.077,"w":18.356,"h":0.899,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ADDR_2_","EN":0},"TI":1092,"AM":0,"x":8.58,"y":16.665,"w":35.812,"h":0.9,"TU":"Address (number, street, apt. no.,)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ECITY_2_","EN":0},"TI":1093,"AM":0,"x":45.274,"y":16.706,"w":24.747,"h":0.9,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ESTATE_2_","EN":0},"TI":1094,"AM":0,"x":70.804,"y":16.621,"w":4.908,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"A50_EZIP_2_","EN":0},"TI":1095,"AM":0,"x":78.767,"y":16.728,"w":7.881,"h":0.856,"TU":"Zip Code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_FNAM2_3_","EN":0},"TI":1096,"AM":0,"x":8.498,"y":18.165,"w":31.506,"h":0.9,"TU":"Eligible person’s first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_LNAM2_3_","EN":0},"TI":1097,"AM":0,"x":41.479,"y":18.005,"w":36.429,"h":0.9,"TU":"Eligible person’s last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A50_ESSN_3_","EN":0},"TI":1098,"AM":0,"x":78.905,"y":18.166,"w":18.356,"h":0.899,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ADDR_3_","EN":0},"TI":1099,"AM":0,"x":8.58,"y":19.665,"w":35.976,"h":0.9,"TU":"Address (number, street, apt. no.,)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ECITY_3_","EN":0},"TI":1100,"AM":0,"x":45.562,"y":19.616,"w":23.722,"h":0.9,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ESTATE_3_","EN":0},"TI":1101,"AM":0,"x":71.202,"y":19.617,"w":4.908,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"A50_EZIP_3_","EN":0},"TI":1102,"AM":0,"x":79.22,"y":19.637,"w":7.881,"h":0.857,"TU":"Zip Code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_FNAM2_4_","EN":0},"TI":1103,"AM":0,"x":8.498,"y":21.165,"w":31.342,"h":0.9,"TU":"Eligible person’s first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_LNAM2_4_","EN":0},"TI":1104,"AM":0,"x":41.439,"y":21.093,"w":36.429,"h":0.9,"TU":"Eligible person’s last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A50_ESSN_4_","EN":0},"TI":1105,"AM":0,"x":79.029,"y":21.195,"w":18.356,"h":0.899,"TU":"Social security number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ADDR_4_","EN":0},"TI":1106,"AM":0,"x":8.58,"y":22.665,"w":36.468,"h":0.9,"TU":"Address (number, street, apt. no.,)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ECITY_4_","EN":0},"TI":1107,"AM":0,"x":46.671,"y":22.652,"w":22.761,"h":0.9,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ESTATE_4_","EN":0},"TI":1108,"AM":0,"x":71.338,"y":22.66,"w":4.778,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"A50_EZIP_4_","EN":0},"TI":1109,"AM":0,"x":80.001,"y":22.666,"w":7.881,"h":0.857,"TU":"Zip Code."}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Title":"Form 2120 (Rev. October 2005)","Author":"SE:W:CAR:MP","Subject":"Multiple Support Declaration","Keywords":"Fillable","Creator":"OneForm Designer Plus","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20130930063650-07'00'","ModDate":"D:20131219182142-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":30.367,"y":4.078,"w":0.747,"l":5.399,"oc":"#231f20"},{"x":2.903,"y":5.578,"w":1.494,"l":32.863,"oc":"#231f20"},{"x":2.903,"y":7.078,"w":0.747,"l":32.863,"oc":"#231f20"},{"x":9.439,"y":8.578,"w":0.747,"l":7.618,"oc":"#231f20","dsh":1},{"x":2.903,"y":24.331,"w":1.196,"l":32.863,"oc":"#231f20"},{"x":2.903,"y":46.828,"w":1.494,"l":32.863,"oc":"#231f20"},{"x":3.121,"y":13.082,"w":0.747,"l":24.505,"oc":"#231f20","dsh":1},{"x":3.121,"y":14.582,"w":0.747,"l":32.645,"oc":"#231f20","dsh":1},{"x":3.121,"y":10.078,"w":0.747,"l":32.645,"oc":"#231f20","dsh":1},{"x":3.121,"y":16.082,"w":0.747,"l":24.505,"oc":"#231f20","dsh":1},{"x":3.121,"y":17.582,"w":0.747,"l":32.645,"oc":"#231f20","dsh":1},{"x":29.044,"y":16.082,"w":0.747,"l":6.722,"oc":"#231f20","dsh":1},{"x":3.121,"y":19.082,"w":0.747,"l":24.505,"oc":"#231f20","dsh":1},{"x":3.121,"y":20.582,"w":0.747,"l":32.645,"oc":"#231f20","dsh":1},{"x":29.044,"y":19.082,"w":0.747,"l":6.722,"oc":"#231f20","dsh":1},{"x":3.121,"y":22.082,"w":0.747,"l":24.505,"oc":"#231f20","dsh":1},{"x":29.044,"y":22.082,"w":0.747,"l":6.722,"oc":"#231f20","dsh":1},{"x":29.044,"y":13.081,"w":0.747,"l":6.722,"oc":"#231f20","dsh":1},{"x":3.121,"y":23.581,"w":0.747,"l":32.645,"oc":"#231f20","dsh":1}],"VLines":[{"x":8.317,"y":2.579,"w":1.494,"l":2.999,"oc":"#231f20"},{"x":30.367,"y":2.579,"w":1.494,"l":2.999,"oc":"#231f20"},{"x":29.017,"y":5.578,"w":0.747,"l":1.5,"oc":"#231f20"},{"x":31.267,"y":6.363,"w":0.747,"l":0.622,"oc":"#231f20","dsh":1},{"x":33.067,"y":6.363,"w":0.747,"l":0.622,"oc":"#231f20","dsh":1},{"x":31.267,"y":12.366,"w":0.747,"l":0.622,"oc":"#231f20","dsh":1},{"x":33.067,"y":12.366,"w":0.747,"l":0.622,"oc":"#231f20","dsh":1},{"x":31.267,"y":15.366,"w":0.747,"l":0.622,"oc":"#231f20","dsh":1},{"x":33.067,"y":15.366,"w":0.747,"l":0.622,"oc":"#231f20","dsh":1},{"x":31.267,"y":18.366,"w":0.747,"l":0.622,"oc":"#231f20","dsh":1},{"x":33.067,"y":18.366,"w":0.747,"l":0.622,"oc":"#231f20","dsh":1},{"x":31.267,"y":21.366,"w":0.747,"l":0.622,"oc":"#231f20","dsh":1},{"x":33.067,"y":21.366,"w":0.747,"l":0.622,"oc":"#231f20","dsh":1}],"Fills":[],"Texts":[{"x":30.792,"y":2.735,"w":9.286,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":-1,"TS":[0,9.9709,0,0]}]},{"x":2.653,"y":2.761,"w":2.315,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,9.9709,0,0]}]},{"x":4.023,"y":2.761,"w":2,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"2120","S":-1,"TS":[3,21.9251,1,0]}]},{"x":2.653,"y":3.4539999999999997,"w":8.951,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"(Rev. October 2005)","S":-1,"TS":[0,9.9709,0,0]}]},{"x":13.421,"y":3.269,"w":12.886,"oc":"#231f20","sw":0.390625,"A":"left","R":[{"T":"Multiple Support Declaration","S":-1,"TS":[2,16.9417,0,0]}]},{"x":31.009,"y":4.007,"w":5.203,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Attachment","S":-1,"TS":[0,9.9709,0,0]}]},{"x":31.009,"y":4.443,"w":6.355,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Sequence No.","S":-1,"TS":[0,9.9709,0,0]}]},{"x":34.059,"y":4.443,"w":1.687,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"114","S":-1,"TS":[0,11.9626,1,0]}]},{"x":2.653,"y":4.206,"w":12.275,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury","S":-1,"TS":[0,8.975100000000001,0,0]}]},{"x":2.653,"y":4.642,"w":11.105,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service","S":-1,"TS":[0,8.975100000000001,0,0]}]},{"x":13.823,"y":4.548,"w":1,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"\u0002","S":-1,"TS":[2,9.9709,0,0]}]},{"x":14.508,"y":4.642,"w":17.156,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Attach to Form 1040 or Form 1040A.","S":-1,"TS":[0,11.9626,1,0]}]},{"x":29.217,"y":5.329,"w":13.373,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Your social security number","S":-1,"TS":[0,9.9709,1,0]}]},{"x":2.653,"y":5.329,"w":11.21,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Name(s) shown on return","S":-1,"TS":[0,9.9709,0,0]}]},{"x":2.653,"y":7.827999999999999,"w":10.939,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"During the calendar year","S":-1,"TS":[0,11.9626,0,0]}]},{"x":17.055,"y":7.827999999999999,"w":32.131,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":", the eligible persons listed below each paid over 10% of the support of:","S":-1,"TS":[0,11.9626,0,0]}]},{"x":16.423,"y":9.829,"w":14.081,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Name of your qualifying relative","S":-1,"TS":[0,9.9709,0,0]}]},{"x":2.672,"y":10.54,"w":55.972,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"I have a signed statement from each eligible person waiving his or her right to claim this person as a dependent for any tax ye","S":-1,"TS":[0,11.9626,0,0]}]},{"x":34.876,"y":10.54,"w":0.869,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"ar","S":-1,"TS":[0,11.9626,0,0]}]},{"x":2.672,"y":11.162,"w":17.141,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"that began in the above calendar year.","S":-1,"TS":[0,11.9626,0,0]}]},{"x":29.884,"y":12.833,"w":10.228,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Social security number","S":-1,"TS":[0,9.9709,0,0]}]},{"x":2.667,"y":12.833,"w":10.117,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Eligible person’s name","S":-1,"TS":[0,9.9709,0,0]}]},{"x":2.667,"y":14.333,"w":26.445,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Address (number, street, apt. no., city, state, and ZIP code)","S":-1,"TS":[0,9.9709,0,0]}]},{"x":29.729,"y":46.704,"w":2.334,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Form","S":-1,"TS":[0,9.9709,0,0]}]},{"x":30.995,"y":46.704,"w":2.224,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"2120","S":-1,"TS":[0,13.9584,1,0]}]},{"x":32.628,"y":46.704,"w":6.524,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"(Rev. 10-2005)","S":-1,"TS":[0,9.9709,0,0]}]},{"x":17.465,"y":46.704,"w":7.339,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11712F","S":-1,"TS":[0,9.9709,0,0]}]},{"x":29.884,"y":15.832999999999998,"w":10.228,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Social security number","S":-1,"TS":[0,9.9709,0,0]}]},{"x":2.667,"y":15.832999999999998,"w":10.117,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Eligible person’s name","S":-1,"TS":[0,9.9709,0,0]}]},{"x":2.667,"y":17.333,"w":26.445,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Address (number, street, apt. no., city, state, and ZIP code)","S":-1,"TS":[0,9.9709,0,0]}]},{"x":29.884,"y":18.833,"w":10.228,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Social security number","S":-1,"TS":[0,9.9709,0,0]}]},{"x":2.667,"y":18.833,"w":10.117,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Eligible person’s name","S":-1,"TS":[0,9.9709,0,0]}]},{"x":2.667,"y":20.333,"w":26.445,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Address (number, street, apt. no., city, state, and ZIP code)","S":-1,"TS":[0,9.9709,0,0]}]},{"x":29.884,"y":21.833,"w":10.228,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Social security number","S":-1,"TS":[0,9.9709,0,0]}]},{"x":2.667,"y":21.833,"w":10.117,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Eligible person’s name","S":-1,"TS":[0,9.9709,0,0]}]},{"x":2.667,"y":23.333,"w":26.445,"oc":"#231f20","sw":0.36196875,"A":"left","R":[{"T":"Address (number, street, apt. no., city, state, and ZIP code)","S":-1,"TS":[0,9.9709,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1445,"AM":1024,"TU":"Name(s) shown on return","x":2.932,"y":6.166,"w":26.04,"h":0.899},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1446,"AM":1024,"TU":"Your social security number","x":29.07,"y":6.166,"w":6.675,"h":0.899},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YR","EN":0},"TI":1447,"AM":0,"TU":"Calendar Year","x":9.42,"y":7.665,"w":7.658,"h":0.9,"MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAM","EN":0},"TI":1448,"AM":0,"TU":"Name of your qualifying relative - First Name.","x":3.12,"y":9.165,"w":11.292,"h":0.9},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LNAM","EN":0},"TI":1449,"AM":0,"TU":"Name of your qualifying relative - Last name.","x":14.703,"y":9.247,"w":13.321,"h":0.9},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_FNAM2_1_","EN":0},"TI":1450,"AM":0,"TU":"Eligible person’s first name.","x":3.09,"y":12.165,"w":11.516,"h":0.9},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_LNAM2_1_","EN":0},"TI":1451,"AM":0,"TU":"Eligible person’s last name.","x":14.859,"y":12.231,"w":13.247,"h":0.9},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A50_ESSN_1_","EN":0},"TI":1452,"AM":0,"TU":"Social security number.","x":29.006,"y":12.153,"w":6.675,"h":0.899},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ADDR_1_","EN":0},"TI":1453,"AM":0,"TU":"Address (number, street, apt. no.,)","x":3.12,"y":13.665,"w":12.903,"h":0.9},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ECITY_1_","EN":0},"TI":1454,"AM":0,"TU":"City.","x":16.344,"y":13.722,"w":8.51,"h":0.9},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ESTATE_1_","EN":0},"TI":1455,"AM":0,"TU":"State","x":25.365,"y":13.673,"w":1.467,"h":0.973,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"no entry"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"A50_EZIP_1_","EN":0},"TI":1456,"AM":0,"TU":"Zip Code.","x":28.344,"y":13.744,"w":2.866,"h":0.856},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_FNAM2_2_","EN":0},"TI":1457,"AM":0,"TU":"Eligible person’s first name.","x":3.09,"y":15.165,"w":11.457,"h":0.9},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_LNAM2_2_","EN":0},"TI":1458,"AM":0,"TU":"Eligible person’s last name.","x":14.978,"y":15.274,"w":13.247,"h":0.9},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A50_ESSN_2_","EN":0},"TI":1459,"AM":0,"TU":"Social security number.","x":29.185,"y":15.077,"w":6.675,"h":0.899},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ADDR_2_","EN":0},"TI":1460,"AM":0,"TU":"Address (number, street, apt. no.,)","x":3.12,"y":16.665,"w":13.022,"h":0.9},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ECITY_2_","EN":0},"TI":1461,"AM":0,"TU":"City.","x":16.463,"y":16.706,"w":8.999,"h":0.9},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ESTATE_2_","EN":0},"TI":1462,"AM":0,"TU":"State","x":25.747,"y":16.621,"w":1.467,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"no entry"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"A50_EZIP_2_","EN":0},"TI":1463,"AM":0,"TU":"Zip Code.","x":28.643,"y":16.728,"w":2.866,"h":0.856},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_FNAM2_3_","EN":0},"TI":1464,"AM":0,"TU":"Eligible person’s first name.","x":3.09,"y":18.165,"w":11.457,"h":0.9},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_LNAM2_3_","EN":0},"TI":1465,"AM":0,"TU":"Eligible person’s last name.","x":15.083,"y":18.005,"w":13.247,"h":0.9},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A50_ESSN_3_","EN":0},"TI":1466,"AM":0,"TU":"Social security number.","x":28.693,"y":18.166,"w":6.675,"h":0.899},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ADDR_3_","EN":0},"TI":1467,"AM":0,"TU":"Address (number, street, apt. no.,)","x":3.12,"y":19.665,"w":13.082,"h":0.9},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ECITY_3_","EN":0},"TI":1468,"AM":0,"TU":"City.","x":16.568,"y":19.616,"w":8.626,"h":0.9},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ESTATE_3_","EN":0},"TI":1469,"AM":0,"TU":"State","x":25.891,"y":19.617,"w":1.467,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"no entry"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"A50_EZIP_3_","EN":0},"TI":1470,"AM":0,"TU":"Zip Code.","x":28.807,"y":19.637,"w":2.866,"h":0.857},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_FNAM2_4_","EN":0},"TI":1471,"AM":0,"TU":"Eligible person’s first name.","x":3.09,"y":21.165,"w":11.397,"h":0.9},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_LNAM2_4_","EN":0},"TI":1472,"AM":0,"TU":"Eligible person’s last name.","x":15.069,"y":21.093,"w":13.247,"h":0.9},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A50_ESSN_4_","EN":0},"TI":1473,"AM":0,"TU":"Social security number.","x":28.738,"y":21.195,"w":6.675,"h":0.899},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ADDR_4_","EN":0},"TI":1474,"AM":0,"TU":"Address (number, street, apt. no.,)","x":3.12,"y":22.665,"w":13.261,"h":0.9},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ECITY_4_","EN":0},"TI":1475,"AM":0,"TU":"City.","x":16.971,"y":22.652,"w":8.277,"h":0.9},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A50_ESTATE_4_","EN":0},"TI":1476,"AM":0,"TU":"State","x":25.941,"y":22.66,"w":1.419,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"no entry"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"A50_EZIP_4_","EN":0},"TI":1477,"AM":0,"TU":"Zip Code.","x":29.091,"y":22.666,"w":2.866,"h":0.857}],"Boxsets":[]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F2210.json b/test/data/fd/form/F2210.json index 0f79d138..8261546b 100755 --- a/test/data/fd/form/F2210.json +++ b/test/data/fd/form/F2210.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.997,"y":5.251,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.066,"y":3.001,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":5.251,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":70.624},{"oc":"#221f1f","x":76.684,"y":6.751,"w":0.75,"l":22.361},{"oc":"#221f1f","x":7.427,"y":9.438,"w":0.75,"l":44.505},{"oc":"#221f1f","x":7.427,"y":8.251,"w":0.75,"l":44.505},{"oc":"#221f1f","x":7.281,"y":12.081,"w":0.75,"l":44.606},{"oc":"#221f1f","x":7.281,"y":10.394,"w":0.75,"l":44.606},{"oc":"#221f1f","x":7.281,"y":14.312,"w":0.75,"l":44.505},{"oc":"#221f1f","x":7.281,"y":13.125,"w":0.75,"l":44.505},{"oc":"#221f1f","x":7.281,"y":20.469,"w":0.75,"l":39.769},{"oc":"#221f1f","x":7.281,"y":16.219,"w":0.75,"l":39.769},{"oc":"#221f1f","x":51.788,"y":8.986,"w":0.75,"l":5.658},{"oc":"#221f1f","x":58.369,"y":9.438,"w":0.75,"l":39.473},{"oc":"#221f1f","x":58.369,"y":8.251,"w":0.75,"l":39.473},{"oc":"#221f1f","x":51.788,"y":11.127,"w":0.75,"l":5.555},{"oc":"#221f1f","x":58.369,"y":12.322,"w":0.75,"l":39.397},{"oc":"#221f1f","x":58.369,"y":10.072,"w":0.75,"l":39.397},{"oc":"#221f1f","x":51.788,"y":13.821,"w":0.75,"l":5.75},{"oc":"#221f1f","x":58.165,"y":14.251,"w":0.75,"l":39.6},{"oc":"#221f1f","x":58.165,"y":12.751,"w":0.75,"l":39.6},{"oc":"#221f1f","x":53.215,"y":20.199,"w":0.75,"l":44.653},{"oc":"#221f1f","x":53.215,"y":16.401,"w":0.75,"l":44.653},{"oc":"#221f1f","x":68.022,"y":15.178,"w":0.75,"l":6.532},{"oc":"#221f1f","x":75.562,"y":15.796,"w":0.75,"l":22.099},{"oc":"#221f1f","x":75.562,"y":14.671,"w":0.75,"l":22.099},{"oc":"#221f1f","x":6.147,"y":21.001,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":21.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.333,"y":21.001,"w":1.125,"l":86.713},{"oc":"#221f1f","x":12.333,"y":21.751,"w":0.75,"l":86.713},{"oc":"#221f1f","x":79.159,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":27.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":27.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":28.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":29.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":30.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":35.251,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":36.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.333,"y":35.251,"w":1.125,"l":86.713},{"oc":"#221f1f","x":12.333,"y":36.001,"w":0.75,"l":86.713},{"oc":"#221f1f","x":6.147,"y":43.501,"w":1.5,"l":42.161},{"oc":"#221f1f","x":48.222,"y":43.501,"w":1.5,"l":39.686},{"oc":"#221f1f","x":87.822,"y":43.501,"w":1.5,"l":11.223},{"oc":"#221f1f","x":0.086,"y":49.469,"w":1.5,"l":1.177},{"oc":"#221f1f","x":0.086,"y":48.967,"w":1.5,"l":1.177},{"oc":"#221f1f","x":0.086,"y":49.469,"w":1.5,"l":2.247},{"oc":"#221f1f","x":0.086,"y":48.611,"w":1.5,"l":2.247}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.547},{"oc":"#221f1f","x":21.04,"y":3.735,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.152,"y":2.985,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.152,"y":3.735,"w":1.5,"l":1.547},{"oc":"#221f1f","x":76.727,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":51.932,"y":8.251,"w":0.75,"l":1.187},{"oc":"#221f1f","x":7.427,"y":8.251,"w":0.75,"l":1.187},{"oc":"#221f1f","x":17.561,"y":9.446,"w":0.75,"l":0.837},{"oc":"#221f1f","x":51.887,"y":10.394,"w":0.75,"l":1.687},{"oc":"#221f1f","x":7.281,"y":10.394,"w":0.75,"l":1.687},{"oc":"#221f1f","x":17.561,"y":12.09,"w":0.75,"l":0.837},{"oc":"#221f1f","x":51.786,"y":13.125,"w":0.75,"l":1.187},{"oc":"#221f1f","x":7.281,"y":13.125,"w":0.75,"l":1.187},{"oc":"#221f1f","x":17.572,"y":14.29,"w":0.75,"l":1.524},{"oc":"#221f1f","x":47.05,"y":16.219,"w":0.75,"l":4.25},{"oc":"#221f1f","x":7.281,"y":16.219,"w":0.75,"l":4.25},{"oc":"#221f1f","x":97.843,"y":8.251,"w":0.75,"l":1.187},{"oc":"#221f1f","x":58.369,"y":8.251,"w":0.75,"l":1.187},{"oc":"#221f1f","x":97.767,"y":10.072,"w":0.75,"l":2.25},{"oc":"#221f1f","x":58.369,"y":10.072,"w":0.75,"l":2.25},{"oc":"#221f1f","x":97.765,"y":12.751,"w":0.75,"l":1.5},{"oc":"#221f1f","x":58.165,"y":12.751,"w":0.75,"l":1.5},{"oc":"#221f1f","x":59.594,"y":14.31,"w":0.75,"l":1.761},{"oc":"#221f1f","x":97.868,"y":16.401,"w":0.75,"l":3.798},{"oc":"#221f1f","x":53.215,"y":16.401,"w":0.75,"l":3.798},{"oc":"#221f1f","x":68.065,"y":14.306,"w":0.75,"l":0.888},{"oc":"#221f1f","x":97.662,"y":14.671,"w":0.75,"l":1.125},{"oc":"#221f1f","x":75.562,"y":14.671,"w":0.75,"l":1.125},{"oc":"#221f1f","x":82.915,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":24.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":24.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":25.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":26.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":26.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":27.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":27.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":27.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":28.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":28.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":28.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":29.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":1.263,"y":48.967,"w":1.5,"l":0.501},{"oc":"#221f1f","x":0.086,"y":48.967,"w":1.5,"l":0.501},{"oc":"#221f1f","x":2.333,"y":48.611,"w":1.5,"l":0.858},{"oc":"#221f1f","x":0.086,"y":48.611,"w":1.5,"l":0.858}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":21.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":26.251,"w":3.713,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":35.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":48.999,"w":1.005,"h":0.439,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.999,"w":1.005,"h":0.439,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.642,"w":2.075,"h":0.733,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.642,"w":2.075,"h":0.795,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.635,"w":3.168,"clr":-1,"A":"left","R":[{"T":"Form%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.751,"y":2.635,"w":2.34,"clr":-1,"A":"left","R":[{"T":"2210%20","S":-1,"TS":[0,27,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.776,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.276,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":36.176,"y":2.016,"w":23.180000000000017,"clr":-1,"A":"left","R":[{"T":"Underpayment%20of%20Estimated%20Tax%20by%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":37.806,"y":2.828,"w":14.1,"clr":-1,"A":"left","R":[{"T":"Individuals%2C%20Estates%2C%20and%20Trusts","S":-1,"TS":[2,15,0,0]}]},{"oc":"#221f1f","x":23.345,"y":3.5140000000000002,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.615,"y":3.6079999999999997,"w":30.237000000000002,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%202210%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.191,"y":3.6079999999999997,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform2210","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.965,"y":3.6079999999999997,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.852,"y":4.264,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":34.122,"y":4.295,"w":27.640000000000008,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%201040A%2C%201040NR%2C%201040NR-EZ%2C%20or%201041.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9729999999999999,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0140","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.858,"y":3.268,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.203,"y":3.268,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.8129999999999997,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":4.322,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.943,"y":4.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"06","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.988,"w":12.853000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20tax%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.508,"y":5.001,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":33.717,"y":6.946,"w":15.484000000000005,"clr":-1,"A":"left","R":[{"T":"Do%20You%20Have%20To%20File%20Form%202210%3F","S":-1,"TS":[0,17,0,0]}]},{"oc":"#221f1f","x":8.036,"y":8.238,"w":27.175000000000004,"clr":-1,"A":"left","R":[{"T":"Complete%20lines%201%20through%207%20below.%20Is%20line%207%20less%20than%20%241%2C000%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.342,"y":9.301,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.805,"y":9.538,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":7.890000000000001,"y":10.276,"w":27.395999999999997,"clr":-1,"A":"left","R":[{"T":"Complete%20lines%208%20and%209%20below.%20Is%20line%206%20equal%20to%20or%20more%20than%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.890000000000001,"y":10.951,"w":2.927,"clr":-1,"A":"left","R":[{"T":"line%209%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.342,"y":11.945,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.805,"y":12.288,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":7.890000000000001,"y":13.094,"w":27.355000000000004,"clr":-1,"A":"left","R":[{"T":"You%20may%20owe%20a%20penalty.%20Does%20any%20box%20in%20Part%20II%20below%20apply%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.353,"y":14.145,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.805,"y":15.288,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":7.890000000000001,"y":16.029,"w":10.722000000000001,"clr":-1,"A":"left","R":[{"T":"Do%20not%20file%20Form%202210.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.056,"y":16.029,"w":13.409,"clr":-1,"A":"left","R":[{"T":"You%20are%20not%20required%20to%20figure%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.897,"y":16.704,"w":22.872999999999998,"clr":-1,"A":"left","R":[{"T":"your%20penalty%20because%20the%20IRS%20will%20figure%20it%20and%20send","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.901,"y":17.379,"w":24.042000000000005,"clr":-1,"A":"left","R":[{"T":"you%20a%20bill%20for%20any%20unpaid%20amount.%20If%20you%20want%20to%20figure%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.9030000000000005,"y":18.054,"w":23.651,"clr":-1,"A":"left","R":[{"T":"it%2C%20you%20may%20use%20Part%20III%20or%20Part%20IV%20as%20a%20worksheet%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.901,"y":18.729,"w":22.229000000000003,"clr":-1,"A":"left","R":[{"T":"enter%20your%20penalty%20amount%20on%20your%20tax%20return%2C%20but%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.061,"y":18.729,"w":1.5,"clr":-1,"A":"left","R":[{"T":"do%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.901,"y":19.404,"w":8.814,"clr":-1,"A":"left","R":[{"T":"not%20file%20Form%202210.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.992,"y":7.989000000000001,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.931,"y":8.347,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":58.979,"y":8.215,"w":10.722000000000001,"clr":-1,"A":"left","R":[{"T":"Do%20not%20file%20Form%202210.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.564,"y":8.215,"w":11.724,"clr":-1,"A":"left","R":[{"T":"You%20do%20not%20owe%20a%20penalty.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.94,"y":9.81,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.057,"y":10.472,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":58.979,"y":9.892,"w":12.002,"clr":-1,"A":"left","R":[{"T":"You%20do%20not%20owe%20a%20penalty.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.544,"y":9.892,"w":10.166,"clr":-1,"A":"left","R":[{"T":"Do%20not%20file%20Form%202210","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.979,"y":10.567,"w":4.76,"clr":-1,"A":"left","R":[{"T":"(but%20if%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.342,"y":10.567,"w":0.648,"clr":-1,"A":"left","R":[{"T":"E","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.344,"y":10.567,"w":19.578999999999994,"clr":-1,"A":"left","R":[{"T":"%20in%20Part%20II%20applies%2C%20you%20must%20file%20page%201%20of%20%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.979,"y":11.242,"w":5.373000000000001,"clr":-1,"A":"left","R":[{"T":"Form%202210).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.038,"y":12.656,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.804,"y":13.16,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":58.774,"y":12.539,"w":2.056,"clr":-1,"A":"left","R":[{"T":"You%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.954,"y":12.539,"w":2.388,"clr":-1,"A":"left","R":[{"T":"must","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.648,"y":12.539,"w":11.781000000000004,"clr":-1,"A":"left","R":[{"T":"%20file%20Form%202210.%20Does%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.872,"y":12.539,"w":2.557,"clr":-1,"A":"left","R":[{"T":"B%2C%20C%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.827,"y":12.539,"w":1.185,"clr":-1,"A":"left","R":[{"T":"or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.66,"y":12.539,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":91.237,"y":12.539,"w":3.963,"clr":-1,"A":"left","R":[{"T":"in%20Part%20II%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.774,"y":13.214,"w":3.001,"clr":-1,"A":"left","R":[{"T":"apply%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.86,"y":14.103,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.877,"y":15.564,"w":1,"clr":-1,"A":"left","R":[{"T":"d","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":53.824,"y":16.325,"w":3.741,"clr":-1,"A":"left","R":[{"T":"You%20are%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.611,"y":16.325,"w":1.556,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.018,"y":16.325,"w":21.633,"clr":-1,"A":"left","R":[{"T":"%20required%20to%20figure%20your%20penalty%20because%20the%20IRS%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.824,"y":17,"w":27.37600000000001,"clr":-1,"A":"left","R":[{"T":"will%20figure%20it%20and%20send%20you%20a%20bill%20for%20any%20unpaid%20amount.%20If%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.824,"y":17.675,"w":23.186999999999998,"clr":-1,"A":"left","R":[{"T":"want%20to%20figure%20it%2C%20you%20may%20use%20Part%20III%20or%20Part%20IV%20as%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.824,"y":18.35,"w":27.358000000000004,"clr":-1,"A":"left","R":[{"T":"worksheet%20and%20enter%20your%20penalty%20amount%20on%20your%20tax%20return%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.824,"y":19.025,"w":1.742,"clr":-1,"A":"left","R":[{"T":"but%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.519,"y":19.025,"w":8.386000000000001,"clr":-1,"A":"left","R":[{"T":"file%20only%20page%201%20of","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.921,"y":19.025,"w":5.279,"clr":-1,"A":"left","R":[{"T":"Form%202210.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.33,"y":14.12,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.325,"y":14.504,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":76.172,"y":14.606,"w":13.133000000000003,"clr":-1,"A":"left","R":[{"T":"You%20must%20figure%20your%20penalty.","S":3,"TS":[0,12,0,0]}]},{"x":6.838,"y":20.822,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.672,"y":20.822,"w":12.369,"clr":-1,"A":"left","R":[{"T":"Required%20Annual%20Payment","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":21.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":21.59,"w":43.399999999999984,"clr":-1,"A":"left","R":[{"T":"Enter%20your%202013%20tax%20after%20credits%20from%20Form%201040%2C%20line%2055%20(see%20instructions%20if%20not%20filing%20Form%201040)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":21.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":22.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":22.381,"w":43.82299999999998,"clr":-1,"A":"left","R":[{"T":"Other%20taxes%2C%20including%20self-employment%20tax%20and%2C%20if%20applicable%2C%20Additional%20Medicare%20Tax%20and%2For%20Net%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":23.069,"w":18.26300000000001,"clr":-1,"A":"left","R":[{"T":"Investment%20Income%20Tax%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.941,"y":23.069,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":23.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":23.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":23.84,"w":16.539000000000005,"clr":-1,"A":"left","R":[{"T":"Refundable%20credits%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":23.84,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":23.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.952,"y":23.751,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":98.208,"y":23.751,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":24.653,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.653,"y":24.653,"w":28.416999999999998,"clr":-1,"A":"left","R":[{"T":"Current%20year%20tax.%20Combine%20lines%201%2C%202%2C%20and%203.%20If%20less%20than%20%241%2C000%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.61,"y":24.653,"w":2.667,"clr":-1,"A":"left","R":[{"T":"stop%3B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.736,"y":24.653,"w":12.132000000000001,"clr":-1,"A":"left","R":[{"T":"you%20do%20not%20owe%20a%20penalty.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.653,"y":25.34,"w":3.4639999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.011,"y":25.34,"w":6.391,"clr":-1,"A":"left","R":[{"T":"file%20Form%202210","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.565,"y":25.34,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":25.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":26.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":26.09,"w":12.375000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%204%20by%2090%25%20(.90)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":26.09,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":26.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":26.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":26.84,"w":8.835,"clr":-1,"A":"left","R":[{"T":"Withholding%20taxes.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.319,"y":26.84,"w":3.4639999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.677,"y":26.84,"w":22.06100000000001,"clr":-1,"A":"left","R":[{"T":"include%20estimated%20tax%20payments%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.689,"y":26.84,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":26.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":27.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":27.59,"w":20.748000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%206%20from%20line%204.%20If%20less%20than%20%241%2C000%2C%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":40.142,"y":27.59,"w":2.1109999999999998,"clr":-1,"A":"left","R":[{"T":"stop","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":43.244,"y":27.59,"w":12.410000000000002,"clr":-1,"A":"left","R":[{"T":"%3B%20you%20do%20not%20owe%20a%20penalty.%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":61.481,"y":27.59,"w":3.4639999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":66.571,"y":27.59,"w":6.6690000000000005,"clr":-1,"A":"left","R":[{"T":"file%20Form%202210%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":80.378,"y":27.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":28.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":28.34,"w":35.02699999999999,"clr":-1,"A":"left","R":[{"T":"Maximum%20required%20annual%20payment%20based%20on%20prior%20year%E2%80%99s%20tax%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.751,"y":28.34,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":28.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":29.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":29.09,"w":13.036000000000001,"clr":-1,"A":"left","R":[{"T":"Required%20annual%20payment.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.817,"y":29.09,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.493,"y":29.09,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.331,"y":29.09,"w":7.353000000000002,"clr":-1,"A":"left","R":[{"T":"of%20line%205%20or%20line%208","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":29.09,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":29.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":29.84,"w":3.038,"clr":-1,"A":"left","R":[{"T":"Next%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.351,"y":29.84,"w":11.430000000000003,"clr":-1,"A":"left","R":[{"T":"Is%20line%209%20more%20than%20line%206%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.052,"y":30.59,"w":1.63,"clr":-1,"A":"left","R":[{"T":"No.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.574,"y":30.59,"w":2.334,"clr":-1,"A":"left","R":[{"T":"%20You%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.184,"y":30.59,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.912,"y":30.59,"w":7.056000000000001,"clr":-1,"A":"left","R":[{"T":"%20owe%20a%20penalty.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.826,"y":30.59,"w":3.4639999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.185,"y":30.59,"w":11.781000000000002,"clr":-1,"A":"left","R":[{"T":"file%20Form%202210%20unless%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.408,"y":30.59,"w":0.648,"clr":-1,"A":"left","R":[{"T":"E","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.411,"y":30.59,"w":6.7219999999999995,"clr":-1,"A":"left","R":[{"T":"%20below%20applies.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.052,"y":31.340000000000003,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.233,"y":31.340000000000003,"w":13.022000000000002,"clr":-1,"A":"left","R":[{"T":"%20You%20may%20owe%20a%20penalty%2C%20but%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.376,"y":31.340000000000003,"w":3.3339999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.534,"y":31.340000000000003,"w":28.93,"clr":-1,"A":"left","R":[{"T":"file%20Form%202210%20unless%20one%20or%20more%20boxes%20in%20Part%20II%20below%20applies.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.127,"y":32.09,"w":3.5739999999999994,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.655,"y":32.09,"w":2.279,"clr":-1,"A":"left","R":[{"T":"B%2C%20C%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.181,"y":32.09,"w":1.463,"clr":-1,"A":"left","R":[{"T":"%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.444,"y":32.09,"w":0.741,"clr":-1,"A":"left","R":[{"T":"D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.59,"y":32.09,"w":25.656000000000006,"clr":-1,"A":"left","R":[{"T":"%20applies%2C%20you%20must%20figure%20your%20penalty%20and%20file%20Form%202210.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.127,"y":32.903,"w":3.5739999999999994,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.767,"y":32.903,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.293,"y":32.903,"w":0.907,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.696,"y":32.903,"w":0.9740000000000001,"clr":-1,"A":"left","R":[{"T":"%20E","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.203,"y":32.903,"w":7.484000000000002,"clr":-1,"A":"left","R":[{"T":"%20applies%20(but%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.891,"y":32.903,"w":2.557,"clr":-1,"A":"left","R":[{"T":"B%2C%20C%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.921,"y":32.903,"w":1.185,"clr":-1,"A":"left","R":[{"T":"or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.791,"y":32.903,"w":0.741,"clr":-1,"A":"left","R":[{"T":"D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.937,"y":32.903,"w":17.855999999999995,"clr":-1,"A":"left","R":[{"T":")%20file%20only%20page%201%20of%20Form%202210.%20You%20are%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.93,"y":32.903,"w":1.556,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.374,"y":32.903,"w":17.836000000000002,"clr":-1,"A":"left","R":[{"T":"%20required%20to%20figure%20your%20penalty%3B%20the%20IRS%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.131,"y":33.59,"w":53.415999999999954,"clr":-1,"A":"left","R":[{"T":"will%20figure%20it%20and%20send%20you%20a%20bill%20for%20any%20unpaid%20amount.%20If%20you%20want%20to%20figure%20your%20penalty%2C%20you%20may%20use%20Part%20III%20or%20IV%20as%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.131,"y":34.278,"w":25.153,"clr":-1,"A":"left","R":[{"T":"worksheet%20and%20enter%20your%20penalty%20on%20your%20tax%20return%2C%20but","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.04,"y":34.278,"w":14.221000000000005,"clr":-1,"A":"left","R":[{"T":"%20file%20only%20page%201%20of%20Form%202210.","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":35.073,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.672,"y":35.073,"w":9.164000000000001,"clr":-1,"A":"left","R":[{"T":"Reasons%20for%20Filing.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.423,"y":35.073,"w":17.355000000000004,"clr":-1,"A":"left","R":[{"T":"Check%20applicable%20boxes.%20If%20none%20apply%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.269,"y":35.073,"w":3.612,"clr":-1,"A":"left","R":[{"T":"%20do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.856,"y":35.073,"w":6.6690000000000005,"clr":-1,"A":"left","R":[{"T":"file%20Form%202210.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.355,"y":35.903,"w":0.685,"clr":-1,"A":"left","R":[{"T":"A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.053,"y":35.903,"w":6.242,"clr":-1,"A":"left","R":[{"T":"You%20request%20a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.741,"y":35.903,"w":3.685,"clr":-1,"A":"left","R":[{"T":"%20waiver%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.452,"y":35.903,"w":45.95699999999997,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20of%20your%20entire%20penalty.%20You%20must%20check%20this%20box%20and%20file%20page%201%20of%20Form%202210%2C%20but%20you","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.048,"y":36.59,"w":17.132000000000005,"clr":-1,"A":"left","R":[{"T":"are%20not%20required%20to%20figure%20your%20penalty.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.321,"y":37.403,"w":0.704,"clr":-1,"A":"left","R":[{"T":"B","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.053,"y":37.403,"w":6.52,"clr":-1,"A":"left","R":[{"T":"You%20request%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.159,"y":37.403,"w":3.1290000000000004,"clr":-1,"A":"left","R":[{"T":"waiver","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.006,"y":37.403,"w":46.304999999999986,"clr":-1,"A":"left","R":[{"T":"%20(see%20instructions)%20of%20part%20of%20your%20penalty.%20You%20must%20figure%20your%20penalty%20and%20waiver%20amount%20and%20file%20Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.05,"y":38.09,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2210.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.265,"y":38.903,"w":0.741,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.053,"y":38.903,"w":45.13899999999996,"clr":-1,"A":"left","R":[{"T":"Your%20income%20varied%20during%20the%20year%20and%20your%20penalty%20is%20reduced%20or%20eliminated%20when%20figured%20using%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.744,"y":38.903,"w":5.146999999999999,"clr":-1,"A":"left","R":[{"T":"annualized","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":93.304,"y":38.903,"w":3.794,"clr":-1,"A":"left","R":[{"T":"income%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.044,"y":39.59,"w":9.736000000000002,"clr":-1,"A":"left","R":[{"T":"installment%20method.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.104,"y":39.59,"w":29.509000000000004,"clr":-1,"A":"left","R":[{"T":"You%20must%20figure%20the%20penalty%20using%20Schedule%20Al%20and%20file%20Form%202210.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.259,"y":40.403,"w":0.741,"clr":-1,"A":"left","R":[{"T":"D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.053,"y":40.403,"w":55.41399999999997,"clr":-1,"A":"left","R":[{"T":"Your%20penalty%20is%20lower%20when%20figured%20by%20treating%20the%20federal%20income%20tax%20withheld%20from%20your%20income%20as%20paid%20on%20the%20dates%20it%20was%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.045,"y":41.09,"w":54.68399999999995,"clr":-1,"A":"left","R":[{"T":"actually%20withheld%2C%20instead%20of%20in%20equal%20amounts%20on%20the%20payment%20due%20dates.%20You%20must%20figure%20your%20penalty%20and%20file%20Form%202210.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.405,"y":41.84,"w":0.648,"clr":-1,"A":"left","R":[{"T":"E","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.053,"y":41.84,"w":53.01199999999996,"clr":-1,"A":"left","R":[{"T":"You%20filed%20or%20are%20filing%20a%20joint%20return%20for%20either%202012%20or%202013%2C%20but%20not%20for%20both%20years%2C%20and%20line%208%20above%20is%20smaller%20than%20line%205","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.062,"y":42.528,"w":24.638,"clr":-1,"A":"left","R":[{"T":"above.%20You%20must%20file%20page%201%20of%20Form%202210%2C%20but%20you%20are%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.174,"y":42.528,"w":1.556,"clr":-1,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.581,"y":42.528,"w":19.373000000000005,"clr":-1,"A":"left","R":[{"T":"%20required%20to%20figure%20your%20penalty%20(unless%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.549,"y":42.528,"w":0.982,"clr":-1,"A":"left","R":[{"T":"B%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.498,"y":42.528,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"C%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.074,"y":42.528,"w":1.463,"clr":-1,"A":"left","R":[{"T":"%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.337,"y":42.528,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.914,"y":42.528,"w":3.7409999999999997,"clr":-1,"A":"left","R":[{"T":"applies).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":43.358,"w":30.702000000000005,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20separate%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.357,"y":43.376,"w":7.688000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011744P%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.154,"y":43.323,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":43.323,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2210","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":43.323,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1110,"AM":1024,"x":6.229,"y":5.873,"w":70.373,"h":0.862,"TU":"Name(s) shown on tax return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1111,"AM":1024,"x":76.869,"y":5.828,"w":22.11,"h":0.907,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":1112,"AM":1024,"x":83.016,"y":21.788,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1113,"AM":0,"x":83.016,"y":23.215,"w":12.189,"h":0.833,"TU":"Line 2. Other taxes, including self-employment tax and, if applicable, Additional Medicare Tax and/or Net Investment Income Tax (see instructions)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TOTCR","EN":0},"TI":1114,"AM":0,"x":83.983,"y":24.012,"w":11.356,"h":0.833,"TU":"Line 3. Refundable credits (see instructions).","MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CYTAX","EN":0},"TI":1115,"AM":1024,"x":83.162,"y":25.313,"w":12.217,"h":0.938},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SAFEAMT","EN":0},"TI":1116,"AM":1024,"x":63.236,"y":26.103,"w":12.148,"h":0.861},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WHTAX","EN":0},"TI":1117,"AM":1024,"x":83.098,"y":26.79,"w":12.024,"h":0.915},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXDUE","EN":0},"TI":1118,"AM":1024,"x":83.016,"y":27.757,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PYTAX","EN":0},"TI":1119,"AM":0,"x":83.016,"y":28.507,"w":12.189,"h":0.833,"TU":"Line 8. Maximum required annual payment based on prior year's tax (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REQPAY","EN":0},"TI":1120,"AM":1024,"x":83.016,"y":29.257,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2210AI"}},"id":{"Id":"Add_F2210AI","EN":0},"TI":1126,"AM":1024,"x":73.601,"y":39.763,"w":4.22,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PENN","EN":0},"TI":1121,"AM":0,"x":9.857,"y":30.726,"w":1.493,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PENY","EN":0},"TI":1122,"AM":0,"x":9.901,"y":31.424,"w":1.349,"h":0.833,"checked":false}],"id":{"Id":"PENRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PTWAIVX","EN":0},"TI":1123,"AM":0,"x":9.675,"y":35.981,"w":2.194,"h":0.839,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1A","EN":0},"TI":1124,"AM":0,"x":9.788,"y":37.518,"w":2.194,"h":0.833,"checked":false}],"id":{"Id":"L9RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1B","EN":0},"TI":1125,"AM":0,"x":9.852,"y":38.991,"w":2.306,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1C","EN":0},"TI":1127,"AM":0,"x":9.9,"y":40.399,"w":2.419,"h":0.92,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1D","EN":0},"TI":1128,"AM":0,"x":9.788,"y":41.994,"w":2.306,"h":0.833,"checked":false}],"id":{"Id":"A540RB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":86.711},{"oc":"#221f1f","x":92.772,"y":3.001,"w":1.5,"l":6.273},{"oc":"#221f1f","x":6.147,"y":3.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":14.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":82.872,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":15.753,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":20.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":28.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":31.501,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":82.915,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":15.737,"w":0.75,"l":3.791},{"oc":"#221f1f","x":79.202,"y":15.737,"w":0.75,"l":3.791},{"oc":"#221f1f","x":63.115,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":15.737,"w":0.75,"l":3.779},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":20.235,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":79.202,"y":23.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":82.915,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":28.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":79.202,"y":28.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.29,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":3.001,"w":7.425,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":15.753,"w":3.713,"h":3.76,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":24.001,"w":3.713,"h":3.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%202210%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.7,"y":2.01,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.797,"y":2.01,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.949,"y":2.822,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":2.822,"w":6.52,"clr":-1,"A":"left","R":[{"T":"Short%20Method","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":9.652,"y":3.697,"w":8.279,"clr":-1,"A":"left","R":[{"T":"Can%20You%20Use%20the%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":9.652,"y":4.385,"w":7.129,"clr":-1,"A":"left","R":[{"T":"Short%20Method%3F","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":35.64,"y":3.59,"w":14.838999999999999,"clr":-1,"A":"left","R":[{"T":"You%20may%20use%20the%20short%20method%20if%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.64,"y":4.403,"w":35.285999999999994,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%20You%20made%20no%20estimated%20tax%20payments%20(or%20your%20only%20payments%20were%20withheld%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.64,"y":5.09,"w":9.075000000000003,"clr":-1,"A":"left","R":[{"T":"federal%20income%20tax)%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.678,"y":5.09,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.64,"y":5.903,"w":33.770999999999994,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%20You%20paid%20the%20same%20amount%20of%20estimated%20tax%20on%20each%20of%20the%20four%20payment%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.64,"y":6.591,"w":4.724,"clr":-1,"A":"left","R":[{"T":"due%20dates.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.824,"y":8.197,"w":8.76,"clr":-1,"A":"left","R":[{"T":"Must%20You%20Use%20the%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":9.824,"y":8.885,"w":8.258000000000001,"clr":-1,"A":"left","R":[{"T":"Regular%20Method%3F","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":35.64,"y":8.09,"w":32.398,"clr":-1,"A":"left","R":[{"T":"You%20must%20use%20the%20regular%20method%20(Part%20IV)%20instead%20of%20the%20short%20method%20if%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.64,"y":8.84,"w":20.674000000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%20You%20made%20any%20estimated%20tax%20payments%20late%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.64,"y":9.59,"w":9.169,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%20You%20checked%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.823,"y":9.59,"w":0.741,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.969,"y":9.59,"w":1.463,"clr":-1,"A":"left","R":[{"T":"%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.232,"y":9.59,"w":0.741,"clr":-1,"A":"left","R":[{"T":"D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.378,"y":9.59,"w":4.519,"clr":-1,"A":"left","R":[{"T":"%20in%20Part%20II%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.369,"y":9.59,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.64,"y":10.403,"w":34.339,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%20You%20are%20filing%20Form%201040NR%20or%201040NR-EZ%20and%20you%20did%20not%20receive%20wages%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.64,"y":11.09,"w":24.85700000000001,"clr":-1,"A":"left","R":[{"T":"as%20an%20employee%20subject%20to%20U.S.%20income%20tax%20withholding.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.315,"y":11.903,"w":3.1119999999999997,"clr":-1,"A":"left","R":[{"T":"Note%3A%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.128,"y":11.903,"w":47.04999999999997,"clr":-1,"A":"left","R":[{"T":"If%20any%20payment%20was%20made%20earlier%20than%20the%20due%20date%2C%20you%20may%20use%20the%20short%20method%2C%20but%20using%20it%20may%20cause","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.337,"y":11.903,"w":5.724,"clr":-1,"A":"left","R":[{"T":"you%20to%20pay%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.315,"y":12.59,"w":43.11799999999998,"clr":-1,"A":"left","R":[{"T":"larger%20penalty%20than%20the%20regular%20method.%20If%20the%20payment%20was%20only%20a%20few%20days%20early%2C%20the%20difference%20is","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.441,"y":12.59,"w":7.5920000000000005,"clr":-1,"A":"left","R":[{"T":"likely%20to%20be%20small.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":14.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":14.84,"w":18.082000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%202210%2C%20line%209","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":14.84,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":14.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":16.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":16.34,"w":21.305000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%2C%20if%20any%2C%20from%20Form%202210%2C%20line%206","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":16.34,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":16.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":17.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":17.84,"w":30.307000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%2C%20if%20any%2C%20of%20estimated%20tax%20payments%20you%20made.","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":60.148,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":19.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":19.34,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2011%20and%2012","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":19.34,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":19.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":20.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":20.903,"w":14.074000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20underpayment%20for%20year.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.646,"y":20.903,"w":19.669000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2013%20from%20line%2010.%20If%20zero%20or%20less%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.628,"y":20.903,"w":2.1109999999999998,"clr":-1,"A":"left","R":[{"T":"stop","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.893,"y":20.903,"w":3.6310000000000002,"clr":-1,"A":"left","R":[{"T":"%3B%20you%20do","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":72.107,"y":20.903,"w":3.87,"clr":-1,"A":"left","R":[{"T":"not%20owe%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.657,"y":21.59,"w":4.353,"clr":-1,"A":"left","R":[{"T":"a%20penalty.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.39,"y":21.59,"w":27.387000000000015,"clr":-1,"A":"left","R":[{"T":"%20Do%20not%20file%20Form%202210%20unless%20you%20checked%20box%20E%20in%20Part%20II","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.57,"y":21.59,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":21.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":23.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":23.09,"w":11.413000000000007,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2014%20by%20.01995","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":23.09,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":23.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":24.571,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":24.59,"w":15.875000000000005,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20the%20amount%20on%20line%2014%20was%20paid%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.209,"y":24.59,"w":4.982000000000001,"clr":-1,"A":"left","R":[{"T":"on%20or%20after","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.915,"y":24.59,"w":8.448000000000002,"clr":-1,"A":"left","R":[{"T":"%204%2F15%2F14%2C%20enter%20-0-.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":25.403,"w":15.875000000000005,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20the%20amount%20on%20line%2014%20was%20paid%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.209,"y":25.403,"w":3.0919999999999996,"clr":-1,"A":"left","R":[{"T":"before","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.992,"y":25.403,"w":23.952000000000005,"clr":-1,"A":"left","R":[{"T":"%204%2F15%2F14%2C%20make%20the%20following%20computation%20to%20find%20the%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":26.09,"w":12.005000000000004,"clr":-1,"A":"left","R":[{"T":"amount%20to%20enter%20on%20line%2016.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.23,"y":26.903,"w":5.188000000000001,"clr":-1,"A":"left","R":[{"T":"Amount%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.764,"y":27.59,"w":2.927,"clr":-1,"A":"left","R":[{"T":"line%2014","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.369,"y":27.59,"w":0.6,"clr":-1,"A":"left","R":[{"T":"%C3%97","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.485,"y":26.903,"w":9.651000000000002,"clr":-1,"A":"left","R":[{"T":"Number%20of%20days%20paid%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.633,"y":27.59,"w":6.594,"clr":-1,"A":"left","R":[{"T":"before%204%2F15%2F14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.17,"y":27.59,"w":0.6,"clr":-1,"A":"left","R":[{"T":"%C3%97","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.49,"y":27.59,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":".00008%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":27.59,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":27.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.215,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":29.215,"w":4.093,"clr":-1,"A":"left","R":[{"T":"Penalty.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.983,"y":29.215,"w":34.401,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2016%20from%20line%2015.%20Enter%20the%20result%20here%20and%20on%20Form%201040%2C%20line%2077%3B","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":29.903,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.693,"y":29.903,"w":39.14599999999999,"clr":-1,"A":"left","R":[{"T":"1040A%2C%20line%2046%3B%20Form%201040NR%2C%20line%2074%3B%20Form%201040NR-EZ%2C%20line%2026%3B%20or%20Form%201041%2C%20line%2026.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":30.601,"w":27.035000000000014,"clr":-1,"A":"left","R":[{"T":"Do%20not%20file%20Form%202210%20unless%20you%20checked%20a%20box%20in%20Part%20II","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":30.601,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.477,"y":30.507,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.948,"y":30.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.154,"y":31.322000000000003,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":31.322000000000003,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2210","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":31.322000000000003,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":1129,"AM":1024,"x":17.381,"y":1.9,"w":54.435,"h":0.862,"TU":"Name(s) shown on tax return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":1130,"AM":1024,"x":72.048,"y":1.902,"w":22.11,"h":0.907,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BALFOR","EN":0},"TI":1131,"AM":0,"x":83.098,"y":14.704,"w":12.024,"h":1.031,"TU":"Line 10. Enter the amount from Form 2210, line 19."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WHTAX2","EN":0},"TI":1132,"AM":1024,"x":63.298,"y":16.166,"w":12.024,"h":1.069,"TU":"11"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESPAID","EN":0},"TI":1133,"AM":0,"x":63.362,"y":17.82,"w":12.024,"h":0.938,"TU":"Line 12. Enter the total amount, if any, of estimated tax payments you made."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXPAID","EN":0},"TI":1134,"AM":1024,"x":83.16,"y":19.158,"w":11.901,"h":1.077,"TU":"13"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNDERPAY","EN":0},"TI":1135,"AM":1024,"x":83.119,"y":21.422,"w":11.983,"h":1.063,"TU":"14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":1136,"AM":1024,"x":83.098,"y":22.977,"w":12.024,"h":1.008,"TU":"15"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":1137,"AM":0,"x":83.16,"y":27.309,"w":11.901,"h":1.176,"TU":"Line 16. If the amount on line 14 was paid on or after 4/15/14, enter zero. If the amount on line 14 was paid before 4/15/14, make the following computation to find the amount to enter on line 16. Amount on line 14 times number of days paid before 4/15/14 times .00008."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PENALTY1","EN":0},"TI":1138,"AM":1024,"x":83.16,"y":30.263,"w":11.901,"h":1.207,"TU":"17"}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":85.474},{"oc":"#221f1f","x":91.534,"y":3.001,"w":1.5,"l":7.511},{"oc":"#221f1f","x":6.147,"y":3.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.334,"y":3.751,"w":0.75,"l":86.711},{"oc":"#221f1f","x":46.984,"y":3.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":4.501,"w":0.75,"l":49.586},{"oc":"#221f1f","x":6.147,"y":6.001,"w":0.75,"l":40.923},{"oc":"#221f1f","x":46.984,"y":6.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":6.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":6.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":6.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":6.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":9.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":9.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":9.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":9.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":9.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":13.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":16.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":17.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.502,"y":17.251,"w":0.75,"l":12.375},{"oc":"#221f1f","x":49.502,"y":16.501,"w":0.75,"l":12.375},{"oc":"#221f1f","x":61.834,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":18.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.502,"y":18.751,"w":0.75,"l":12.375},{"oc":"#221f1f","x":49.502,"y":17.251,"w":0.75,"l":12.375},{"oc":"#221f1f","x":61.834,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":21.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":22.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.502,"y":22.501,"w":0.75,"l":12.375},{"oc":"#221f1f","x":49.502,"y":21.001,"w":0.75,"l":12.375},{"oc":"#221f1f","x":61.834,"y":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":24.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":27.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":27.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":27.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":27.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":27.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":6.147,"y":27.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":28.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":31.501,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":49.502,"y":3.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":3.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":4.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":4.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":4.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":4.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":4.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":4.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":5.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":47.027,"y":5.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":49.502,"y":5.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.877,"y":5.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":74.252,"y":5.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":86.627,"y":5.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":49.502,"y":8.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":47.027,"y":8.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":49.502,"y":8.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":61.877,"y":8.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":74.252,"y":8.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":86.627,"y":8.985,"w":0.75,"l":4.531},{"oc":"#221f1f","x":49.502,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":13.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":14.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":14.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":14.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":14.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":14.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":14.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":14.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":16.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":16.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":16.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":49.502,"y":16.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":61.877,"y":16.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":16.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":16.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":17.251,"w":0.75,"l":1.5},{"oc":"#221f1f","x":49.502,"y":17.251,"w":0.75,"l":1.5},{"oc":"#221f1f","x":61.877,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":17.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":18.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":47.027,"y":18.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":18.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":18.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":18.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":18.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":20.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":20.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":21.001,"w":0.75,"l":1.5},{"oc":"#221f1f","x":49.502,"y":21.001,"w":0.75,"l":1.5},{"oc":"#221f1f","x":61.877,"y":20.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":20.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":20.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":22.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":47.027,"y":22.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":22.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":22.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":22.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":22.486,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":24.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":47.027,"y":24.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":24.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":24.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":24.736,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":24.736,"w":0.75,"l":2.289},{"oc":"#221f1f","x":86.627,"y":28.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":82.915,"y":28.485,"w":0.75,"l":3.031}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":3.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":47.027,"y":3.751,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":47.027,"y":4.501,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":49.502,"y":13.501,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":49.502,"y":15.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":49.502,"y":16.501,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":49.502,"y":17.251,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":49.502,"y":21.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":86.627,"y":21.001,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":86.627,"y":24.751,"w":12.375,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%202210%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.7,"y":2.01,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.797,"y":2.01,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.296,"y":2.822,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":2.822,"w":8.203000000000001,"clr":-1,"A":"left","R":[{"T":"Regular%20Method%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":27.773,"y":2.822,"w":29.65300000000001,"clr":-1,"A":"left","R":[{"T":"(See%20the%20instructions%20if%20you%20are%20filing%20Form%201040NR%20or%201040NR-EZ.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":65.901,"y":3.51,"w":9.427000000000001,"clr":-1,"A":"left","R":[{"T":"Payment%20Due%20Dates","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.417,"y":4.208,"w":18.445,"clr":-1,"A":"left","R":[{"T":"Section%20A%E2%80%94Figure%20Your%20Underpayment","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":54.538,"y":4.289,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.774,"y":4.964,"w":3.4460000000000006,"clr":-1,"A":"left","R":[{"T":"4%2F15%2F13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.884,"y":4.289,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.149,"y":4.964,"w":3.4460000000000006,"clr":-1,"A":"left","R":[{"T":"6%2F15%2F13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.288,"y":4.289,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.524,"y":4.964,"w":3.4460000000000006,"clr":-1,"A":"left","R":[{"T":"9%2F15%2F13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":91.634,"y":4.289,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.899,"y":4.964,"w":3.4460000000000006,"clr":-1,"A":"left","R":[{"T":"1%2F15%2F14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":6.027,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":6.027,"w":10.958000000000002,"clr":-1,"A":"left","R":[{"T":"Required%20installments.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.042,"y":6.027,"w":11.519000000000004,"clr":-1,"A":"left","R":[{"T":"If%20box%20C%20in%20Part%20II%20applies%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.655,"y":6.714,"w":2.278,"clr":-1,"A":"left","R":[{"T":"enter","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.373,"y":6.714,"w":17.599,"clr":-1,"A":"left","R":[{"T":"the%20amounts%20from%20Schedule%20AI%2C%20line%2025.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.658,"y":7.401999999999999,"w":7.352000000000002,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.764,"y":7.401999999999999,"w":15.099000000000006,"clr":-1,"A":"left","R":[{"T":"25%25%20(.25)%20of%20line%209%2C%20Form%202210%2C%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.658,"y":8.089,"w":5.742999999999999,"clr":-1,"A":"left","R":[{"T":"each%20column","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.382,"y":8.089,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":8.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":9.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":9.153,"w":20.078,"clr":-1,"A":"left","R":[{"T":"Estimated%20tax%20paid%20and%20tax%20withheld%20(see%20the%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":9.652,"y":9.84,"w":25.099000000000007,"clr":-1,"A":"left","R":[{"T":"instructions).%20For%20column%20(a)%20only%2C%20also%20enter%20the%20amount%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":9.652,"y":10.527,"w":23.118000000000006,"clr":-1,"A":"left","R":[{"T":"from%20line%2019%20on%20line%2023.%20If%20line%2019%20is%20equal%20to%20or%20more%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":9.652,"y":11.215,"w":24.396,"clr":-1,"A":"left","R":[{"T":"than%20line%2018%20for%20all%20payment%20periods%2C%20stop%20here%3B%20you%20do%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":9.648,"y":11.902,"w":8.501000000000001,"clr":-1,"A":"left","R":[{"T":"not%20owe%20a%20penalty.%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":22.464,"y":11.902,"w":7.663999999999999,"clr":-1,"A":"left","R":[{"T":"Do%20not%20file%20Form","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":34.469,"y":11.902,"w":7.872999999999999,"clr":-1,"A":"left","R":[{"T":"2210%20unless%20you%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":9.645,"y":12.59,"w":11.219999999999999,"clr":-1,"A":"left","R":[{"T":"checked%20a%20box%20in%20Part%20II","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":26.557,"y":12.59,"w":14.179999999999996,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":47.155,"y":12.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":13.403,"w":21.355000000000008,"clr":-1,"A":"left","R":[{"T":"Complete%20lines%2020%20through%2026%20of%20one%20column%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.649,"y":14.09,"w":20.169000000000004,"clr":-1,"A":"left","R":[{"T":"before%20going%20to%20line%2020%20of%20the%20next%20column.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":14.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":14.903,"w":23.582000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%2C%20if%20any%2C%20from%20line%2026%20in%20the%20previous%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":15.59,"w":3.298,"clr":-1,"A":"left","R":[{"T":"column","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.254,"y":15.59,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":15.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":16.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":16.34,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2019%20and%2020","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":16.34,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":16.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":17.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":17.153,"w":23.269000000000005,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20lines%2024%20and%2025%20in%20the%20previous%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":9.652,"y":17.84,"w":3.854,"clr":-1,"A":"left","R":[{"T":"column%20.","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":18.313,"y":17.84,"w":19.6546,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":47.155,"y":17.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":18.715,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":18.715,"w":22.225,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2022%20from%20line%2021.%20If%20zero%20or%20less%2C%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.658,"y":19.403,"w":23.30400000000001,"clr":-1,"A":"left","R":[{"T":"-0-.%20%20For%20column%20(a)%20only%2C%20enter%20the%20amount%20from%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.663,"y":20.09,"w":25.88299999999999,"clr":-1,"A":"left","R":[{"T":"19.................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":20.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":20.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":20.903,"w":20.504000000000005,"clr":-1,"A":"left","R":[{"T":"If%20line%2023%20is%20zero%2C%20subtract%20line%2021%20from%20line%2022.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.657,"y":21.59,"w":8.964000000000002,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.507,"y":21.59,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":21.591,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":22.466,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":22.466,"w":7.593,"clr":-1,"A":"left","R":[{"T":"Underpayment.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.585,"y":22.466,"w":14.652000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%2018%20is%20equal%20to%20or%20more%20than","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":23.153,"w":23.37800000000001,"clr":-1,"A":"left","R":[{"T":"line%2023%2C%20subtract%20line%2023%20from%20line%2018.%20Then%20go%20to%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.651,"y":23.851,"w":20.876000000000005,"clr":-1,"A":"left","R":[{"T":"20%20of%20the%20next%20column.%20Otherwise%2C%20go%20to%20line%2026","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.064,"y":23.851,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.438,"y":23.758,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":47.155,"y":23.841,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":24.716,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":24.653,"w":19.915000000000006,"clr":-1,"A":"left","R":[{"T":"Overpayment.%20If%20line%2023%20is%20more%20than%20line%2018%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":25.34,"w":22.711000000000006,"clr":-1,"A":"left","R":[{"T":"subtract%20line%20%2018%20from%20line%2023.%20Then%20go%20to%20line%2020%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":26.027,"w":7.465999999999999,"clr":-1,"A":"left","R":[{"T":"the%20next%20column%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":26.027,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":26.091,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":26.885,"w":14.779000000000002,"clr":-1,"A":"left","R":[{"T":"Section%20B%E2%80%94Figure%20the%20Penalty%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":31.341,"y":26.885,"w":35.91399999999999,"clr":-1,"A":"left","R":[{"T":"(Use%20the%20Worksheet%20for%20Form%202210%2C%20Part%20IV%2C%20Section%20B%E2%80%94Figure%20the%20Penalty%20in%20the%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":27.51,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.936,"y":28.528,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":28.527,"w":4.093,"clr":-1,"A":"left","R":[{"T":"Penalty.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.002,"y":28.527,"w":42.37899999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20penalty%20from%20line%2014%20of%20the%20Worksheet%20for%20Form%202210%2C%20Part%20IV%2C%20Section%20B%E2%80%94Figure%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.649,"y":29.214,"w":45.23999999999998,"clr":-1,"A":"left","R":[{"T":"the%20Penalty.%20Also%20include%20this%20amount%20on%20Form%201040%2C%20line%2077%3B%20Form%201040A%2C%20line%2046%3B%20Form%201040NR%2C%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.66,"y":29.902,"w":19.860000000000007,"clr":-1,"A":"left","R":[{"T":"74%3B%20Form%201040NR-EZ%2C%20line%2026%3B%20or%20Form%201041%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.811,"y":29.902,"w":3.205,"clr":-1,"A":"left","R":[{"T":"line%2026.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.769,"y":29.902,"w":23.334000000000014,"clr":-1,"A":"left","R":[{"T":"%20Do%20not%20file%20Form%202210%20unless%20you%20checked%20a%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.66,"y":30.6,"w":4.257,"clr":-1,"A":"left","R":[{"T":"in%20Part%20II%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.26,"y":30.6,"w":41.32299999999997,"clr":-1,"A":"left","R":[{"T":"...............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.382,"y":30.507,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.661,"y":30.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.154,"y":31.322000000000003,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":31.322000000000003,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2210","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":31.322000000000003,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":97.525,"y":29.887,"w":53.36399999999999,"clr":0,"A":"left","R":[{"T":"Schedule%20","S":-1,"TS":[0,87,0,0]}]},{"x":161.7,"y":29.887,"w":11.34,"clr":0,"A":"left","R":[{"T":"AI","S":-1,"TS":[0,87,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM3","EN":0},"TI":1139,"AM":1024,"x":16.377,"y":1.949,"w":54.435,"h":0.862,"TU":"Name(s) shown on tax return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN3","EN":0},"TI":1140,"AM":1024,"x":71.245,"y":1.926,"w":22.11,"h":0.907,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A159_L22_1_","EN":0},"TI":1141,"AM":1024,"x":49.748,"y":6.173,"w":11.901,"h":2.812},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A159_L22_2_","EN":0},"TI":1142,"AM":1024,"x":62.123,"y":6.173,"w":11.901,"h":2.812},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A159_L22_3_","EN":0},"TI":1143,"AM":1024,"x":74.498,"y":6.173,"w":11.901,"h":2.812},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A159_L22_4_","EN":0},"TI":1144,"AM":1024,"x":86.873,"y":6.173,"w":12.004,"h":2.812},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L23_1_","EN":0},"TI":1145,"AM":0,"x":49.521,"y":11.249,"w":12.327,"h":2.236,"TU":"Line 19 (a). Estimated tax paid and tax withheld (see the instructions). For column (a) only, also enter the amount from line 19 on line 23. If line 19 is equal to or more than line 18 for all payment periods, stop here; you do not owe a penalty. Do not file Form 2210 unless you checked a box in Part II."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L23_2_","EN":0},"TI":1146,"AM":0,"x":62.091,"y":11.221,"w":12.327,"h":2.236,"TU":"Line 19 (b). Estimated tax paid and tax withheld (see the instructions). For column (a) only, also enter the amount from line 19 on line 23. If line 19 is equal to or more than line 18 for all payment periods, stop here; you do not owe a penalty. Do not file Form 2210 unless you checked a box in Part II."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L23_3_","EN":0},"TI":1147,"AM":0,"x":74.461,"y":11.202,"w":12.007,"h":2.236,"TU":"Line 19 (c). Estimated tax paid and tax withheld (see the instructions). For column (a) only, also enter the amount from line 19 on line 23. If line 19 is equal to or more than line 18 for all payment periods, stop here; you do not owe a penalty. Do not file Form 2210 unless you checked a box in Part II."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L23_4_","EN":0},"TI":1148,"AM":0,"x":86.739,"y":11.121,"w":12.138,"h":2.364,"TU":"Line 19 (d). Estimated tax paid and tax withheld (see the instructions). For column (a) only, also enter the amount from line 19 on line 23. If line 19 is equal to or more than line 18 for all payment periods, stop here; you do not owe a penalty. Do not file Form 2210 unless you checked a box in Part II."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A161_L24_1_","EN":0},"TI":1149,"AM":1024,"x":62.123,"y":13.673,"w":11.901,"h":2.812},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A161_L24_2_","EN":0},"TI":1150,"AM":1024,"x":74.498,"y":13.673,"w":11.901,"h":2.812},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A161_L24_3_","EN":0},"TI":1151,"AM":1024,"x":86.873,"y":13.673,"w":12.004,"h":2.812},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A162_L25_1_","EN":0},"TI":1152,"AM":1024,"x":61.978,"y":16.538,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A162_L25_2_","EN":0},"TI":1153,"AM":1024,"x":74.353,"y":16.538,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A162_L25_3_","EN":0},"TI":1154,"AM":1024,"x":86.728,"y":16.538,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A163_L26_1_","EN":0},"TI":1155,"AM":1024,"x":62.061,"y":17.401,"w":12.024,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A163_L26_2_","EN":0},"TI":1156,"AM":1024,"x":74.436,"y":17.401,"w":12.024,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A163_L26_3_","EN":0},"TI":1157,"AM":1024,"x":86.811,"y":17.401,"w":12.128,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A164_L27_1_","EN":0},"TI":1158,"AM":1024,"x":49.706,"y":19.058,"w":11.983,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A164_L27_2_","EN":0},"TI":1159,"AM":1024,"x":62.081,"y":19.058,"w":11.983,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A164_L27_3_","EN":0},"TI":1160,"AM":1024,"x":74.456,"y":19.058,"w":11.983,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A164_L27_4_","EN":0},"TI":1161,"AM":1024,"x":86.831,"y":19.058,"w":12.086,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L28_1_","EN":0},"TI":1162,"AM":1024,"x":62.061,"y":21.151,"w":12.024,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L28_2_","EN":0},"TI":1163,"AM":1024,"x":74.436,"y":21.151,"w":12.024,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A166_L29_1_","EN":0},"TI":1164,"AM":1024,"x":49.706,"y":22.808,"w":11.983,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A166_L29_2_","EN":0},"TI":1165,"AM":1024,"x":62.081,"y":22.808,"w":11.983,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A166_L29_3_","EN":0},"TI":1166,"AM":1024,"x":74.456,"y":22.808,"w":11.983,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A166_L29_4_","EN":0},"TI":1167,"AM":1024,"x":86.831,"y":22.808,"w":12.086,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A167_L30_1_","EN":0},"TI":1168,"AM":1024,"x":49.706,"y":25.058,"w":11.983,"h":1.814},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A167_L30_2_","EN":0},"TI":1169,"AM":1024,"x":62.081,"y":25.058,"w":11.983,"h":1.814},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A167_L30_3_","EN":0},"TI":1170,"AM":1024,"x":74.456,"y":25.058,"w":11.983,"h":1.814},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PENALTY2","EN":0},"TI":1171,"AM":0,"x":86.873,"y":29.792,"w":12.004,"h":1.678,"TU":"Line 27. Penalty. Enter the total penalty from line 14 of the Worksheet for Form 2210, Part IV, Section B - Figure the Penalty. Also include this amount on Form 1040, line 77; Form 1040A, line 46. . Do not file Form 2210 unless you checked a box in Part II."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text1","EN":0},"TI":1172,"AM":1024,"x":58.938,"y":31.676,"w":13.576,"h":0.883,"V":"Schedule AI"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2210AI"}},"id":{"Id":"Add_F2210AI","EN":0},"TI":1173,"AM":1024,"x":74.222,"y":31.598,"w":6.129,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Underpayment of Estimated Tax by Individuals, Estates, and Trusts","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20140107142637-08'00'","ModDate":"D:20140114092951-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":5.251,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":7.635,"y":5.251,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.57,"y":3.001,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.57,"y":5.251,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.235,"y":6.751,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":27.885,"y":6.751,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":2.701,"y":9.438,"w":0.75,"l":16.183,"oc":"#221f1f"},{"x":2.701,"y":8.251,"w":0.75,"l":16.183,"oc":"#221f1f"},{"x":2.648,"y":12.081,"w":0.75,"l":16.22,"oc":"#221f1f"},{"x":2.648,"y":10.394,"w":0.75,"l":16.22,"oc":"#221f1f"},{"x":2.648,"y":14.312,"w":0.75,"l":16.184,"oc":"#221f1f"},{"x":2.648,"y":13.125,"w":0.75,"l":16.184,"oc":"#221f1f"},{"x":2.648,"y":20.469,"w":0.75,"l":14.462,"oc":"#221f1f"},{"x":2.648,"y":16.219,"w":0.75,"l":14.462,"oc":"#221f1f"},{"x":18.832,"y":8.986,"w":0.75,"l":2.057,"oc":"#221f1f"},{"x":21.225,"y":9.438,"w":0.75,"l":14.354,"oc":"#221f1f"},{"x":21.225,"y":8.251,"w":0.75,"l":14.354,"oc":"#221f1f"},{"x":18.832,"y":11.127,"w":0.75,"l":2.02,"oc":"#221f1f"},{"x":21.225,"y":12.322,"w":0.75,"l":14.326,"oc":"#221f1f"},{"x":21.225,"y":10.072,"w":0.75,"l":14.326,"oc":"#221f1f"},{"x":18.832,"y":13.821,"w":0.75,"l":2.091,"oc":"#221f1f"},{"x":21.151,"y":14.251,"w":0.75,"l":14.4,"oc":"#221f1f"},{"x":21.151,"y":12.751,"w":0.75,"l":14.4,"oc":"#221f1f"},{"x":19.351,"y":20.199,"w":0.75,"l":16.238,"oc":"#221f1f"},{"x":19.351,"y":16.401,"w":0.75,"l":16.238,"oc":"#221f1f"},{"x":24.735,"y":15.178,"w":0.75,"l":2.375,"oc":"#221f1f"},{"x":27.477,"y":15.796,"w":0.75,"l":8.036,"oc":"#221f1f"},{"x":27.477,"y":14.671,"w":0.75,"l":8.036,"oc":"#221f1f"},{"x":2.235,"y":21.001,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":21.751,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":4.485,"y":21.001,"w":1.125,"l":31.532,"oc":"#221f1f"},{"x":4.485,"y":21.751,"w":0.75,"l":31.532,"oc":"#221f1f"},{"x":28.785,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":22.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":24.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":24.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":24.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":24.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":24.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":24.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":26.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":26.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":27.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":27.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":27.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":26.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":27.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":27.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":27.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":28.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":29.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":29.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":29.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":30.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":35.251,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":36.001,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":4.485,"y":35.251,"w":1.125,"l":31.532,"oc":"#221f1f"},{"x":4.485,"y":36.001,"w":0.75,"l":31.532,"oc":"#221f1f"},{"x":2.235,"y":43.501,"w":1.5,"l":15.331,"oc":"#221f1f"},{"x":17.535,"y":43.501,"w":1.5,"l":14.431,"oc":"#221f1f"},{"x":31.935,"y":43.501,"w":1.5,"l":4.081,"oc":"#221f1f"}],"VLines":[{"x":7.651,"y":2.235,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":7.651,"y":3.735,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":30.601,"y":2.235,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":2.985,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":3.735,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":27.901,"y":5.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.884,"y":8.251,"w":0.75,"l":1.187,"oc":"#221f1f"},{"x":2.701,"y":8.251,"w":0.75,"l":1.187,"oc":"#221f1f"},{"x":6.386,"y":9.446,"w":0.75,"l":0.837,"oc":"#221f1f"},{"x":18.868,"y":10.394,"w":0.75,"l":1.687,"oc":"#221f1f"},{"x":2.648,"y":10.394,"w":0.75,"l":1.687,"oc":"#221f1f"},{"x":6.386,"y":12.09,"w":0.75,"l":0.837,"oc":"#221f1f"},{"x":18.831,"y":13.125,"w":0.75,"l":1.187,"oc":"#221f1f"},{"x":2.648,"y":13.125,"w":0.75,"l":1.187,"oc":"#221f1f"},{"x":6.39,"y":14.29,"w":0.75,"l":1.524,"oc":"#221f1f"},{"x":17.109,"y":16.219,"w":0.75,"l":4.25,"oc":"#221f1f"},{"x":2.648,"y":16.219,"w":0.75,"l":4.25,"oc":"#221f1f"},{"x":35.579,"y":8.251,"w":0.75,"l":1.187,"oc":"#221f1f"},{"x":21.225,"y":8.251,"w":0.75,"l":1.187,"oc":"#221f1f"},{"x":35.552,"y":10.072,"w":0.75,"l":2.25,"oc":"#221f1f"},{"x":21.225,"y":10.072,"w":0.75,"l":2.25,"oc":"#221f1f"},{"x":35.551,"y":12.751,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":21.151,"y":12.751,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":21.671,"y":14.31,"w":0.75,"l":1.761,"oc":"#221f1f"},{"x":35.588,"y":16.401,"w":0.75,"l":3.798,"oc":"#221f1f"},{"x":19.351,"y":16.401,"w":0.75,"l":3.798,"oc":"#221f1f"},{"x":24.751,"y":14.306,"w":0.75,"l":0.888,"oc":"#221f1f"},{"x":35.513,"y":14.671,"w":0.75,"l":1.125,"oc":"#221f1f"},{"x":27.477,"y":14.671,"w":0.75,"l":1.125,"oc":"#221f1f"},{"x":30.151,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":22.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":22.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":24.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":24.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":24.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":25.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":26.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":26.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":26.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":27.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":27.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":27.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":28.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":28.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":28.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":29.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":29.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":29.236,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":21.001,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.251,"y":35.251,"w":2.25,"h":0.75,"oc":"#221f1f"}],"Texts":[{"x":2.001,"y":2.635,"w":3.168,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":3.387,"y":2.635,"w":2.34,"oc":"#221f1f","sw":0.33853125,"A":"left","R":[{"T":"2210 ","S":-1,"TS":[0,27,0,0]}]},{"x":2.001,"y":3.776,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":2.001,"y":4.276,"w":11.371,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":12.996,"y":2.016,"w":23.18,"oc":"#221f1f","sw":0.390625,"A":"left","R":[{"T":"Underpayment of Estimated Tax by ","S":-1,"TS":[2,15,0,0]}]},{"x":13.588,"y":2.828,"w":14.1,"oc":"#221f1f","sw":0.390625,"A":"left","R":[{"T":"Individuals, Estates, and Trusts","S":-1,"TS":[2,15,0,0]}]},{"x":8.33,"y":3.5140000000000002,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":8.705,"y":3.5460000000000003,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":1,"TS":[0,8,0,0]}]},{"x":8.792,"y":3.6079999999999997,"w":30.237,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Information about Form 2210 and its separate instructions is at ","S":-1,"TS":[0,11,0,0]}]},{"x":23.91,"y":3.6079999999999997,"w":10.745,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"www.irs.gov/form2210","S":-1,"TS":[0,11,0,0]}]},{"x":29.283,"y":3.6079999999999997,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":11.683,"y":4.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":11.787,"y":4.264,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":12.162,"y":4.264,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":1,"TS":[0,8,0,0]}]},{"x":12.249,"y":4.295,"w":27.64,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attach to Form 1040, 1040A, 1040NR, 1040NR-EZ, or 1041.","S":-1,"TS":[0,11,0,0]}]},{"x":31.02,"y":1.9729999999999999,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0140","S":2,"TS":[0,10,0,0]}]},{"x":31.426,"y":3.268,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":33.006,"y":3.268,"w":1.336,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"x":31.101,"y":3.8129999999999997,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.101,"y":4.322,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":34.002,"y":4.322,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"06","S":-1,"TS":[0,13,0,0]}]},{"x":34.697,"y":4.322,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":4.988,"w":12.853,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name(s) shown on tax return","S":2,"TS":[0,10,0,0]}]},{"x":28.026,"y":5.001,"w":8.941,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Identifying number","S":2,"TS":[0,10,0,0]}]},{"x":12.102,"y":6.946,"w":15.484,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do You Have To File Form 2210?","S":-1,"TS":[0,17,0,0]}]},{"x":2.763,"y":8.238,"w":27.175,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete lines 1 through 7 below. Is line 7 less than $1,000?","S":3,"TS":[0,12,0,0]}]},{"x":6.511,"y":9.301,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":5.952,"y":9.538,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d","S":51,"TS":[0,9,0,0]}]},{"x":2.71,"y":10.276,"w":27.396,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete lines 8 and 9 below. Is line 6 equal to or more than ","S":3,"TS":[0,12,0,0]}]},{"x":2.71,"y":10.951,"w":2.927,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 9?","S":3,"TS":[0,12,0,0]}]},{"x":6.511,"y":11.945,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":5.952,"y":12.288,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d","S":51,"TS":[0,9,0,0]}]},{"x":2.71,"y":13.094,"w":27.355,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You may owe a penalty. Does any box in Part II below apply?","S":3,"TS":[0,12,0,0]}]},{"x":6.515,"y":14.145,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":5.952,"y":15.288,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d","S":51,"TS":[0,9,0,0]}]},{"x":2.71,"y":16.029,"w":10.722,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not file Form 2210. ","S":3,"TS":[0,12,0,0]}]},{"x":8.952,"y":16.029,"w":13.409,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You are not required to figure ","S":3,"TS":[0,12,0,0]}]},{"x":2.712,"y":16.704,"w":22.873,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"your penalty because the IRS will figure it and send","S":3,"TS":[0,12,0,0]}]},{"x":16.55,"y":16.704,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.714,"y":17.379,"w":24.042,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you a bill for any unpaid amount. If you want to figure ","S":3,"TS":[0,12,0,0]}]},{"x":2.715,"y":18.054,"w":23.651,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"it, you may use Part III or Part IV as a worksheet and ","S":3,"TS":[0,12,0,0]}]},{"x":2.714,"y":18.729,"w":22.229,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"enter your penalty amount on your tax return, but ","S":3,"TS":[0,12,0,0]}]},{"x":15.863,"y":18.729,"w":1.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"do ","S":3,"TS":[0,12,0,0]}]},{"x":2.714,"y":19.404,"w":8.814,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"not file Form 2210.","S":3,"TS":[0,12,0,0]}]},{"x":19.111,"y":7.989000000000001,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"x":20.543,"y":8.347,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":21.288,"y":8.215,"w":10.722,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not file Form 2210. ","S":3,"TS":[0,12,0,0]}]},{"x":27.319,"y":8.215,"w":11.724,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You do not owe a penalty.","S":3,"TS":[0,12,0,0]}]},{"x":19.092,"y":9.81,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"x":20.589,"y":10.472,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":21.288,"y":9.892,"w":12.002,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You do not owe a penalty. ","S":3,"TS":[0,12,0,0]}]},{"x":28.039,"y":9.892,"w":10.166,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not file Form 2210","S":3,"TS":[0,12,0,0]}]},{"x":33.757,"y":9.892,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":21.288,"y":10.567,"w":4.76,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(but if box ","S":3,"TS":[0,12,0,0]}]},{"x":23.965,"y":10.567,"w":0.648,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"E","S":3,"TS":[0,12,0,0]}]},{"x":24.33,"y":10.567,"w":19.579,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" in Part II applies, you must file page 1 of ","S":3,"TS":[0,12,0,0]}]},{"x":21.288,"y":11.242,"w":5.373,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 2210).","S":3,"TS":[0,12,0,0]}]},{"x":19.127,"y":12.656,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"x":20.497,"y":13.16,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":21.213,"y":12.539,"w":2.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You ","S":3,"TS":[0,12,0,0]}]},{"x":22.37,"y":12.539,"w":2.388,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"must","S":3,"TS":[0,12,0,0]}]},{"x":23.713,"y":12.539,"w":11.781,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" file Form 2210. Does box ","S":3,"TS":[0,12,0,0]}]},{"x":30.34,"y":12.539,"w":2.557,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"B, C, ","S":3,"TS":[0,12,0,0]}]},{"x":31.778,"y":12.539,"w":1.185,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or ","S":3,"TS":[0,12,0,0]}]},{"x":32.445,"y":12.539,"w":1.019,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"D ","S":3,"TS":[0,12,0,0]}]},{"x":33.018,"y":12.539,"w":3.963,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"in Part II ","S":3,"TS":[0,12,0,0]}]},{"x":21.213,"y":13.214,"w":3.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"apply?","S":3,"TS":[0,12,0,0]}]},{"x":21.608,"y":14.103,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":21.251,"y":15.564,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d","S":51,"TS":[0,9,0,0]}]},{"x":19.413,"y":16.325,"w":3.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You are ","S":3,"TS":[0,12,0,0]}]},{"x":21.518,"y":16.325,"w":1.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"x":22.393,"y":16.325,"w":21.633,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" required to figure your penalty because the IRS ","S":3,"TS":[0,12,0,0]}]},{"x":19.413,"y":17,"w":27.376,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"will figure it and send you a bill for any unpaid amount. If you ","S":3,"TS":[0,12,0,0]}]},{"x":19.413,"y":17.675,"w":23.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"want to figure it, you may use Part III or Part IV as a ","S":3,"TS":[0,12,0,0]}]},{"x":19.413,"y":18.35,"w":27.358,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"worksheet and enter your penalty amount on your tax return, ","S":3,"TS":[0,12,0,0]}]},{"x":19.413,"y":19.025,"w":1.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"but ","S":3,"TS":[0,12,0,0]}]},{"x":20.393,"y":19.025,"w":8.386,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"file only page 1 of","S":3,"TS":[0,12,0,0]}]},{"x":25.11,"y":19.025,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":25.267,"y":19.025,"w":5.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 2210.","S":3,"TS":[0,12,0,0]}]},{"x":24.688,"y":14.12,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"x":26.868,"y":14.504,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":27.54,"y":14.606,"w":13.133,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You must figure your penalty.","S":3,"TS":[0,12,0,0]}]},{"x":2.327,"y":20.822,"w":2.833,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I ","S":-1,"TS":[0,13,0,0]}]},{"x":4.813,"y":20.822,"w":12.369,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Required Annual Payment","S":-1,"TS":[0,13,0,0]}]},{"x":2.588,"y":21.59,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":21.59,"w":43.4,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter your 2013 tax after credits from Form 1040, line 55 (see instructions if not filing Form 1040) ","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":21.59,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":22.34,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":22.381,"w":43.823,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other taxes, including self-employment tax and, if applicable, Additional Medicare Tax and/or Net ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":23.069,"w":18.263,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Investment Income Tax (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":14.001,"y":23.069,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":23.09,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":23.84,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":23.84,"w":16.539,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Refundable credits (see instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":13.251,"y":23.84,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":23.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":30.005,"y":23.751,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"x":35.553,"y":23.751,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":24.653,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":25.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":24.653,"w":28.417,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Current year tax. Combine lines 1, 2, and 3. If less than $1,000, ","S":3,"TS":[0,12,0,0]}]},{"x":19.336,"y":24.653,"w":2.667,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"stop; ","S":3,"TS":[0,12,0,0]}]},{"x":20.836,"y":24.653,"w":12.132,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you do not owe a penalty. ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":25.34,"w":3.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not ","S":3,"TS":[0,12,0,0]}]},{"x":5.3,"y":25.34,"w":6.391,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"file Form 2210","S":3,"TS":[0,12,0,0]}]},{"x":9.501,"y":25.34,"w":33.325,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":25.34,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":26.09,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":26.09,"w":12.375,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 4 by 90% (.90) ","S":3,"TS":[0,12,0,0]}]},{"x":11.001,"y":26.09,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":26.09,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":26.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":26.84,"w":8.835,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Withholding taxes. ","S":3,"TS":[0,12,0,0]}]},{"x":8.32,"y":26.84,"w":3.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not ","S":3,"TS":[0,12,0,0]}]},{"x":10.269,"y":26.84,"w":22.061,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"include estimated tax payments (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":23.001,"y":26.84,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":26.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":27.59,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":27.59,"w":20.748,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 6 from line 4. If less than $1,000, ","S":-1,"TS":[0,11.55,0,0]}]},{"x":14.438,"y":27.59,"w":2.111,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"stop","S":-1,"TS":[0,11.55,0,0]}]},{"x":15.566,"y":27.59,"w":12.41,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"; you do not owe a penalty. ","S":-1,"TS":[0,11.55,0,0]}]},{"x":22.198,"y":27.59,"w":3.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not ","S":-1,"TS":[0,11.55,0,0]}]},{"x":24.049,"y":27.59,"w":6.669,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"file Form 2210 ","S":-1,"TS":[0,11.55,0,0]}]},{"x":29.069,"y":27.59,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":28.34,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":28.34,"w":35.027,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Maximum required annual payment based on prior year’s tax (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":23.75,"y":28.34,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":28.34,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":29.09,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":29.09,"w":13.036,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Required annual payment. ","S":3,"TS":[0,12,0,0]}]},{"x":10.684,"y":29.09,"w":4.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":13.111,"y":29.09,"w":3.774,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"smaller ","S":3,"TS":[0,12,0,0]}]},{"x":15.234,"y":29.09,"w":7.353,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of line 5 or line 8","S":3,"TS":[0,12,0,0]}]},{"x":20.001,"y":29.09,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":29.09,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":29.84,"w":3.038,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Next: ","S":3,"TS":[0,12,0,0]}]},{"x":5.06,"y":29.84,"w":11.43,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Is line 9 more than line 6?","S":3,"TS":[0,12,0,0]}]},{"x":4.224,"y":30.59,"w":1.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No.","S":3,"TS":[0,12,0,0]}]},{"x":5.141,"y":30.59,"w":2.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" You ","S":3,"TS":[0,12,0,0]}]},{"x":6.453,"y":30.59,"w":3.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"do not","S":3,"TS":[0,12,0,0]}]},{"x":8.172,"y":30.59,"w":7.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" owe a penalty. ","S":3,"TS":[0,12,0,0]}]},{"x":12.141,"y":30.59,"w":3.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not ","S":3,"TS":[0,12,0,0]}]},{"x":14.09,"y":30.59,"w":11.781,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"file Form 2210 unless box ","S":3,"TS":[0,12,0,0]}]},{"x":20.717,"y":30.59,"w":0.648,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"E","S":3,"TS":[0,12,0,0]}]},{"x":21.081,"y":30.59,"w":6.722,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" below applies.","S":3,"TS":[0,12,0,0]}]},{"x":4.224,"y":31.340000000000003,"w":2.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"x":5.38,"y":31.340000000000003,"w":13.022,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" You may owe a penalty, but ","S":3,"TS":[0,12,0,0]}]},{"x":12.705,"y":31.340000000000003,"w":3.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"do not ","S":3,"TS":[0,12,0,0]}]},{"x":14.58,"y":31.340000000000003,"w":28.93,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"file Form 2210 unless one or more boxes in Part II below applies.","S":3,"TS":[0,12,0,0]}]},{"x":4.251,"y":32.09,"w":3.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If box ","S":3,"TS":[0,12,0,0]}]},{"x":6.261,"y":32.09,"w":2.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"B, C,","S":3,"TS":[0,12,0,0]}]},{"x":7.543,"y":32.09,"w":1.463,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" or ","S":3,"TS":[0,12,0,0]}]},{"x":8.366,"y":32.09,"w":0.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"D","S":3,"TS":[0,12,0,0]}]},{"x":8.783,"y":32.09,"w":25.656,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" applies, you must figure your penalty and file Form 2210.","S":3,"TS":[0,12,0,0]}]},{"x":4.251,"y":32.903,"w":3.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If box ","S":3,"TS":[0,12,0,0]}]},{"x":6.302,"y":32.903,"w":0.963,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"A ","S":3,"TS":[0,12,0,0]}]},{"x":6.857,"y":32.903,"w":0.907,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"x":7.367,"y":32.903,"w":0.974,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" E","S":3,"TS":[0,12,0,0]}]},{"x":7.914999999999999,"y":32.903,"w":7.484,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" applies (but not ","S":3,"TS":[0,12,0,0]}]},{"x":12.165,"y":32.903,"w":2.557,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"B, C, ","S":3,"TS":[0,12,0,0]}]},{"x":13.63,"y":32.903,"w":1.185,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or ","S":3,"TS":[0,12,0,0]}]},{"x":14.31,"y":32.903,"w":0.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"D","S":3,"TS":[0,12,0,0]}]},{"x":14.727,"y":32.903,"w":17.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":") file only page 1 of Form 2210. You are ","S":3,"TS":[0,12,0,0]}]},{"x":24.906,"y":32.903,"w":1.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"x":25.795,"y":32.903,"w":17.836,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" required to figure your penalty; the IRS ","S":3,"TS":[0,12,0,0]}]},{"x":4.252,"y":33.59,"w":53.416,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"will figure it and send you a bill for any unpaid amount. If you want to figure your penalty, you may use Part III or IV as a ","S":3,"TS":[0,12,0,0]}]},{"x":4.252,"y":34.278,"w":25.153,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"worksheet and enter your penalty on your tax return, but","S":3,"TS":[0,12,0,0]}]},{"x":18.401,"y":34.278,"w":14.221,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" file only page 1 of Form 2210.","S":3,"TS":[0,12,0,0]}]},{"x":2.235,"y":35.073,"w":3.128,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II ","S":-1,"TS":[0,13,0,0]}]},{"x":4.813,"y":35.073,"w":9.164,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Reasons for Filing. ","S":-1,"TS":[0,13,0,0]}]},{"x":10.54,"y":35.073,"w":17.355,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check applicable boxes. If none apply,","S":3,"TS":[0,12,0,0]}]},{"x":20.302,"y":35.073,"w":3.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" do not ","S":3,"TS":[0,12,0,0]}]},{"x":22.334,"y":35.073,"w":6.669,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"file Form 2210.","S":3,"TS":[0,12,0,0]}]},{"x":2.515,"y":35.903,"w":0.685,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"A","S":3,"TS":[0,12,0,0]}]},{"x":4.224,"y":35.903,"w":6.242,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You request a","S":3,"TS":[0,12,0,0]}]},{"x":7.747,"y":35.903,"w":3.685,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" waiver ","S":3,"TS":[0,12,0,0]}]},{"x":9.824,"y":35.903,"w":45.957,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions) of your entire penalty. You must check this box and file page 1 of Form 2210, but you","S":3,"TS":[0,12,0,0]}]},{"x":4.222,"y":36.59,"w":17.132,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"are not required to figure your penalty.","S":3,"TS":[0,12,0,0]}]},{"x":2.503,"y":37.403,"w":0.704,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"B","S":3,"TS":[0,12,0,0]}]},{"x":4.224,"y":37.403,"w":6.52,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You request a ","S":3,"TS":[0,12,0,0]}]},{"x":7.898999999999999,"y":37.403,"w":3.129,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"waiver","S":3,"TS":[0,12,0,0]}]},{"x":9.661,"y":37.403,"w":46.305,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (see instructions) of part of your penalty. You must figure your penalty and waiver amount and file Form","S":3,"TS":[0,12,0,0]}]},{"x":4.223,"y":38.09,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2210.","S":3,"TS":[0,12,0,0]}]},{"x":2.483,"y":38.903,"w":0.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" C ","S":3,"TS":[0,12,0,0]}]},{"x":4.224,"y":38.903,"w":45.139,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your income varied during the year and your penalty is reduced or eliminated when figured using the ","S":3,"TS":[0,12,0,0]}]},{"x":30.657,"y":38.903,"w":5.147,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"annualized","S":3,"TS":[0,12,0,0]}]},{"x":33.552,"y":38.903,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":33.77,"y":38.903,"w":3.794,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"income ","S":3,"TS":[0,12,0,0]}]},{"x":4.22,"y":39.59,"w":9.736,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"installment method. ","S":3,"TS":[0,12,0,0]}]},{"x":9.697,"y":39.59,"w":29.509,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You must figure the penalty using Schedule Al and file Form 2210.","S":3,"TS":[0,12,0,0]}]},{"x":2.481,"y":40.403,"w":0.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"D","S":3,"TS":[0,12,0,0]}]},{"x":4.224,"y":40.403,"w":55.414,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your penalty is lower when figured by treating the federal income tax withheld from your income as paid on the dates it was ","S":3,"TS":[0,12,0,0]}]},{"x":4.221,"y":41.09,"w":54.684,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"actually withheld, instead of in equal amounts on the payment due dates. You must figure your penalty and file Form 2210.","S":3,"TS":[0,12,0,0]}]},{"x":2.534,"y":41.84,"w":0.648,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"E","S":3,"TS":[0,12,0,0]}]},{"x":4.224,"y":41.84,"w":53.012,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You filed or are filing a joint return for either 2012 or 2013, but not for both years, and line 8 above is smaller than line 5","S":3,"TS":[0,12,0,0]}]},{"x":4.227,"y":42.528,"w":24.638,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"above. You must file page 1 of Form 2210, but you are ","S":3,"TS":[0,12,0,0]}]},{"x":18.086,"y":42.528,"w":1.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"not","S":3,"TS":[0,12,0,0]}]},{"x":18.961,"y":42.528,"w":19.373,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" required to figure your penalty (unless box ","S":3,"TS":[0,12,0,0]}]},{"x":29.859,"y":42.528,"w":0.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"B,","S":3,"TS":[0,12,0,0]}]},{"x":30.411,"y":42.528,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":30.567,"y":42.528,"w":1.019,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"C,","S":3,"TS":[0,12,0,0]}]},{"x":31.141,"y":42.528,"w":1.463,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" or ","S":3,"TS":[0,12,0,0]}]},{"x":31.964,"y":42.528,"w":1.019,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"D ","S":3,"TS":[0,12,0,0]}]},{"x":32.537,"y":42.528,"w":3.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"applies).","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":43.358,"w":30.702,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see separate instructions. ","S":-1,"TS":[0,11,0,0]}]},{"x":22.88,"y":43.376,"w":7.688,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11744P ","S":2,"TS":[0,10,0,0]}]},{"x":31.897,"y":43.323,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":33.04,"y":43.323,"w":2.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2210","S":-1,"TS":[0,13,0,0]}]},{"x":34.43,"y":43.323,"w":3.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013) ","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1409,"AM":1024,"TU":"Name(s) shown on tax return","x":2.265,"y":5.873,"w":25.59,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1410,"AM":1024,"TU":"Identifying number","x":27.953,"y":5.828,"w":8.04,"h":0.907},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":1411,"AM":1024,"x":30.188,"y":21.788,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1412,"AM":0,"TU":"Line 2. Other taxes, including self-employment tax and, if applicable, Additional Medicare Tax and/or Net Investment Income Tax (see instructions).","x":30.188,"y":23.215,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"TOTCR","EN":0},"TI":1413,"AM":0,"TU":"Line 3. Refundable credits (see instructions).","x":30.539,"y":24.012,"w":4.129,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CYTAX","EN":0},"TI":1414,"AM":1024,"x":30.241,"y":25.313,"w":4.442,"h":0.938},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SAFEAMT","EN":0},"TI":1415,"AM":1024,"x":22.995,"y":26.103,"w":4.418,"h":0.861},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WHTAX","EN":0},"TI":1416,"AM":1024,"x":30.218,"y":26.79,"w":4.373,"h":0.915},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXDUE","EN":0},"TI":1417,"AM":1024,"x":30.188,"y":27.757,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PYTAX","EN":0},"TI":1418,"AM":0,"TU":"Line 8. Maximum required annual payment based on prior year's tax (see instructions).","x":30.188,"y":28.507,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REQPAY","EN":0},"TI":1419,"AM":1024,"x":30.188,"y":29.257,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2210AI"}},"id":{"Id":"A537","EN":0},"TI":1425,"AM":1024,"x":26.764,"y":39.082,"w":1.535,"h":1.454}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PENN","EN":0},"TI":1420,"AM":0,"TU":"Line 9. Checkboxes.","x":3.584,"y":30.726,"w":0.543,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PENY","EN":0},"TI":1421,"AM":0,"TU":"Line 9. Checkboxes.","x":3.6,"y":31.424,"w":0.491,"h":0.833,"checked":false}],"id":{"Id":"PENRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"PTWAIVX","EN":0},"TI":1422,"AM":0,"TU":"Part II. Reasons for Filing. Checkboxes.","x":3.518,"y":35.981,"w":0.798,"h":0.839,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1A","EN":0},"TI":1423,"AM":0,"TU":"Part II. Reasons for Filing. Checkboxes.","x":3.559,"y":37.518,"w":0.798,"h":0.833,"checked":false}],"id":{"Id":"L9RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1B","EN":0},"TI":1424,"AM":0,"x":3.582,"y":38.991,"w":0.839,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1C","EN":0},"TI":1426,"AM":0,"x":3.6,"y":40.399,"w":0.88,"h":0.92,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1D","EN":0},"TI":1427,"AM":0,"x":3.559,"y":41.994,"w":0.839,"h":0.833,"checked":false}],"id":{"Id":"A540RB","EN":0}}]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":3.001,"w":1.5,"l":31.531,"oc":"#221f1f"},{"x":33.735,"y":3.001,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":3.751,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":8.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":14.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":30.135,"y":15.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":15.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":15.753,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":18.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":20.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":22.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":24.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":24.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":24.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":28.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":31.501,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":30.151,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":15.737,"w":0.75,"l":3.791,"oc":"#221f1f"},{"x":28.801,"y":15.737,"w":0.75,"l":3.791,"oc":"#221f1f"},{"x":22.951,"y":17.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":17.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":15.737,"w":0.75,"l":3.779,"oc":"#221f1f"},{"x":34.651,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":20.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.801,"y":20.235,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.651,"y":20.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":22.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":22.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":23.985,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":28.801,"y":23.985,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":30.151,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":23.985,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":34.651,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":28.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":28.801,"y":28.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":34.651,"y":28.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.651,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":3.001,"w":2.7,"h":0.75,"oc":"#221f1f"},{"x":28.801,"y":15.753,"w":1.35,"h":3.76,"oc":"#bebfc1"},{"x":28.801,"y":24.001,"w":1.35,"h":3.75,"oc":"#bebfc1"}],"Texts":[{"x":2.001,"y":1.9729999999999999,"w":7.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 2210 (2013)","S":2,"TS":[0,10,0,0]}]},{"x":34.277,"y":2.01,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":2.01,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.368,"y":2.822,"w":3.145,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III","S":-1,"TS":[0,13,0,0]}]},{"x":5.126,"y":2.822,"w":6.52,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Short Method","S":-1,"TS":[0,13,0,0]}]},{"x":3.351,"y":3.697,"w":8.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Can You Use the ","S":-1,"TS":[0,13,0,0]}]},{"x":3.351,"y":4.385,"w":7.129,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Short Method?","S":-1,"TS":[0,13,0,0]}]},{"x":12.801,"y":3.59,"w":14.839,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You may use the short method if:","S":3,"TS":[0,12,0,0]}]},{"x":12.801,"y":4.403,"w":35.286,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• You made no estimated tax payments (or your only payments were withheld ","S":3,"TS":[0,12,0,0]}]},{"x":12.801,"y":5.09,"w":9.075,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"federal income tax), ","S":3,"TS":[0,12,0,0]}]},{"x":17.905,"y":5.09,"w":1,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"x":12.801,"y":5.903,"w":33.771,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• You paid the same amount of estimated tax on each of the four payment ","S":3,"TS":[0,12,0,0]}]},{"x":12.801,"y":6.591,"w":4.724,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"due dates.","S":3,"TS":[0,12,0,0]}]},{"x":3.413,"y":8.197,"w":8.76,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Must You Use the ","S":-1,"TS":[0,13,0,0]}]},{"x":3.413,"y":8.885,"w":8.258,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Regular Method?","S":-1,"TS":[0,13,0,0]}]},{"x":12.801,"y":8.09,"w":32.398,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You must use the regular method (Part IV) instead of the short method if:","S":3,"TS":[0,12,0,0]}]},{"x":12.801,"y":8.84,"w":20.674,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• You made any estimated tax payments late,","S":3,"TS":[0,12,0,0]}]},{"x":12.801,"y":9.59,"w":9.169,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• You checked box ","S":3,"TS":[0,12,0,0]}]},{"x":17.958,"y":9.59,"w":0.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" C ","S":3,"TS":[0,12,0,0]}]},{"x":18.375,"y":9.59,"w":1.463,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" or ","S":3,"TS":[0,12,0,0]}]},{"x":19.198,"y":9.59,"w":0.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"D","S":3,"TS":[0,12,0,0]}]},{"x":19.615,"y":9.59,"w":4.519,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" in Part II, ","S":3,"TS":[0,12,0,0]}]},{"x":22.157,"y":9.59,"w":1,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"x":12.801,"y":10.403,"w":34.339,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• You are filing Form 1040NR or 1040NR-EZ and you did not receive wages ","S":3,"TS":[0,12,0,0]}]},{"x":12.801,"y":11.09,"w":24.857,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"as an employee subject to U.S. income tax withholding.","S":3,"TS":[0,12,0,0]}]},{"x":2.501,"y":11.903,"w":3.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Note: ","S":3,"TS":[0,12,0,0]}]},{"x":4.251,"y":11.903,"w":47.05,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If any payment was made earlier than the due date, you may use the short method, but using it may cause","S":3,"TS":[0,12,0,0]}]},{"x":30.716,"y":11.903,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":30.873,"y":11.903,"w":5.724,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you to pay a ","S":3,"TS":[0,12,0,0]}]},{"x":2.501,"y":12.59,"w":43.118,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"larger penalty than the regular method. If the payment was only a few days early, the difference is","S":3,"TS":[0,12,0,0]}]},{"x":26.754,"y":12.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":26.91,"y":12.59,"w":7.592,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"likely to be small.","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":14.84,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":14.84,"w":18.082,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount from Form 2210, line 9","S":3,"TS":[0,12,0,0]}]},{"x":14.001,"y":14.84,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":14.84,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":16.34,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":16.34,"w":21.305,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount, if any, from Form 2210, line 6","S":3,"TS":[0,12,0,0]}]},{"x":15.501,"y":16.34,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"x":21.713,"y":16.34,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":17.84,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":17.84,"w":30.307,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the total amount, if any, of estimated tax payments you made.","S":-1,"TS":[0,11.82,0,0]}]},{"x":21.713,"y":17.84,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":19.34,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":19.34,"w":8.893,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 11 and 12","S":3,"TS":[0,12,0,0]}]},{"x":8.751,"y":19.34,"w":34.658,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":19.34,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":20.903,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":21.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":20.903,"w":14.074,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total underpayment for year. ","S":3,"TS":[0,12,0,0]}]},{"x":11.348,"y":20.903,"w":19.669,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 13 from line 10. If zero or less, ","S":3,"TS":[0,12,0,0]}]},{"x":22.615,"y":20.903,"w":2.111,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"stop","S":3,"TS":[0,12,0,0]}]},{"x":23.802,"y":20.903,"w":3.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"; you do","S":3,"TS":[0,12,0,0]}]},{"x":25.885,"y":20.903,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":26.062,"y":20.903,"w":3.87,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"not owe ","S":3,"TS":[0,12,0,0]}]},{"x":3.352,"y":21.59,"w":4.353,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a penalty.","S":3,"TS":[0,12,0,0]}]},{"x":5.801,"y":21.59,"w":27.387,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Do not file Form 2210 unless you checked box E in Part II","S":3,"TS":[0,12,0,0]}]},{"x":21.503,"y":21.59,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":21.59,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":23.09,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":23.09,"w":11.413,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 14 by .01995","S":3,"TS":[0,12,0,0]}]},{"x":10.251,"y":23.09,"w":31.992,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":23.09,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":24.571,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":24.59,"w":15.875,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If the amount on line 14 was paid ","S":3,"TS":[0,12,0,0]}]},{"x":12.28,"y":24.59,"w":4.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on or after","S":3,"TS":[0,12,0,0]}]},{"x":15.083,"y":24.59,"w":8.448,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" 4/15/14, enter -0-.","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":25.403,"w":15.875,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If the amount on line 14 was paid ","S":3,"TS":[0,12,0,0]}]},{"x":12.28,"y":25.403,"w":3.092,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"before","S":3,"TS":[0,12,0,0]}]},{"x":14.02,"y":25.403,"w":23.952,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" 4/15/14, make the following computation to find the ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":26.09,"w":12.005,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"amount to enter on line 16.","S":3,"TS":[0,12,0,0]}]},{"x":6.47,"y":26.903,"w":5.188,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Amount on ","S":3,"TS":[0,12,0,0]}]},{"x":7.028,"y":27.59,"w":2.927,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 14","S":3,"TS":[0,12,0,0]}]},{"x":10.157,"y":27.59,"w":0.6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"×","S":3,"TS":[0,12,0,0]}]},{"x":11.29,"y":26.903,"w":9.651,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Number of days paid ","S":3,"TS":[0,12,0,0]}]},{"x":12.071,"y":27.59,"w":6.594,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"before 4/15/14","S":3,"TS":[0,12,0,0]}]},{"x":17.357,"y":27.59,"w":0.6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"×","S":3,"TS":[0,12,0,0]}]},{"x":18.201,"y":27.59,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".00008 ","S":3,"TS":[0,12,0,0]}]},{"x":20.751,"y":27.59,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":27.59,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":29.215,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":29.903,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":30.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":29.215,"w":4.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Penalty. ","S":3,"TS":[0,12,0,0]}]},{"x":5.653,"y":29.215,"w":34.401,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 16 from line 15. Enter the result here and on Form 1040, line 77;","S":3,"TS":[0,12,0,0]}]},{"x":25.003,"y":29.215,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":29.903,"w":2.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form","S":3,"TS":[0,12,0,0]}]},{"x":4.664,"y":29.903,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":4.82,"y":29.903,"w":39.146,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1040A, line 46; Form 1040NR, line 74; Form 1040NR-EZ, line 26; or Form 1041, line 26. ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":30.601,"w":27.035,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not file Form 2210 unless you checked a box in Part II","S":3,"TS":[0,12,0,0]}]},{"x":19.251,"y":30.601,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":27.651,"y":30.507,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":28.913,"y":30.59,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"x":31.897,"y":31.322000000000003,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":33.04,"y":31.322000000000003,"w":2.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2210","S":-1,"TS":[0,13,0,0]}]},{"x":34.43,"y":31.322000000000003,"w":3.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013) ","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":2393,"AM":1024,"TU":"Name(s) shown on tax return","x":6.32,"y":1.9,"w":19.795,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2394,"AM":1024,"TU":"Identifying number","x":26.199,"y":1.902,"w":8.04,"h":0.907},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"BALFOR","EN":0},"TI":2395,"AM":0,"TU":"Line 10. Enter the amount from Form 2210, line 19.","x":30.218,"y":14.704,"w":4.373,"h":1.031},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WHTAX2","EN":0},"TI":2396,"AM":1024,"TU":"11","x":23.017,"y":16.166,"w":4.373,"h":1.069},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"ESPAID","EN":0},"TI":2397,"AM":0,"TU":"Line 12. Enter the total amount, if any, of estimated tax payments you made.","x":23.041,"y":17.82,"w":4.372,"h":0.938},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXPAID","EN":0},"TI":2398,"AM":1024,"TU":"13","x":30.24,"y":19.158,"w":4.328,"h":1.077},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNDERPAY","EN":0},"TI":2399,"AM":1024,"TU":"14","x":30.225,"y":21.422,"w":4.357,"h":1.063},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":2400,"AM":1024,"TU":"15","x":30.218,"y":22.977,"w":4.373,"h":1.008},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":2401,"AM":0,"TU":"Line 16. If the amount on line 14 was paid on or after 4/15/14, enter zero. If the amount on line 14 was paid before 4/15/14, make the following computation to find the amount to enter on line 16. Amount on line 14 times number of days paid before 4/15/14 times .00008.","x":30.24,"y":27.309,"w":4.328,"h":1.176},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PENALTY1","EN":0},"TI":2402,"AM":1024,"TU":"17","x":30.24,"y":30.263,"w":4.328,"h":1.207}],"Boxsets":[]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":3.001,"w":1.5,"l":31.081,"oc":"#221f1f"},{"x":33.285,"y":3.001,"w":1.5,"l":2.731,"oc":"#221f1f"},{"x":2.235,"y":3.751,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":4.485,"y":3.751,"w":0.75,"l":31.531,"oc":"#221f1f"},{"x":17.085,"y":3.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":4.501,"w":0.75,"l":18.031,"oc":"#221f1f"},{"x":2.235,"y":6.001,"w":0.75,"l":14.881,"oc":"#221f1f"},{"x":17.085,"y":6.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":6.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":6.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":6.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":6.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":9.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":9.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":9.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":9.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":9.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":13.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":13.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":13.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":13.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":13.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.985,"y":13.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":16.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":16.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":16.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":16.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":16.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":17.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":18.001,"y":17.251,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":18.001,"y":16.501,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.485,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":18.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":18.001,"y":18.751,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":18.001,"y":17.251,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.485,"y":18.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":18.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":18.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":21.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":21.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":21.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":21.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":21.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":22.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":18.001,"y":22.501,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":18.001,"y":21.001,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.485,"y":22.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":22.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":21.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":22.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":24.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":24.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":24.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":24.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":24.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":27.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":27.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":27.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":27.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":24.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":27.001,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":2.235,"y":27.001,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":28.501,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":31.501,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":18.001,"y":3.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":3.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":4.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":17.101,"y":4.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.001,"y":4.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.501,"y":4.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.001,"y":4.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.501,"y":4.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.001,"y":5.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":17.101,"y":5.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":18.001,"y":5.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":22.501,"y":5.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":27.001,"y":5.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":31.501,"y":5.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":18.001,"y":8.985,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.101,"y":8.985,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.001,"y":8.985,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.501,"y":8.985,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.001,"y":8.985,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.501,"y":8.985,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":18.001,"y":13.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":17.101,"y":13.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.501,"y":13.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.001,"y":13.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.501,"y":13.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.001,"y":13.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.501,"y":13.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.001,"y":14.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":17.101,"y":14.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.501,"y":14.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.001,"y":14.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.501,"y":14.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.001,"y":14.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.501,"y":14.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.001,"y":16.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":16.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":16.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":18.001,"y":16.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.501,"y":16.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":16.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":16.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":17.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":17.101,"y":17.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.501,"y":17.251,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":18.001,"y":17.251,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":22.501,"y":17.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.001,"y":17.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.501,"y":17.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.001,"y":18.736,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":17.101,"y":18.736,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":18.001,"y":18.736,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.501,"y":18.736,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":27.001,"y":18.736,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":31.501,"y":18.736,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":18.001,"y":20.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":17.101,"y":20.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.501,"y":21.001,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":18.001,"y":21.001,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":22.501,"y":20.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.001,"y":20.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.501,"y":20.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.001,"y":22.486,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":17.101,"y":22.486,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":18.001,"y":22.486,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.501,"y":22.486,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":27.001,"y":22.486,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":31.501,"y":22.486,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":18.001,"y":24.736,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":17.101,"y":24.736,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":18.001,"y":24.736,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.501,"y":24.736,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":27.001,"y":24.736,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":31.501,"y":24.736,"w":0.75,"l":2.289,"oc":"#221f1f"},{"x":31.501,"y":28.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":30.151,"y":28.485,"w":0.75,"l":3.031,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":3.001,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":18.001,"y":13.501,"w":4.5,"h":1.5,"oc":"#bebfc1"},{"x":18.001,"y":15.001,"w":4.5,"h":1.5,"oc":"#bebfc1"},{"x":18.001,"y":16.501,"w":4.5,"h":0.75,"oc":"#bebfc1"},{"x":18.001,"y":17.251,"w":4.5,"h":1.5,"oc":"#bebfc1"},{"x":18.001,"y":21.001,"w":4.5,"h":1.5,"oc":"#bebfc1"},{"x":31.501,"y":21.001,"w":4.5,"h":1.5,"oc":"#bebfc1"},{"x":31.501,"y":24.751,"w":4.5,"h":2.25,"oc":"#bebfc1"}],"Texts":[{"x":2.001,"y":1.9729999999999999,"w":7.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 2210 (2013)","S":2,"TS":[0,10,0,0]}]},{"x":34.277,"y":2.01,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":2.01,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.13,"y":2.822,"w":3.463,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part IV ","S":-1,"TS":[0,13,0,0]}]},{"x":4.813,"y":2.822,"w":8.203,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Regular Method ","S":-1,"TS":[0,13,0,0]}]},{"x":9.94,"y":2.822,"w":29.653,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(See the instructions if you are filing Form 1040NR or 1040NR-EZ.)","S":-1,"TS":[0,13,0,0]}]},{"x":23.805,"y":3.51,"w":9.427,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Payment Due Dates","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":4.208,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.175,"y":4.208,"w":18.445,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Section A—Figure Your Underpayment","S":-1,"TS":[0,13,0,0]}]},{"x":19.673,"y":4.289,"w":1.722,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(a) ","S":3,"TS":[0,12,0,0]}]},{"x":19.032,"y":4.964,"w":3.446,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4/15/13","S":3,"TS":[0,12,0,0]}]},{"x":24.162,"y":4.289,"w":1.759,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(b) ","S":3,"TS":[0,12,0,0]}]},{"x":23.531,"y":4.964,"w":3.446,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6/15/13","S":3,"TS":[0,12,0,0]}]},{"x":28.673,"y":4.289,"w":1.722,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(c) ","S":3,"TS":[0,12,0,0]}]},{"x":28.032,"y":4.964,"w":3.446,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9/15/13","S":3,"TS":[0,12,0,0]}]},{"x":33.163,"y":4.289,"w":1.759,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(d) ","S":3,"TS":[0,12,0,0]}]},{"x":32.531,"y":4.964,"w":3.446,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1/15/14","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":6.027,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":6.715,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":7.401999999999999,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":8.09,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":6.027,"w":10.958,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Required installments. ","S":3,"TS":[0,12,0,0]}]},{"x":9.674,"y":6.027,"w":11.519,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If box C in Part II applies, ","S":3,"TS":[0,12,0,0]}]},{"x":3.352,"y":6.714,"w":2.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"enter","S":3,"TS":[0,12,0,0]}]},{"x":4.633,"y":6.714,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":5.067,"y":6.714,"w":17.599,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the amounts from Schedule AI, line 25. ","S":3,"TS":[0,12,0,0]}]},{"x":3.353,"y":7.401999999999999,"w":7.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Otherwise, enter","S":3,"TS":[0,12,0,0]}]},{"x":7.543,"y":7.401999999999999,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":7.755000000000001,"y":7.401999999999999,"w":15.099,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25% (.25) of line 9, Form 2210, in ","S":3,"TS":[0,12,0,0]}]},{"x":3.353,"y":8.089,"w":5.743,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"each column","S":3,"TS":[0,12,0,0]}]},{"x":7.253,"y":8.089,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":8.09,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":9.153,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":9.84,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":10.527,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":11.215,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":11.902,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":12.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":9.153,"w":20.078,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Estimated tax paid and tax withheld (see the ","S":-1,"TS":[0,11.46,0,0]}]},{"x":3.351,"y":9.84,"w":25.099,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions). For column (a) only, also enter the amount ","S":-1,"TS":[0,11.46,0,0]}]},{"x":3.351,"y":10.527,"w":23.118,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from line 19 on line 23. If line 19 is equal to or more ","S":-1,"TS":[0,11.46,0,0]}]},{"x":3.351,"y":11.215,"w":24.396,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"than line 18 for all payment periods, stop here; you do ","S":-1,"TS":[0,11.46,0,0]}]},{"x":3.349,"y":11.902,"w":8.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"not owe a penalty. ","S":-1,"TS":[0,11.46,0,0]}]},{"x":8.01,"y":11.902,"w":7.664,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not file Form","S":-1,"TS":[0,11.46,0,0]}]},{"x":12.187,"y":11.902,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.46,0,0]}]},{"x":12.375,"y":11.902,"w":7.873,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2210 unless you ","S":-1,"TS":[0,11.46,0,0]}]},{"x":3.348,"y":12.59,"w":11.22,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"checked a box in Part II","S":-1,"TS":[0,11.46,0,0]}]},{"x":9.498,"y":12.59,"w":14.18,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11.46,0,0]}]},{"x":16.988,"y":12.59,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":13.403,"w":21.355,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete lines 20 through 26 of one column ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":14.09,"w":20.169,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"before going to line 20 of the next column.","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":14.903,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":15.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":14.903,"w":23.582,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount, if any, from line 26 in the previous ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":15.59,"w":3.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"column","S":3,"TS":[0,12,0,0]}]},{"x":5.752,"y":15.59,"w":19.995,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":15.59,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":16.34,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":16.34,"w":8.893,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 19 and 20","S":3,"TS":[0,12,0,0]}]},{"x":8.751,"y":16.34,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":16.34,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":17.153,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":17.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":17.153,"w":23.269,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add the amounts on lines 24 and 25 in the previous ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.351,"y":17.84,"w":3.854,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"column .","S":-1,"TS":[0,11.55,0,0]}]},{"x":6.5,"y":17.84,"w":19.655,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11.55,0,0]}]},{"x":16.988,"y":17.84,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":18.715,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":19.403,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":20.09,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":18.715,"w":22.225,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 22 from line 21. If zero or less, enter ","S":3,"TS":[0,12,0,0]}]},{"x":3.353,"y":19.403,"w":23.304,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"-0-. For column (a) only, enter the amount from line ","S":3,"TS":[0,12,0,0]}]},{"x":3.355,"y":20.09,"w":1.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"x":3.667,"y":20.09,"w":1.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"x":4.255,"y":20.09,"w":22.661,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":20.09,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":20.903,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"24 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":21.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":20.903,"w":20.504,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If line 23 is zero, subtract line 21 from line 22. ","S":3,"TS":[0,12,0,0]}]},{"x":3.352,"y":21.59,"w":8.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Otherwise, enter -0-","S":3,"TS":[0,12,0,0]}]},{"x":8.752,"y":21.59,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":21.591,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":22.466,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":23.153,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":23.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":22.466,"w":7.593,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Underpayment. ","S":3,"TS":[0,12,0,0]}]},{"x":7.69,"y":22.466,"w":14.652,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If line 18 is equal to or more than","S":3,"TS":[0,12,0,0]}]},{"x":16.476,"y":22.466,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":23.153,"w":23.378,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 23, subtract line 23 from line 18. Then go to line ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":23.851,"w":20.876,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20 of the next column. Otherwise, go to line 26","S":3,"TS":[0,12,0,0]}]},{"x":15.501,"y":23.851,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":16,"y":23.758,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":16.988,"y":23.841,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":24.716,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"26 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":25.403,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":26.09,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":24.653,"w":19.915,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Overpayment. If line 23 is more than line 18, ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":25.34,"w":22.711,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"subtract line 18 from line 23. Then go to line 20 of ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":26.027,"w":7.466,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the next column ","S":3,"TS":[0,12,0,0]}]},{"x":8.001,"y":26.027,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":26.091,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":26.885,"w":14.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Section B—Figure the Penalty ","S":-1,"TS":[0,13,0,0]}]},{"x":11.238,"y":26.885,"w":35.914,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Use the Worksheet for Form 2210, Part IV, Section B—Figure the Penalty in the ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":27.51,"w":5.723,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions.)","S":-1,"TS":[0,13,0,0]}]},{"x":2.363,"y":28.528,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"27 ","S":3,"TS":[0,12,0,0]}]},{"x":2.676,"y":29.215,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.676,"y":29.902,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.676,"y":30.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":28.527,"w":4.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Penalty. ","S":3,"TS":[0,12,0,0]}]},{"x":5.66,"y":28.527,"w":42.379,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the total penalty from line 14 of the Worksheet for Form 2210, Part IV, Section B—Figure ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":29.214,"w":45.24,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the Penalty. Also include this amount on Form 1040, line 77; Form 1040A, line 46; Form 1040NR, line ","S":3,"TS":[0,12,0,0]}]},{"x":3.354,"y":29.902,"w":19.86,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"74; Form 1040NR-EZ, line 26; or Form 1041,","S":3,"TS":[0,12,0,0]}]},{"x":14.525,"y":29.902,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":14.681,"y":29.902,"w":3.205,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 26.","S":3,"TS":[0,12,0,0]}]},{"x":16.484,"y":29.902,"w":23.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Do not file Form 2210 unless you checked a box ","S":3,"TS":[0,12,0,0]}]},{"x":3.354,"y":30.6,"w":4.257,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"in Part II ","S":3,"TS":[0,12,0,0]}]},{"x":5.754,"y":30.6,"w":41.323,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............................","S":3,"TS":[0,12,0,0]}]},{"x":28.548,"y":30.6,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":28.707,"y":30.507,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":30.263,"y":30.59,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"27","S":3,"TS":[0,12,0,0]}]},{"x":31.897,"y":31.322000000000003,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":33.04,"y":31.322000000000003,"w":2.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2210","S":-1,"TS":[0,13,0,0]}]},{"x":34.43,"y":31.322000000000003,"w":3.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013) ","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM3","EN":0},"TI":2613,"AM":1024,"TU":"Name(s) shown on tax return","x":5.955,"y":1.949,"w":19.795,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN3","EN":0},"TI":2614,"AM":1024,"TU":"Identifying number","x":25.907,"y":1.926,"w":8.04,"h":0.907},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A159_L22_1_","EN":0},"TI":2615,"AM":1024,"x":18.09,"y":6.173,"w":4.328,"h":2.812},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A159_L22_2_","EN":0},"TI":2616,"AM":1024,"x":22.59,"y":6.173,"w":4.328,"h":2.812},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A159_L22_3_","EN":0},"TI":2617,"AM":1024,"x":27.09,"y":6.173,"w":4.328,"h":2.812},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A159_L22_4_","EN":0},"TI":2618,"AM":1024,"x":31.59,"y":6.173,"w":4.365,"h":2.812},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L23_1_","EN":0},"TI":2619,"AM":0,"TU":"Line 19 (a). Estimated tax paid and tax withheld (see the instructions). For column (a) only, also enter the amount from line 19 on line 23. If line 19 is equal to or more than line 18 for all payment periods, stop here; you do not owe a penalty. Do not file Form 2210 unless you checked a box in Part II.","x":18.008,"y":11.249,"w":4.483,"h":2.236},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L23_2_","EN":0},"TI":2620,"AM":0,"TU":"Line 19 (b). Estimated tax paid and tax withheld (see the instructions). For column (a) only, also enter the amount from line 19 on line 23. If line 19 is equal to or more than line 18 for all payment periods, stop here; you do not owe a penalty. Do not file Form 2210 unless you checked a box in Part II.","x":22.578,"y":11.221,"w":4.483,"h":2.236},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L23_3_","EN":0},"TI":2621,"AM":0,"TU":"Line 19 (c). Estimated tax paid and tax withheld (see the instructions). For column (a) only, also enter the amount from line 19 on line 23. If line 19 is equal to or more than line 18 for all payment periods, stop here; you do not owe a penalty. Do not file Form 2210 unless you checked a box in Part II.","x":27.077,"y":11.202,"w":4.366,"h":2.236},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A160_L23_4_","EN":0},"TI":2622,"AM":0,"TU":"Line 19 (d). Estimated tax paid and tax withheld (see the instructions). For column (a) only, also enter the amount from line 19 on line 23. If line 19 is equal to or more than line 18 for all payment periods, stop here; you do not owe a penalty. Do not file Form 2210 unless you checked a box in Part II.","x":31.541,"y":11.121,"w":4.414,"h":2.364},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A161_L24_1_","EN":0},"TI":2623,"AM":1024,"x":22.59,"y":13.673,"w":4.328,"h":2.812},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A161_L24_2_","EN":0},"TI":2624,"AM":1024,"x":27.09,"y":13.673,"w":4.328,"h":2.812},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A161_L24_3_","EN":0},"TI":2625,"AM":1024,"x":31.59,"y":13.673,"w":4.365,"h":2.812},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A162_L25_1_","EN":0},"TI":2626,"AM":1024,"x":22.538,"y":16.538,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A162_L25_2_","EN":0},"TI":2627,"AM":1024,"x":27.038,"y":16.538,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A162_L25_3_","EN":0},"TI":2628,"AM":1024,"x":31.538,"y":16.538,"w":4.47,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A163_L26_1_","EN":0},"TI":2629,"AM":1024,"x":22.567,"y":17.401,"w":4.373,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A163_L26_2_","EN":0},"TI":2630,"AM":1024,"x":27.067,"y":17.401,"w":4.373,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A163_L26_3_","EN":0},"TI":2631,"AM":1024,"x":31.567,"y":17.401,"w":4.41,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A164_L27_1_","EN":0},"TI":2632,"AM":1024,"x":18.075,"y":19.058,"w":4.358,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A164_L27_2_","EN":0},"TI":2633,"AM":1024,"x":22.575,"y":19.058,"w":4.358,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A164_L27_3_","EN":0},"TI":2634,"AM":1024,"x":27.075,"y":19.058,"w":4.358,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A164_L27_4_","EN":0},"TI":2635,"AM":1024,"x":31.575,"y":19.058,"w":4.395,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L28_1_","EN":0},"TI":2636,"AM":1024,"x":22.567,"y":21.151,"w":4.373,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A165_L28_2_","EN":0},"TI":2637,"AM":1024,"x":27.067,"y":21.151,"w":4.373,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A166_L29_1_","EN":0},"TI":2638,"AM":1024,"x":18.075,"y":22.808,"w":4.358,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A166_L29_2_","EN":0},"TI":2639,"AM":1024,"x":22.575,"y":22.808,"w":4.358,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A166_L29_3_","EN":0},"TI":2640,"AM":1024,"x":27.075,"y":22.808,"w":4.358,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A166_L29_4_","EN":0},"TI":2641,"AM":1024,"x":31.575,"y":22.808,"w":4.395,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A167_L30_1_","EN":0},"TI":2642,"AM":1024,"x":18.075,"y":25.058,"w":4.358,"h":1.814},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A167_L30_2_","EN":0},"TI":2643,"AM":1024,"x":22.575,"y":25.058,"w":4.358,"h":1.814},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A167_L30_3_","EN":0},"TI":2644,"AM":1024,"x":27.075,"y":25.058,"w":4.358,"h":1.814},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PENALTY2","EN":0},"TI":2645,"AM":0,"TU":"Line 27. Penalty. Enter the total penalty from line 14 of the Worksheet for Form 2210, Part IV, Section B - Figure the Penalty. Also include this amount on Form 1040, line 77; Form 1040A, line 46. . Do not file Form 2210 unless you checked a box in Part II.","x":31.59,"y":29.792,"w":4.365,"h":1.678},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text1","EN":0},"TI":2646,"AM":1024,"x":21.432,"y":31.676,"w":4.937,"h":0.883,"V":"Schedule AI"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2210AI"}},"id":{"Id":"A536","EN":0},"TI":2647,"AM":1024,"x":26.99,"y":31.41,"w":2.229,"h":1.3}],"Boxsets":[]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F2210AI.json b/test/data/fd/form/F2210AI.json index 0b63c0a9..8c4ffa6f 100755 --- a/test/data/fd/form/F2210AI.json +++ b/test/data/fd/form/F2210AI.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":86.711},{"oc":"#221f1f","x":92.772,"y":3.001,"w":1.5,"l":6.273},{"oc":"#221f1f","x":6.147,"y":3.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":46.984,"y":3.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":46.984,"y":5.251,"w":1.125,"l":2.561},{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":6.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.334,"y":5.251,"w":1.125,"l":86.711},{"oc":"#221f1f","x":12.334,"y":6.001,"w":0.75,"l":86.711},{"oc":"#221f1f","x":46.984,"y":8.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":8.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":8.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":8.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":8.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":9,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":9,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":9,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":9,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":9,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":9.75,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":9.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":9.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":9.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":9.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":12,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":12.75,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":12.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":12.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":12.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":12.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":13.5,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":13.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":13.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":13.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":13.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":16.5,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":16.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":16.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":16.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":16.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":17.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":18,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":18,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":18,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":18,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":18,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":21,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":21,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":21.75,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":21.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":21.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":21.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":21.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":22.5,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":22.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":22.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":22.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":22.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":23.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":23.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":23.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":23.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":23.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":25.5,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":25.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":25.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":25.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":25.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":26.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":26.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":26.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":26.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":26.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":27.75,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":27.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":27.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":27.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":27.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":28.5,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":28.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":28.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":28.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":28.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":29.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":30,"w":0.75,"l":2.561},{"oc":"#221f1f","x":61.834,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":49.459,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":32.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":33,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":33,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":33,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":33,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":33,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":33.749,"w":0.75,"l":2.561},{"oc":"#221f1f","x":61.834,"y":33.749,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":33.749,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":33.749,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":35.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.502,"y":35.25,"w":0.75,"l":12.375},{"oc":"#221f1f","x":49.502,"y":33.749,"w":0.75,"l":12.375},{"oc":"#221f1f","x":61.834,"y":35.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":35.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":35.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":35.999,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":35.999,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":35.999,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":35.999,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":35.999,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":37.501,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":38.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.33,"y":37.501,"w":1.125,"l":86.711},{"oc":"#221f1f","x":12.33,"y":38.251,"w":0.75,"l":86.711},{"oc":"#221f1f","x":46.984,"y":39.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":39.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":39.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":39.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":39.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":40.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":42.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":42.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":42.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":42.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":42.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":43.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":44.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":44.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":44.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":44.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":44.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":45.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":45.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":45.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":45.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":45.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":45.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":45.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":46.984,"y":46.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":46.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.834,"y":46.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.209,"y":46.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.584,"y":46.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":49.502,"y":3.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":47.027,"y":3.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.502,"y":3.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":61.877,"y":3.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":74.252,"y":3.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.627,"y":3.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.502,"y":5.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":47.027,"y":5.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":5.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":5.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":5.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":8.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":8.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":9.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":47.027,"y":9.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":9.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":9.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":9.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":13.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":47.027,"y":13.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.877,"y":13.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":74.252,"y":13.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":86.627,"y":13.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":49.502,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":17.984,"w":0.75,"l":3.031},{"oc":"#221f1f","x":47.027,"y":17.984,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.877,"y":17.984,"w":0.75,"l":3.031},{"oc":"#221f1f","x":74.252,"y":17.984,"w":0.75,"l":3.031},{"oc":"#221f1f","x":86.627,"y":17.984,"w":0.75,"l":3.031},{"oc":"#221f1f","x":49.502,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":20.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":21.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":21.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":21.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":21.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":21.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":23.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":47.027,"y":23.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":23.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":23.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":23.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":26.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":26.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":26.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":26.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":26.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":28.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":29.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":29.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":29.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":29.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":29.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":29.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":32.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":32.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":32.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":32.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":32.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":33.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":33.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":33.749,"w":0.75,"l":1.5},{"oc":"#221f1f","x":49.502,"y":33.749,"w":0.75,"l":1.5},{"oc":"#221f1f","x":74.252,"y":33.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":33.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":35.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":35.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":35.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":35.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":35.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":35.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":35.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":35.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":35.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":35.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.252,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.502,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":47.027,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.252,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":86.627,"y":40.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":49.502,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":44.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":45.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":45.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":45.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":45.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":45.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.502,"y":46.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":46.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":46.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.252,"y":46.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":46.485,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":47.027,"y":3.751,"w":2.475,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":5.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":49.502,"y":30,"w":12.375,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":49.502,"y":31.5,"w":12.375,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":49.502,"y":33.749,"w":12.375,"h":1.5,"clr":-1},{"oc":"#221f1f","x":6.19,"y":37.501,"w":6.188,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%202210%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.7,"y":2.01,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.797,"y":2.01,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":2.822,"w":25.825000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20AI%E2%80%94Annualized%20Income%20Installment%20Method%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":50.326,"y":2.822,"w":9.668000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20the%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.6079999999999997,"w":8.632000000000001,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts%2C%20","S":-1,"TS":[0,10.04,0,0]}]},{"oc":"#221f1f","x":16.384,"y":3.6079999999999997,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":-1,"TS":[0,10.04,0,0]}]},{"oc":"#221f1f","x":20.082,"y":3.6079999999999997,"w":19.116000000000003,"clr":-1,"A":"left","R":[{"T":"%20use%20the%20period%20ending%20dates%20shown%20to%20the%20","S":-1,"TS":[0,10.04,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.296,"w":32.76999999999999,"clr":-1,"A":"left","R":[{"T":"right.%20Instead%2C%20use%20the%20following%3A%202%2F28%2F13%2C%204%2F30%2F13%2C%207%2F31%2F13%2C%20and%2011%2F30%2F13.","S":-1,"TS":[0,10.04,0,0]}]},{"oc":"#221f1f","x":54.838,"y":3.6100000000000003,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":51.915,"y":4.06,"w":6.836,"clr":-1,"A":"left","R":[{"T":"1%2F1%2F13%E2%80%933%2F31%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":67.194,"y":3.6100000000000003,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":64.289,"y":4.06,"w":6.836,"clr":-1,"A":"left","R":[{"T":"1%2F1%2F13%E2%80%935%2F31%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":79.588,"y":3.6100000000000003,"w":1.7220000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":76.665,"y":4.06,"w":6.836,"clr":-1,"A":"left","R":[{"T":"1%2F1%2F13%E2%80%938%2F31%2F13","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":91.944,"y":3.6100000000000003,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":88.753,"y":4.06,"w":7.392000000000001,"clr":-1,"A":"left","R":[{"T":"1%2F1%2F13%E2%80%9312%2F31%2F13","S":51,"TS":[0,9,0,0]}]},{"x":6.838,"y":5.072,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":5.135,"w":15.196,"clr":-1,"A":"left","R":[{"T":"Annualized%20Income%20Installments","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":5.965,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":5.965,"w":24.484999999999992,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20adjusted%20gross%20income%20for%20each%20period%20(see%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":9.652,"y":6.652,"w":23.226000000000003,"clr":-1,"A":"left","R":[{"T":"instructions).%20(Estates%20and%20trusts%2C%20enter%20your%20taxable%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":9.652,"y":7.339,"w":21.669999999999998,"clr":-1,"A":"left","R":[{"T":"income%20without%20your%20exemption%20for%20each%20period.)","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":43.064,"y":7.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":45.128,"y":7.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":47.585,"y":7.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":8.089,"w":26.894000000000005,"clr":-1,"A":"left","R":[{"T":"Annualization%20amounts.%20(Estates%20and%20trusts%2C%20see%20instructions)","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":47.585,"y":8.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":8.839,"w":19.190000000000005,"clr":-1,"A":"left","R":[{"T":"Annualized%20income.%20Multiply%20line%201%20by%20line%202","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.004,"y":8.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.066,"y":8.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.128,"y":8.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.585,"y":8.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":9.714,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":9.714,"w":28.892000000000007,"clr":-1,"A":"left","R":[{"T":"If%20you%20itemize%2C%20enter%20itemized%20deductions%20for%20the%20period%20shown%20in%20","S":-1,"TS":[0,10.29,0,0]}]},{"oc":"#221f1f","x":9.648,"y":10.402,"w":23.378000000000004,"clr":-1,"A":"left","R":[{"T":"each%20column.%20All%20others%20enter%20-0-%2C%20and%20skip%20to%20line%207.%20","S":-1,"TS":[0,10.29,0,0]}]},{"oc":"#221f1f","x":39.437,"y":10.402,"w":5.036,"clr":-1,"A":"left","R":[{"T":"Exception%3A","S":-1,"TS":[0,10.29,0,0]}]},{"oc":"#221f1f","x":9.652,"y":11.089,"w":27.454000000000008,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts%2C%20skip%20to%20line%209%20and%20enter%20amount%20from%20line%203","S":-1,"TS":[0,10.29,0,0]}]},{"oc":"#221f1f","x":47.585,"y":11.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":11.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":11.839,"w":10.15,"clr":-1,"A":"left","R":[{"T":"Annualization%20amounts","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":11.839,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.585,"y":11.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":12.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":12.589,"w":31.714000000000013,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%204%20by%20line%205%20(see%20instructions%20if%20line%203%20is%20more%20than%20%24150%2C000)","S":-1,"TS":[0,9.75,0,0]}]},{"oc":"#221f1f","x":47.585,"y":12.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":13.527,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":13.527,"w":24.508000000000003,"clr":-1,"A":"left","R":[{"T":"In%20each%20column%2C%20enter%20the%20full%20amount%20of%20your%20standard%20","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":9.653,"y":14.214,"w":26.95600000000001,"clr":-1,"A":"left","R":[{"T":"deduction%20%20from%20Form%201040%2C%20line%2040%2C%20or%20Form%201040A%2C%20line%2024.%20","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":9.649,"y":14.901,"w":20.596999999999998,"clr":-1,"A":"left","R":[{"T":"(Form%201040NR%20or%201040NR-EZ%20filers%2C%20enter%20-0-.%20","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":39.124,"y":14.901,"w":5.036,"clr":-1,"A":"left","R":[{"T":"Exception%3A","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":9.652,"y":15.588999999999999,"w":27.026,"clr":-1,"A":"left","R":[{"T":"Indian%20students%20and%20business%20apprentices%2C%20see%20instructions.).","S":-1,"TS":[0,10.65,0,0]}]},{"oc":"#221f1f","x":47.585,"y":15.588999999999999,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":16.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":16.339,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.328,"y":16.339,"w":2.795,"clr":-1,"A":"left","R":[{"T":"larger","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.652,"y":16.339,"w":7.631000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%206%20or%20line%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":16.339,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.585,"y":16.339,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":17.089,"w":11.466000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208%20from%20line%203","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":17.089,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.585,"y":17.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":18.027,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":18.026,"w":23.493000000000006,"clr":-1,"A":"left","R":[{"T":"In%20each%20column%2C%20multiply%20%243%2C900%20by%20the%20total%20number%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.655,"y":18.713,"w":22.70800000000001,"clr":-1,"A":"left","R":[{"T":"of%20exemptions%20claimed.%20(see%20instructions%20if%20line%203%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.657,"y":19.401,"w":21.305,"clr":-1,"A":"left","R":[{"T":"more%20than%20%24150%2C000)%20(Estates%2C%20trusts%2C%20and%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":20.088,"w":21.13300000000001,"clr":-1,"A":"left","R":[{"T":"1040NR%20or%201040NR-EZ%20%20filers%2C%20see%20instructions.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.068,"y":20.088,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.13,"y":20.088,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":20.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":20.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":20.839,"w":23.281,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2010%20from%20line%209.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":20.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":21.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":21.589,"w":26.173000000000002,"clr":-1,"A":"left","R":[{"T":"Figure%20your%20tax%20on%20the%20amount%20on%20line%2011%20(see%20instructions)%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":47.155,"y":21.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":22.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":22.339,"w":25.930000000000003,"clr":-1,"A":"left","R":[{"T":"Self-employment%20tax%20from%20line%2034%20(complete%20Part%20II%20below)%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":47.155,"y":22.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":23.214,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":23.214,"w":19.133000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20other%20taxes%20for%20each%20payment%20period%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.649,"y":23.901,"w":21.651,"clr":-1,"A":"left","R":[{"T":"including%2C%20if%20applicable%2C%20Additional%20Medicare%20Tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.649,"y":24.589,"w":23.597000000000012,"clr":-1,"A":"left","R":[{"T":"and%2For%20Net%20Investment%20Income%20Tax%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":24.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":25.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":25.339,"w":15.265000000000008,"clr":-1,"A":"left","R":[{"T":"Total%20tax.%20Add%20lines%2012%2C%2013%2C%20and%2014","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":25.339,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":25.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":26.151,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":26.151,"w":26.281,"clr":-1,"A":"left","R":[{"T":"For%20each%20period%2C%20enter%20the%20same%20type%20of%20credits%20as%20allowed%20","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":9.649,"y":26.839,"w":23.229000000000006,"clr":-1,"A":"left","R":[{"T":"on%20Form%202210%2C%20Part%20I%2C%20lines%201%20and%203%20(see%20instructions)","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":43.06,"y":26.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":45.123,"y":26.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":47.155,"y":26.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":27.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":27.589,"w":23.559,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2016%20from%20line%2015.%20If%20zero%20or%20less%2C%20enter%20-0-","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":45.126,"y":27.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":47.155,"y":27.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":28.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":28.339,"w":10.038,"clr":-1,"A":"left","R":[{"T":"Applicable%20percentage","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":28.339,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":28.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":29.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":29.089,"w":11.282000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2017%20by%20line%2018","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":29.089,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":29.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":29.901,"w":20.874000000000006,"clr":-1,"A":"left","R":[{"T":"Complete%20lines%2020%E2%80%9325%20of%20one%20column%20before%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.651,"y":30.589,"w":16.798000000000002,"clr":-1,"A":"left","R":[{"T":"going%20to%20line%2020%20of%20the%20next%20column.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":31.339,"w":28.11900000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20of%20the%20amounts%20in%20all%20previous%20columns%20of%20line%2025","S":-1,"TS":[0,10.379999999999999,0,0]}]},{"oc":"#221f1f","x":47.155,"y":31.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":32.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":32.089,"w":23.559,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2020%20from%20line%2019.%20If%20zero%20or%20less%2C%20enter%20-0-","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":45.126,"y":32.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":47.155,"y":32.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":32.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":32.839,"w":28.825000000000014,"clr":-1,"A":"left","R":[{"T":"Enter%2025%25%20(.25)%20of%20line%209%20on%20page%201%20of%20Form%202210%20in%20each%20column","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":47.155,"y":32.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":33.651,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":33.651,"w":23.35900000000001,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2025%20of%20the%20previous%20column%20from%20line%2024%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":34.338,"w":6.7250000000000005,"clr":-1,"A":"left","R":[{"T":"of%20that%20%20column","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":34.338,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":34.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":35.089,"w":8.893,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2022%20and%2023","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":35.089,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":35.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":35.839,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.656,"y":35.839,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.658,"y":35.839,"w":14.356000000000007,"clr":-1,"A":"left","R":[{"T":"of%20line%2021%20or%20line%2024%20here%20and%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.654,"y":36.537,"w":11.856000000000005,"clr":-1,"A":"left","R":[{"T":"Form%202210%2C%20Part%20IV%2C%20line%2018","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.629,"y":36.537,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.438,"y":36.443,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":47.155,"y":36.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":37.322,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.669,"y":37.385,"w":16.013,"clr":-1,"A":"left","R":[{"T":"Annualized%20Self-Employment%20Tax%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":41.192,"y":37.385,"w":18.357000000000006,"clr":-1,"A":"left","R":[{"T":"(Form%201040%20and%20Form%201040NR%20filers%20only)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.153,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":38.153,"w":22.337999999999997,"clr":-1,"A":"left","R":[{"T":"Net%20earnings%20from%20self-employment%20for%20the%20period%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.651,"y":38.84,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.439,"y":38.84,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":39.59,"w":14.278000000000002,"clr":-1,"A":"left","R":[{"T":"Prorated%20social%20security%20tax%20limit","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":39.59,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":39.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":40.465,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":40.465,"w":29.279,"clr":-1,"A":"left","R":[{"T":"Enter%20actual%20wages%20for%20the%20period%20subject%20to%20social%20security%20tax%20or%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":9.651,"y":41.153,"w":27.265,"clr":-1,"A":"left","R":[{"T":"the%206.2%25%20portion%20of%20the%207.65%25%20railroad%20retirement%20(tier%201)%20tax.%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":9.651,"y":41.84,"w":5.314,"clr":-1,"A":"left","R":[{"T":"Exception%3A%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":16.227,"y":41.84,"w":24.174000000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20filed%20Form%204137%20or%20Form%208919%2C%20see%20instructions%20%20","S":-1,"TS":[0,10.2,0,0]}]},{"oc":"#221f1f","x":47.155,"y":41.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":42.59,"w":23.559,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2028%20from%20line%2027.%20If%20zero%20or%20less%2C%20enter%20-0-","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":45.126,"y":42.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":47.155,"y":42.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":43.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":43.34,"w":10.15,"clr":-1,"A":"left","R":[{"T":"Annualization%20amounts","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":43.34,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":43.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":44.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":44.09,"w":10.041000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2030%20by%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.184,"y":44.09,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.022,"y":44.09,"w":8.465000000000002,"clr":-1,"A":"left","R":[{"T":"of%20line%2026%20or%20line%2029","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":44.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":44.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":44.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":44.84,"w":10.15,"clr":-1,"A":"left","R":[{"T":"Annualization%20amounts","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.564,"y":44.84,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":44.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"32","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":45.59,"w":11.282000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2026%20by%20line%2032","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":45.59,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.155,"y":45.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":46.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":46.34,"w":23.63800000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2031%20and%2033.%20Enter%20here%20and%20on%20line%2013%20above","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":43.063,"y":46.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.92,0,0]}]},{"oc":"#221f1f","x":44.438,"y":46.246,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":47.155,"y":46.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"34","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.154,"y":47.072,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.296,"y":47.072,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2210","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":47.072,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":54.897,"y":8.05,"w":0.632,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":66.569,"y":8.05,"w":1.4489999999999998,"clr":-1,"A":"left","R":[{"T":"2.4","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":78.944,"y":8.05,"w":1.4489999999999998,"clr":-1,"A":"left","R":[{"T":"1.5","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":92.022,"y":8.05,"w":0.632,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":54.897,"y":11.8,"w":0.632,"clr":-1,"A":"left","R":[{"T":"4","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":66.569,"y":11.8,"w":1.4489999999999998,"clr":-1,"A":"left","R":[{"T":"2.4","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":78.944,"y":11.8,"w":1.4489999999999998,"clr":-1,"A":"left","R":[{"T":"1.5","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":92.022,"y":11.8,"w":0.632,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":53.158,"y":28.3,"w":2.6550000000000002,"clr":-1,"A":"left","R":[{"T":"22.5%25","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":66.235,"y":28.3,"w":1.838,"clr":-1,"A":"left","R":[{"T":"45%25","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":77.908,"y":28.3,"w":2.6550000000000002,"clr":-1,"A":"left","R":[{"T":"67.5%25","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":90.985,"y":28.3,"w":1.838,"clr":-1,"A":"left","R":[{"T":"90%25","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":52.029,"y":39.551,"w":3.9690000000000003,"clr":-1,"A":"left","R":[{"T":"%2428%2C425","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":64.404,"y":39.551,"w":3.9690000000000003,"clr":-1,"A":"left","R":[{"T":"%2447%2C375","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":76.778,"y":39.551,"w":3.9690000000000003,"clr":-1,"A":"left","R":[{"T":"%2475%2C800","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":88.61,"y":39.551,"w":4.601,"clr":-1,"A":"left","R":[{"T":"%24113%2C700","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":53.108,"y":43.301,"w":2.713,"clr":-1,"A":"left","R":[{"T":"0.496","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":64.94,"y":43.301,"w":3.345,"clr":-1,"A":"left","R":[{"T":"0.2976","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":77.858,"y":43.301,"w":2.713,"clr":-1,"A":"left","R":[{"T":"0.186","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":90.233,"y":43.301,"w":2.713,"clr":-1,"A":"left","R":[{"T":"0.124","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":53.108,"y":44.801,"w":2.713,"clr":-1,"A":"left","R":[{"T":"0.116","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":64.94,"y":44.801,"w":3.345,"clr":-1,"A":"left","R":[{"T":"0.0696","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":77.315,"y":44.801,"w":3.345,"clr":-1,"A":"left","R":[{"T":"0.0435","S":-1,"TS":[2,13,0,0]}]},{"oc":"#231f20","x":90.233,"y":44.801,"w":2.713,"clr":-1,"A":"left","R":[{"T":"0.029","S":-1,"TS":[2,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1174,"AM":1024,"x":16.942,"y":1.989,"w":54.435,"h":0.862,"TU":"Name(s) shown on tax return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1175,"AM":1024,"x":71.958,"y":2.055,"w":22.11,"h":0.907,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A461_L1_1_","EN":0},"TI":1176,"AM":0,"x":49.706,"y":6.515,"w":11.983,"h":1.717,"TU":"Line 1(a). Enter your adjusted gross income for each period (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A461_L1_2_","EN":0},"TI":1177,"AM":0,"x":62.078,"y":6.482,"w":11.983,"h":1.717,"TU":"Line 1(b). Enter your adjusted gross income for each period (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A461_L1_3_","EN":0},"TI":1178,"AM":0,"x":74.514,"y":6.471,"w":11.983,"h":1.717,"TU":"Line 1(c). Enter your adjusted gross income for each period (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A461_L1_4_","EN":0},"TI":1179,"AM":0,"x":87.149,"y":6.493,"w":11.983,"h":1.717,"TU":"Line 1(d). Enter your adjusted gross income for each period (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A462_L3_1_","EN":0},"TI":1180,"AM":1024,"x":49.719,"y":8.984,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A462_L3_2_","EN":0},"TI":1181,"AM":1024,"x":62.21,"y":8.983,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A462_L3_3_","EN":0},"TI":1182,"AM":1024,"x":74.556,"y":9.007,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A462_L3_4_","EN":0},"TI":1183,"AM":1024,"x":86.977,"y":9.022,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A463_L4_1_","EN":0},"TI":1184,"AM":0,"x":49.823,"y":10.144,"w":11.983,"h":1.822,"TU":"Line 4(a). If you itemize, enter itemized deductions for the period shown in each column. All others enter zero and skip to line 7. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A463_L4_2_","EN":0},"TI":1185,"AM":0,"x":62.096,"y":10.09,"w":11.983,"h":1.822,"TU":"Line 4(b). If you itemize, enter itemized deductions for the period shown in each column. All others enter zero and skip to line 7. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A463_L4_3_","EN":0},"TI":1186,"AM":0,"x":74.843,"y":10.095,"w":11.983,"h":1.822,"TU":"Line 4(c). If you itemize, enter itemized deductions for the period shown in each column. All others enter zero and skip to line 7. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A463_L4_4_","EN":0},"TI":1187,"AM":0,"x":86.938,"y":10.067,"w":11.983,"h":1.822,"TU":"Line 4(d). If you itemize, enter itemized deductions for the period shown in each column. All others enter zero and skip to line 7. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A464_L6_1_","EN":0},"TI":1188,"AM":0,"x":49.719,"y":12.734,"w":12.189,"h":0.833,"TU":"Line 6(a). Multiply line 4 by line 5 (see instructions if line 3 is more than $150,000)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A464_L6_2_","EN":0},"TI":1189,"AM":0,"x":62.318,"y":12.737,"w":12.189,"h":0.833,"TU":"Line 6(b). Multiply line 4 by line 5 (see instructions if line 3 is more than $150,000)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A464_L6_3_","EN":0},"TI":1190,"AM":0,"x":74.522,"y":12.749,"w":12.189,"h":0.833,"TU":"Line 6(c). Multiply line 4 by line 5 (see instructions if line 3 is more than $150,000)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A464_L6_4_","EN":0},"TI":1191,"AM":0,"x":86.943,"y":12.761,"w":12.189,"h":0.833,"TU":"Line 6(d). Multiply line 4 by line 5 (see instructions if line 3 is more than $150,000)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A465_L7_1_","EN":0},"TI":1192,"AM":0,"x":49.647,"y":14.91,"w":11.9,"h":1.429,"TU":"Line 7(a). In each column, enter the full amount of your standard deduction from Form 1040, line 40, or Form 1040A, line 24."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A465_L7_2_","EN":0},"TI":1193,"AM":0,"x":62.354,"y":14.945,"w":11.901,"h":1.429,"TU":"Line 7(b). In each column, enter the full amount of your standard deduction from Form 1040, line 40, or Form 1040A, line 24"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A465_L7_3_","EN":0},"TI":1194,"AM":0,"x":74.667,"y":14.917,"w":11.901,"h":1.429,"TU":"Line 7(c). In each column, enter the full amount of your standard deduction from Form 1040, line 40, or Form 1040A, line 24"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A465_L7_4_","EN":0},"TI":1195,"AM":0,"x":87.088,"y":14.929,"w":11.901,"h":1.429,"TU":"Line 7(d). In each column, enter the full amount of your standard deduction from Form 1040, line 40, or Form 1040A, line 24"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A466_L8_1_","EN":0},"TI":1196,"AM":1024,"x":49.719,"y":16.526,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A466_L8_2_","EN":0},"TI":1197,"AM":1024,"x":62.21,"y":16.533,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A466_L8_3_","EN":0},"TI":1198,"AM":1024,"x":74.631,"y":16.506,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A466_L8_4_","EN":0},"TI":1199,"AM":1024,"x":86.943,"y":16.478,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A467_L9_1_","EN":0},"TI":1200,"AM":1024,"x":49.719,"y":17.276,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A467_L9_2_","EN":0},"TI":1201,"AM":1024,"x":62.318,"y":17.284,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A467_L9_3_","EN":0},"TI":1202,"AM":1024,"x":74.631,"y":17.296,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A467_L9_4_","EN":0},"TI":1203,"AM":1024,"x":86.835,"y":17.308,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A468_L10_1_","EN":0},"TI":1204,"AM":0,"x":49.59,"y":20.049,"w":11.983,"h":0.873,"TU":"Line 10(a). In each column, multiply $3,900 by the total number of exemptions claimed (see instructions if line 3 is more than $150,000)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A468_L10_2_","EN":0},"TI":1205,"AM":0,"x":61.971,"y":20.017,"w":11.983,"h":0.873,"TU":"Line 10(b). In each column, multiply $3,900 by the total number of exemptions claimed (see instructions if line 3 is more than $150,000)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A468_L10_3_","EN":0},"TI":1206,"AM":0,"x":74.565,"y":20.02,"w":11.983,"h":0.873,"TU":"Line 10(c). In each column, multiply $3,900 by the total number of exemptions claimed (see instructions if line 3 is more than $150,000)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A468_L10_4_","EN":0},"TI":1207,"AM":0,"x":86.923,"y":20.002,"w":11.983,"h":0.873,"TU":"Line 10(d). In each column, multiply $3,900 by the total number of exemptions claimed (see instructions if line 3 is more than $150,000)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A507_L11_1_","EN":0},"TI":1208,"AM":1024,"x":49.487,"y":21.08,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A507_L11_2_","EN":0},"TI":1209,"AM":1024,"x":61.977,"y":21.074,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A507_L11_3_","EN":0},"TI":1210,"AM":1024,"x":74.214,"y":21.098,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A507_L11_4_","EN":0},"TI":1211,"AM":1024,"x":86.744,"y":21.071,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A489_L12_1_","EN":0},"TI":1212,"AM":0,"x":49.487,"y":21.83,"w":12.189,"h":0.833,"TU":"Line 12(a). Figure your tax on the amount on line 11 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A489_L12_2_","EN":0},"TI":1213,"AM":0,"x":61.977,"y":21.824,"w":12.189,"h":0.833,"TU":"Line 12(b). Figure your tax on the amount on line 11 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A489_L12_3_","EN":0},"TI":1214,"AM":0,"x":74.214,"y":21.848,"w":12.189,"h":0.833,"TU":"Line 12(c). Figure your tax on the amount on line 11 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A489_L12_4_","EN":0},"TI":1215,"AM":0,"x":86.744,"y":21.821,"w":12.189,"h":0.833,"TU":"Line 12(d). Figure your tax on the amount on line 11 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A470_L13_1_","EN":0},"TI":1216,"AM":1024,"x":49.603,"y":22.58,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A470_L13_2_","EN":0},"TI":1217,"AM":1024,"x":62.093,"y":22.574,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A470_L13_3_","EN":0},"TI":1218,"AM":1024,"x":74.331,"y":22.598,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A470_L13_4_","EN":0},"TI":1219,"AM":1024,"x":86.86,"y":22.571,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A471_L14_1_","EN":0},"TI":1220,"AM":0,"x":49.836,"y":24.768,"w":12.189,"h":0.833,"TU":"Line 14(a). Enter other taxes for each payment period including, if applicable, Additional Medicare Tax and / or Net Investment Income Tax (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A471_L14_2_","EN":0},"TI":1221,"AM":0,"x":62.326,"y":24.762,"w":12.189,"h":0.833,"TU":"Line 14(b). Enter other taxes for each payment period including, if applicable, Additional Medicare Tax and / or Net Investment Income Tax (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A471_L14_3_","EN":0},"TI":1222,"AM":0,"x":74.563,"y":24.787,"w":12.189,"h":0.833,"TU":"Line 14(c). Enter other taxes for each payment period including, if applicable, Additional Medicare Tax and / or Net Investment Income Tax (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A471_L14_4_","EN":0},"TI":1223,"AM":0,"x":87.093,"y":24.759,"w":12.189,"h":0.833,"TU":"Line 14(d). Enter other taxes for each payment period including, if applicable, Additional Medicare Tax and / or Net Investment Income Tax (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A472_L15_1_","EN":0},"TI":1224,"AM":1024,"x":49.836,"y":25.518,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A472_L15_2_","EN":0},"TI":1225,"AM":1024,"x":62.326,"y":25.512,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A472_L15_3_","EN":0},"TI":1226,"AM":1024,"x":74.563,"y":25.537,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A472_L15_4_","EN":0},"TI":1227,"AM":1024,"x":87.093,"y":25.509,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A473_L16_1_","EN":0},"TI":1228,"AM":0,"x":49.686,"y":26.613,"w":12.024,"h":1.018,"TU":"Line 16(a). For each period, enter the same type of credits as allowed on Form 2210, Part I, lines 1 and 3 (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A473_L16_2_","EN":0},"TI":1229,"AM":0,"x":62.176,"y":26.607,"w":12.024,"h":1.018,"TU":"Line 16(b). For each period, enter the same type of credits as allowed on Form 2210, Part I, lines 1 and 3 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A473_L16_3_","EN":0},"TI":1230,"AM":0,"x":74.413,"y":26.632,"w":12.024,"h":1.018,"TU":"Line 16(c). For each period, enter the same type of credits as allowed on Form 2210, Part I, lines 1 and 3 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A473_L16_4_","EN":0},"TI":1231,"AM":0,"x":86.943,"y":26.604,"w":12.024,"h":1.018,"TU":"Line 16(d). For each period, enter the same type of credits as allowed on Form 2210, Part I, lines 1 and 3 (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A485_L17_1_","EN":0},"TI":1232,"AM":1024,"x":49.603,"y":27.684,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A485_L17_2_","EN":0},"TI":1233,"AM":1024,"x":62.093,"y":27.678,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A485_L17_3_","EN":0},"TI":1234,"AM":1024,"x":74.331,"y":27.702,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A485_L17_4_","EN":0},"TI":1235,"AM":1024,"x":86.86,"y":27.675,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A474_L19_1_","EN":0},"TI":1236,"AM":1024,"x":49.603,"y":29.184,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A474_L19_2_","EN":0},"TI":1237,"AM":1024,"x":61.978,"y":29.184,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A474_L19_3_","EN":0},"TI":1238,"AM":1024,"x":74.353,"y":29.184,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A474_L19_4_","EN":0},"TI":1239,"AM":1024,"x":86.728,"y":29.184,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A490_L20_1_","EN":0},"TI":1240,"AM":1024,"x":62.081,"y":30.205,"w":11.983,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A490_L20_2_","EN":0},"TI":1241,"AM":1024,"x":74.367,"y":30.183,"w":11.983,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A490_L20_3_","EN":0},"TI":1242,"AM":1024,"x":86.788,"y":30.195,"w":11.983,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A475_L21_1_","EN":0},"TI":1243,"AM":1024,"x":49.603,"y":32.184,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A475_L21_2_","EN":0},"TI":1244,"AM":1024,"x":61.985,"y":32.186,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A475_L21_3_","EN":0},"TI":1245,"AM":1024,"x":74.297,"y":32.198,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A475_L21_4_","EN":0},"TI":1246,"AM":1024,"x":86.827,"y":32.17,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A476_L22_1_","EN":0},"TI":1247,"AM":1024,"x":49.603,"y":32.934,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A476_L22_2_","EN":0},"TI":1248,"AM":1024,"x":61.985,"y":32.936,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A476_L22_3_","EN":0},"TI":1249,"AM":1024,"x":74.297,"y":32.948,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A476_L22_4_","EN":0},"TI":1250,"AM":1024,"x":86.827,"y":32.92,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A491_L23_1_","EN":0},"TI":1251,"AM":1024,"x":62.061,"y":33.797,"w":12.024,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A491_L23_2_","EN":0},"TI":1252,"AM":1024,"x":74.455,"y":33.786,"w":12.024,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A491_L23_3_","EN":0},"TI":1253,"AM":1024,"x":86.985,"y":33.798,"w":12.024,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A477_L24_1_","EN":0},"TI":1254,"AM":1024,"x":49.603,"y":35.184,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A477_L24_2_","EN":0},"TI":1255,"AM":1024,"x":62.093,"y":35.182,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A477_L24_3_","EN":0},"TI":1256,"AM":1024,"x":74.331,"y":35.167,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A477_L24_4_","EN":0},"TI":1257,"AM":1024,"x":86.86,"y":35.179,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A479_L26_1_","EN":0},"TI":1258,"AM":1024,"x":49.686,"y":36.442,"w":12.024,"h":0.932},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A479_L26_2_","EN":0},"TI":1259,"AM":1024,"x":62.176,"y":36.441,"w":12.024,"h":0.932},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A479_L26_3_","EN":0},"TI":1260,"AM":1024,"x":74.413,"y":36.426,"w":12.024,"h":0.931},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A479_L26_4_","EN":0},"TI":1261,"AM":1024,"x":86.943,"y":36.438,"w":12.024,"h":0.931},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A480_L27A_1_","EN":0},"TI":1262,"AM":0,"x":49.686,"y":38.297,"w":12.024,"h":1.334,"TU":"Line 26(a). Net earnings from self-employment for the period (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A480_L27A_2_","EN":0},"TI":1263,"AM":0,"x":62.176,"y":38.296,"w":12.024,"h":1.334,"TU":"Line 26(b). Net earnings from self-employment for the period (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A480_L27A_3_","EN":0},"TI":1264,"AM":0,"x":74.413,"y":38.281,"w":12.024,"h":1.334,"TU":"Line 26(c). Net earnings from self-employment for the period (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A480_L27A_4_","EN":0},"TI":1265,"AM":0,"x":86.943,"y":38.293,"w":12.024,"h":1.334,"TU":"Line 26(d). Net earnings from self-employment for the period (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A482_L29_1_","EN":0},"TI":1266,"AM":0,"x":49.631,"y":41.631,"w":11.901,"h":1.073,"TU":"Line 28(a). Enter actual wages for the period subject to social security tax or the 6.2% portion of the 7.65% railroad retirement (tier 1) tax. Exception: If you filed Form 4137 or Form 8919, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A482_L29_2_","EN":0},"TI":1267,"AM":0,"x":62.121,"y":41.63,"w":11.901,"h":1.073,"TU":"Line 28(b). Enter actual wages for the period subject to social security tax or the 6.2% portion of the 7.65% railroad retirement (tier 1) tax. Exception: If you filed Form 4137 or Form 8919, see instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A482_L29_3_","EN":0},"TI":1268,"AM":0,"x":74.359,"y":41.615,"w":11.901,"h":1.073,"TU":"Line 28(c). Enter actual wages for the period subject to social security tax or the 6.2% portion of the 7.65% railroad retirement (tier 1) tax. Exception: If you filed Form 4137 or Form 8919, see instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A482_L29_4_","EN":0},"TI":1269,"AM":0,"x":86.888,"y":41.627,"w":11.901,"h":1.073,"TU":"Line 28(d).Enter actual wages for the period subject to social security tax or the 6.2% portion of the 7.65% railroad retirement (tier 1) tax. Exception: If you filed Form 4137 or Form 8919, see instructions"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A557_L30_1_","EN":0},"TI":1270,"AM":1024,"x":49.487,"y":42.757,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A557_L30_2_","EN":0},"TI":1271,"AM":1024,"x":61.977,"y":42.756,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A557_L30_3_","EN":0},"TI":1272,"AM":1024,"x":74.214,"y":42.74,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A557_L30_4_","EN":0},"TI":1273,"AM":1024,"x":86.744,"y":42.752,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A483_L31_1_","EN":0},"TI":1274,"AM":1024,"x":49.487,"y":44.257,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A483_L31_2_","EN":0},"TI":1275,"AM":1024,"x":61.977,"y":44.255,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A483_L31_3_","EN":0},"TI":1276,"AM":1024,"x":74.214,"y":44.24,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A483_L31_4_","EN":0},"TI":1277,"AM":1024,"x":86.744,"y":44.252,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A487_L34_1_","EN":0},"TI":1278,"AM":1024,"x":49.487,"y":45.757,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A487_L34_2_","EN":0},"TI":1279,"AM":1024,"x":61.977,"y":45.755,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A487_L34_3_","EN":0},"TI":1280,"AM":1024,"x":74.214,"y":45.74,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A487_L34_4_","EN":0},"TI":1281,"AM":1024,"x":86.744,"y":45.752,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A488_L35_1_","EN":0},"TI":1282,"AM":1024,"x":49.487,"y":46.507,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A488_L35_2_","EN":0},"TI":1283,"AM":1024,"x":61.977,"y":46.505,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A488_L35_3_","EN":0},"TI":1284,"AM":1024,"x":74.214,"y":46.49,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A488_L35_4_","EN":0},"TI":1285,"AM":1024,"x":86.744,"y":46.502,"w":12.189,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Underpayment of Estimated Tax by Individuals, Estates, and Trusts","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20140107142007-08'00'","ModDate":"D:20140110154347-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":3.001,"w":1.5,"l":31.531,"oc":"#221f1f"},{"x":33.735,"y":3.001,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":3.751,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":17.085,"y":3.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.085,"y":5.251,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":2.235,"y":5.251,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":6.001,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":4.485,"y":5.251,"w":1.125,"l":31.531,"oc":"#221f1f"},{"x":4.485,"y":6.001,"w":0.75,"l":31.531,"oc":"#221f1f"},{"x":17.085,"y":8.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":8.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":8.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":8.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":8.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":9,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":9,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":9,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":9,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":9,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":9.75,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":9.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":9.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":9.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":9.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":12,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":12,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":12,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":12,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":12,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":12.75,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":12.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":12.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":12.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":12.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":13.5,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":13.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":13.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":13.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":13.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":16.5,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":16.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":16.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":16.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":16.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":17.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":17.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":17.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":17.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":17.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":18,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":18,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":18,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":18,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":18,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":21,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":21,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":21,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":21,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":21,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":21.75,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":21.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":21.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":21.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":21.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":22.5,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":22.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":22.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":22.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":22.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":23.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":23.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":23.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":23.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":23.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":25.5,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":25.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":25.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":25.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":25.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":26.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":26.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":26.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":26.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":26.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":27.75,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":27.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":27.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":27.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":27.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":28.5,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":28.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":28.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":28.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":28.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":29.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":29.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":29.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":29.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":29.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":30,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":22.485,"y":30,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":30,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":30,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.985,"y":30,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":32.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":32.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":32.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":32.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":32.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":33,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":33,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":33,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":33,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":33,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":33.749,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":22.485,"y":33.749,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":33.749,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":33.749,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":35.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":18.001,"y":35.25,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":18.001,"y":33.749,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":22.485,"y":35.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":35.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":35.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":35.999,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":35.999,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":35.999,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":35.999,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":35.999,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.235,"y":37.501,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":38.251,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":4.484,"y":37.501,"w":1.125,"l":31.531,"oc":"#221f1f"},{"x":4.484,"y":38.251,"w":0.75,"l":31.531,"oc":"#221f1f"},{"x":17.085,"y":39.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":39.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":39.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":39.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":39.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":40.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":40.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":40.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":40.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":40.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":42.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":42.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":42.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":42.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":42.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":43.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":43.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":43.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":43.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":43.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":44.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":44.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":44.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":44.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":44.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":45.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":45.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":45.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":45.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":45.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":45.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":45.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":45.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":45.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":45.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.085,"y":46.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":46.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.485,"y":46.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.985,"y":46.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.485,"y":46.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.235,"y":47.251,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":18.001,"y":3.735,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":17.101,"y":3.735,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":18.001,"y":3.735,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":22.501,"y":3.735,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":27.001,"y":3.735,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":31.501,"y":3.735,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":18.001,"y":5.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":17.101,"y":5.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.501,"y":5.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":27.001,"y":5.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":31.501,"y":5.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":18.001,"y":8.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":8.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":8.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":8.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":8.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":8.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":8.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":8.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":8.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":8.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":9.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":17.101,"y":9.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.501,"y":9.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":27.001,"y":9.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":31.501,"y":9.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":18.001,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":13.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":17.101,"y":13.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":22.501,"y":13.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":27.001,"y":13.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":31.501,"y":13.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":18.001,"y":16.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":16.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":16.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":16.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":16.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":17.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":17.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":17.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":17.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":17.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":17.984,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":17.101,"y":17.984,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":22.501,"y":17.984,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":27.001,"y":17.984,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":31.501,"y":17.984,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":18.001,"y":20.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":20.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":20.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":20.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":20.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":21.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":21.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":21.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":21.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":21.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":23.234,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":17.101,"y":23.234,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.501,"y":23.234,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":27.001,"y":23.234,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":31.501,"y":23.234,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":18.001,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":26.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":17.101,"y":26.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.501,"y":26.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.001,"y":26.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.501,"y":26.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.001,"y":27.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":27.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":27.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":27.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":27.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":28.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":28.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":28.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":28.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":28.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":29.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.501,"y":29.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.001,"y":29.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.501,"y":29.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.001,"y":29.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.501,"y":29.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.001,"y":31.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":31.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":31.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":31.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":31.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":31.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":32.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":32.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":32.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":32.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":32.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":33.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":17.101,"y":33.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.501,"y":33.749,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":18.001,"y":33.749,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":27.001,"y":33.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.501,"y":33.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.001,"y":35.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":35.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":35.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":35.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":35.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":35.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":17.101,"y":35.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.501,"y":35.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.001,"y":35.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.501,"y":35.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.001,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":17.101,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.501,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.001,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.501,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.001,"y":39.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":39.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":39.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":39.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":39.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":40.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":17.101,"y":40.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.501,"y":40.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":27.001,"y":40.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":31.501,"y":40.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":18.001,"y":42.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":42.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":42.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":42.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":42.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":43.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":43.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":43.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":43.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":43.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":44.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":44.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":44.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":44.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":44.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":44.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":44.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":44.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":44.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":44.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":45.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":45.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":45.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":45.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":45.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.001,"y":46.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":46.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":46.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.001,"y":46.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":46.485,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":5.251,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":18.001,"y":30,"w":4.5,"h":1.5,"oc":"#bebfc1"},{"x":18.001,"y":31.5,"w":4.5,"h":0.75,"oc":"#bebfc1"},{"x":18.001,"y":33.749,"w":4.5,"h":1.5,"oc":"#bebfc1"},{"x":2.251,"y":37.501,"w":2.25,"h":0.75,"oc":"#221f1f"}],"Texts":[{"x":2.001,"y":1.9729999999999999,"w":7.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 2210 (2013)","S":2,"TS":[0,10,0,0]}]},{"x":34.277,"y":2.01,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":2.01,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":2.822,"w":25.825,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule AI—Annualized Income Installment Method ","S":-1,"TS":[0,13,0,0]}]},{"x":18.141,"y":2.822,"w":9.668,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(See the instructions.)","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":3.6079999999999997,"w":8.632,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Estates and trusts, ","S":-1,"TS":[0,10.04,0,0]}]},{"x":5.799,"y":3.6079999999999997,"w":3.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"do not","S":-1,"TS":[0,10.04,0,0]}]},{"x":7.143,"y":3.6079999999999997,"w":19.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" use the period ending dates shown to the ","S":-1,"TS":[0,10.04,0,0]}]},{"x":2.001,"y":4.296,"w":32.77,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"right. Instead, use the following: 2/28/13, 4/30/13, 7/31/13, and 11/30/13.","S":-1,"TS":[0,10.04,0,0]}]},{"x":19.782,"y":3.6100000000000003,"w":1.444,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(a) ","S":51,"TS":[0,9,0,0]}]},{"x":18.719,"y":4.06,"w":6.836,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1/1/13–3/31/13","S":51,"TS":[0,9,0,0]}]},{"x":24.275,"y":3.6100000000000003,"w":1.481,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(b) ","S":51,"TS":[0,9,0,0]}]},{"x":23.219,"y":4.06,"w":6.836,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1/1/13–5/31/13","S":51,"TS":[0,9,0,0]}]},{"x":28.782,"y":3.6100000000000003,"w":1.722,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(c) ","S":51,"TS":[0,9,0,0]}]},{"x":27.719,"y":4.06,"w":6.836,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1/1/13–8/31/13","S":51,"TS":[0,9,0,0]}]},{"x":33.275,"y":3.6100000000000003,"w":1.759,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(d) ","S":51,"TS":[0,9,0,0]}]},{"x":32.115,"y":4.06,"w":7.392,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1/1/13–12/31/13","S":51,"TS":[0,9,0,0]}]},{"x":2.327,"y":5.072,"w":2.833,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I ","S":-1,"TS":[0,13,0,0]}]},{"x":4.813,"y":5.135,"w":15.196,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Annualized Income Installments","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":4.996,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":4.983,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":16.851,"y":4.996,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":17.751,"y":4.983,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":22.251,"y":4.983,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":26.751,"y":4.983,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":31.251,"y":4.983,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2.588,"y":5.965,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":6.652,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":7.339,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":5.965,"w":24.485,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter your adjusted gross income for each period (see ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.351,"y":6.652,"w":23.226,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions). (Estates and trusts, enter your taxable ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.351,"y":7.339,"w":21.67,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"income without your exemption for each period.)","S":-1,"TS":[0,11.55,0,0]}]},{"x":15.501,"y":7.339,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":16.251,"y":7.339,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":17.144,"y":7.34,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":8.089,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":8.089,"w":26.894,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Annualization amounts. (Estates and trusts, see instructions)","S":-1,"TS":[0,10.83,0,0]}]},{"x":17.144,"y":8.089,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":8.839,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":8.839,"w":19.19,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Annualized income. Multiply line 1 by line 2","S":3,"TS":[0,12,0,0]}]},{"x":14.751,"y":8.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":15.501,"y":8.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":16.251,"y":8.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":17.144,"y":8.839,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":9.714,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":10.402,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":11.089,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":9.714,"w":28.892,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you itemize, enter itemized deductions for the period shown in ","S":-1,"TS":[0,10.29,0,0]}]},{"x":3.349,"y":10.402,"w":23.378,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"each column. All others enter -0-, and skip to line 7. ","S":-1,"TS":[0,10.29,0,0]}]},{"x":14.181,"y":10.402,"w":5.036,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Exception:","S":-1,"TS":[0,10.29,0,0]}]},{"x":16.476,"y":10.402,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,10.29,0,0]}]},{"x":3.351,"y":11.089,"w":27.454,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Estates and trusts, skip to line 9 and enter amount from line 3","S":-1,"TS":[0,10.29,0,0]}]},{"x":17.144,"y":11.089,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":11.839,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":11.839,"w":10.15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Annualization amounts","S":3,"TS":[0,12,0,0]}]},{"x":9.501,"y":11.839,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":17.144,"y":11.839,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":12.589,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":12.589,"w":31.714,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 4 by line 5 (see instructions if line 3 is more than $150,000)","S":-1,"TS":[0,9.75,0,0]}]},{"x":16.73,"y":12.589,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":17.144,"y":12.589,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":13.527,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":14.214,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":14.901,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":15.588999999999999,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":13.527,"w":24.508,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"In each column, enter the full amount of your standard ","S":-1,"TS":[0,10.65,0,0]}]},{"x":3.351,"y":14.214,"w":26.956,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"deduction from Form 1040, line 40, or Form 1040A, line 24. ","S":-1,"TS":[0,10.65,0,0]}]},{"x":3.35,"y":14.901,"w":20.597,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Form 1040NR or 1040NR-EZ filers, enter -0-. ","S":-1,"TS":[0,10.65,0,0]}]},{"x":14.068,"y":14.901,"w":5.036,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Exception:","S":-1,"TS":[0,10.65,0,0]}]},{"x":16.476,"y":14.901,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,10.65,0,0]}]},{"x":3.351,"y":15.588999999999999,"w":27.026,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Indian students and business apprentices, see instructions.).","S":-1,"TS":[0,10.65,0,0]}]},{"x":17.144,"y":15.588999999999999,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":16.339,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":16.339,"w":4.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":5.779,"y":16.339,"w":2.795,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"larger","S":3,"TS":[0,12,0,0]}]},{"x":7.351,"y":16.339,"w":7.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of line 6 or line 7","S":3,"TS":[0,12,0,0]}]},{"x":11.751,"y":16.339,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"x":17.144,"y":16.339,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":17.089,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":17.089,"w":11.466,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 8 from line 3","S":3,"TS":[0,12,0,0]}]},{"x":10.251,"y":17.089,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":17.144,"y":17.089,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":18.027,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":18.714,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":19.401,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":20.089,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":18.026,"w":23.493,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"In each column, multiply $3,900 by the total number ","S":3,"TS":[0,12,0,0]}]},{"x":3.352,"y":18.713,"w":22.708,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of exemptions claimed. (see instructions if line 3 is ","S":3,"TS":[0,12,0,0]}]},{"x":3.352,"y":19.401,"w":21.305,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"more than $150,000) (Estates, trusts, and Form ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":20.088,"w":21.133,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1040NR or 1040NR-EZ filers, see instructions.)","S":3,"TS":[0,12,0,0]}]},{"x":15.502,"y":20.088,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":16.252,"y":20.088,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":20.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":20.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":20.839,"w":23.281,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 10 from line 9. If zero or less, enter -0- ","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":20.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":21.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":21.589,"w":26.173,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Figure your tax on the amount on line 11 (see instructions) ","S":-1,"TS":[0,11.1,0,0]}]},{"x":16.988,"y":21.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":22.339,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":22.339,"w":25.93,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Self-employment tax from line 34 (complete Part II below) ","S":-1,"TS":[0,11.1,0,0]}]},{"x":16.988,"y":22.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":23.214,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":23.901,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":24.589,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":23.214,"w":19.133,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter other taxes for each payment period ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":23.901,"w":21.651,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"including, if applicable, Additional Medicare Tax ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":24.589,"w":23.597,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and/or Net Investment Income Tax (see instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":24.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":25.339,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":25.339,"w":15.265,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total tax. Add lines 12, 13, and 14","S":3,"TS":[0,12,0,0]}]},{"x":12.501,"y":25.339,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":25.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":26.151,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":26.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":26.151,"w":26.281,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"For each period, enter the same type of credits as allowed ","S":-1,"TS":[0,10.92,0,0]}]},{"x":3.35,"y":26.839,"w":23.229,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on Form 2210, Part I, lines 1 and 3 (see instructions)","S":-1,"TS":[0,10.92,0,0]}]},{"x":15.499,"y":26.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.92,0,0]}]},{"x":16.249,"y":26.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.92,0,0]}]},{"x":16.988,"y":26.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":27.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":27.589,"w":23.559,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 16 from line 15. If zero or less, enter -0-","S":-1,"TS":[0,11.55,0,0]}]},{"x":16.25,"y":27.589,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":16.988,"y":27.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":28.339,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":28.339,"w":10.038,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Applicable percentage","S":3,"TS":[0,12,0,0]}]},{"x":9.501,"y":28.339,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":28.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":29.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":29.089,"w":11.282,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 17 by line 18","S":3,"TS":[0,12,0,0]}]},{"x":10.251,"y":29.089,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":29.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":29.901,"w":20.874,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete lines 20–25 of one column before ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":30.589,"w":16.798,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"going to line 20 of the next column.","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":31.339,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":31.339,"w":28.119,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the total of the amounts in all previous columns of line 25","S":-1,"TS":[0,10.379999999999999,0,0]}]},{"x":16.988,"y":31.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":32.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":32.089,"w":23.559,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 20 from line 19. If zero or less, enter -0-","S":-1,"TS":[0,11.55,0,0]}]},{"x":16.25,"y":32.089,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":16.988,"y":32.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":32.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":32.839,"w":28.825,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter 25% (.25) of line 9 on page 1 of Form 2210 in each column","S":-1,"TS":[0,10.2,0,0]}]},{"x":16.988,"y":32.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":33.651,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":34.338,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":33.651,"w":23.359,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 25 of the previous column from line 24 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":34.338,"w":6.725,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of that column","S":3,"TS":[0,12,0,0]}]},{"x":7.251,"y":34.338,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":34.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":35.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"24 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":35.089,"w":8.893,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 22 and 23","S":3,"TS":[0,12,0,0]}]},{"x":8.751,"y":35.089,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":35.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":35.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":36.526,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":35.839,"w":4.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":5.898,"y":35.839,"w":3.774,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"smaller ","S":3,"TS":[0,12,0,0]}]},{"x":8.08,"y":35.839,"w":14.356,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of line 21 or line 24 here and on ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":36.537,"w":11.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 2210, Part IV, line 18","S":3,"TS":[0,12,0,0]}]},{"x":10.252,"y":36.537,"w":10.664,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"x":16,"y":36.443,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":16.988,"y":36.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"x":2.235,"y":37.322,"w":3.128,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II ","S":-1,"TS":[0,13,0,0]}]},{"x":4.812,"y":37.385,"w":16.013,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Annualized Self-Employment Tax ","S":-1,"TS":[0,13,0,0]}]},{"x":14.82,"y":37.385,"w":18.357,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Form 1040 and Form 1040NR filers only)","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":37.246,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":37.233,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":16.851,"y":37.246,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":17.751,"y":37.233,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":22.251,"y":37.233,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":26.751,"y":37.233,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":31.251,"y":37.233,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2.275,"y":38.153,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"26 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":38.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":38.153,"w":22.338,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Net earnings from self-employment for the period ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":38.84,"w":7.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":8,"y":38.84,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":38.84,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":39.59,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"27 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":39.59,"w":14.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Prorated social security tax limit","S":3,"TS":[0,12,0,0]}]},{"x":11.751,"y":39.59,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":39.59,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"27","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":40.465,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"28 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":41.153,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":41.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":40.465,"w":29.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter actual wages for the period subject to social security tax or ","S":-1,"TS":[0,10.2,0,0]}]},{"x":3.35,"y":41.153,"w":27.265,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the 6.2% portion of the 7.65% railroad retirement (tier 1) tax. ","S":-1,"TS":[0,10.2,0,0]}]},{"x":3.35,"y":41.84,"w":5.314,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Exception: ","S":-1,"TS":[0,10.2,0,0]}]},{"x":5.742,"y":41.84,"w":24.174,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you filed Form 4137 or Form 8919, see instructions ","S":-1,"TS":[0,10.2,0,0]}]},{"x":16.988,"y":41.84,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"28","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":42.59,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"29 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":42.59,"w":23.559,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 28 from line 27. If zero or less, enter -0-","S":-1,"TS":[0,11.55,0,0]}]},{"x":16.25,"y":42.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":16.988,"y":42.59,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"29","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":43.34,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"30 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":43.34,"w":10.15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Annualization amounts","S":3,"TS":[0,12,0,0]}]},{"x":9.501,"y":43.34,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":43.34,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"30","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":44.09,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"31 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":44.09,"w":10.041,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 30 by the ","S":3,"TS":[0,12,0,0]}]},{"x":8.999,"y":44.09,"w":3.774,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"smaller ","S":3,"TS":[0,12,0,0]}]},{"x":11.122,"y":44.09,"w":8.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of line 26 or line 29","S":3,"TS":[0,12,0,0]}]},{"x":16.251,"y":44.09,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":44.09,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"31","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":44.84,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"32 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":44.84,"w":10.15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Annualization amounts","S":3,"TS":[0,12,0,0]}]},{"x":9.501,"y":44.84,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":44.84,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"32","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":45.59,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"33 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":45.59,"w":11.282,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 26 by line 32","S":3,"TS":[0,12,0,0]}]},{"x":10.251,"y":45.59,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":16.988,"y":45.59,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"33","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":46.34,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"34 ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":46.34,"w":23.638,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 31 and 33. Enter here and on line 13 above","S":-1,"TS":[0,10.92,0,0]}]},{"x":15.5,"y":46.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.92,0,0]}]},{"x":16,"y":46.246,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":16.988,"y":46.34,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"34","S":3,"TS":[0,12,0,0]}]},{"x":31.897,"y":47.072,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":33.04,"y":47.072,"w":2.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2210","S":-1,"TS":[0,13,0,0]}]},{"x":34.43,"y":47.072,"w":3.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":19.803,"y":8.05,"w":0.632,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"4","S":-1,"TS":[2,13,0,0]}]},{"x":24.048,"y":8.05,"w":1.449,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"2.4","S":-1,"TS":[2,13,0,0]}]},{"x":28.548,"y":8.05,"w":1.449,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"1.5","S":-1,"TS":[2,13,0,0]}]},{"x":33.303,"y":8.05,"w":0.632,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"1","S":-1,"TS":[2,13,0,0]}]},{"x":19.803,"y":11.8,"w":0.632,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"4","S":-1,"TS":[2,13,0,0]}]},{"x":24.048,"y":11.8,"w":1.449,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"2.4","S":-1,"TS":[2,13,0,0]}]},{"x":28.548,"y":11.8,"w":1.449,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"1.5","S":-1,"TS":[2,13,0,0]}]},{"x":33.303,"y":11.8,"w":0.632,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"1","S":-1,"TS":[2,13,0,0]}]},{"x":19.171,"y":28.3,"w":2.655,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"22.5%","S":-1,"TS":[2,13,0,0]}]},{"x":23.926,"y":28.3,"w":1.838,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"45%","S":-1,"TS":[2,13,0,0]}]},{"x":28.171,"y":28.3,"w":2.655,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"67.5%","S":-1,"TS":[2,13,0,0]}]},{"x":32.926,"y":28.3,"w":1.838,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"90%","S":-1,"TS":[2,13,0,0]}]},{"x":18.76,"y":39.551,"w":3.969,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"$28,425","S":-1,"TS":[2,13,0,0]}]},{"x":23.26,"y":39.551,"w":3.969,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"$47,375","S":-1,"TS":[2,13,0,0]}]},{"x":27.76,"y":39.551,"w":3.969,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"$75,800","S":-1,"TS":[2,13,0,0]}]},{"x":32.063,"y":39.551,"w":4.601,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"$113,700","S":-1,"TS":[2,13,0,0]}]},{"x":19.153,"y":43.301,"w":2.713,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"0.496","S":-1,"TS":[2,13,0,0]}]},{"x":23.455,"y":43.301,"w":3.345,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"0.2976","S":-1,"TS":[2,13,0,0]}]},{"x":28.153,"y":43.301,"w":2.713,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"0.186","S":-1,"TS":[2,13,0,0]}]},{"x":32.653,"y":43.301,"w":2.713,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"0.124","S":-1,"TS":[2,13,0,0]}]},{"x":19.153,"y":44.801,"w":2.713,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"0.116","S":-1,"TS":[2,13,0,0]}]},{"x":23.455,"y":44.801,"w":3.345,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"0.0696","S":-1,"TS":[2,13,0,0]}]},{"x":27.955,"y":44.801,"w":3.345,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"0.0435","S":-1,"TS":[2,13,0,0]}]},{"x":32.653,"y":44.801,"w":2.713,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"0.029","S":-1,"TS":[2,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1478,"AM":1024,"TU":"Name(s) shown on tax return","x":6.161,"y":1.989,"w":19.794,"h":0.862},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1479,"AM":1024,"TU":"Identifying number","x":26.167,"y":2.055,"w":8.04,"h":0.907},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A461_L1_1_","EN":0},"TI":1480,"AM":0,"TU":"Line 1(a). Enter your adjusted gross income for each period (see instructions).","x":18.075,"y":6.515,"w":4.358,"h":1.717},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A461_L1_2_","EN":0},"TI":1481,"AM":0,"TU":"Line 1(b). Enter your adjusted gross income for each period (see instructions)","x":22.574,"y":6.482,"w":4.358,"h":1.717},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A461_L1_3_","EN":0},"TI":1482,"AM":0,"TU":"Line 1(c). Enter your adjusted gross income for each period (see instructions).","x":27.096,"y":6.471,"w":4.357,"h":1.717},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A461_L1_4_","EN":0},"TI":1483,"AM":0,"TU":"Line 1(d). Enter your adjusted gross income for each period (see instructions)","x":31.691,"y":6.493,"w":4.357,"h":1.717},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A462_L3_1_","EN":0},"TI":1484,"AM":1024,"x":18.08,"y":8.984,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A462_L3_2_","EN":0},"TI":1485,"AM":1024,"x":22.622,"y":8.983,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A462_L3_3_","EN":0},"TI":1486,"AM":1024,"x":27.111,"y":9.007,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A462_L3_4_","EN":0},"TI":1487,"AM":1024,"x":31.628,"y":9.022,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A463_L4_1_","EN":0},"TI":1488,"AM":0,"TU":"Line 4(a). If you itemize, enter itemized deductions for the period shown in each column. All others enter zero and skip to line 7. ","x":18.117,"y":10.144,"w":4.357,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A463_L4_2_","EN":0},"TI":1489,"AM":0,"TU":"Line 4(b). If you itemize, enter itemized deductions for the period shown in each column. All others enter zero and skip to line 7. ","x":22.58,"y":10.09,"w":4.357,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A463_L4_3_","EN":0},"TI":1490,"AM":0,"TU":"Line 4(c). If you itemize, enter itemized deductions for the period shown in each column. All others enter zero and skip to line 7. ","x":27.216,"y":10.095,"w":4.358,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A463_L4_4_","EN":0},"TI":1491,"AM":0,"TU":"Line 4(d). If you itemize, enter itemized deductions for the period shown in each column. All others enter zero and skip to line 7. ","x":31.614,"y":10.067,"w":4.357,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A464_L6_1_","EN":0},"TI":1492,"AM":0,"TU":"Line 6(a). Multiply line 4 by line 5 (see instructions if line 3 is more than $150,000).","x":18.08,"y":12.734,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A464_L6_2_","EN":0},"TI":1493,"AM":0,"TU":"Line 6(b). Multiply line 4 by line 5 (see instructions if line 3 is more than $150,000)","x":22.661,"y":12.737,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A464_L6_3_","EN":0},"TI":1494,"AM":0,"TU":"Line 6(c). Multiply line 4 by line 5 (see instructions if line 3 is more than $150,000)","x":27.099,"y":12.749,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A464_L6_4_","EN":0},"TI":1495,"AM":0,"TU":"Line 6(d). Multiply line 4 by line 5 (see instructions if line 3 is more than $150,000)","x":31.616,"y":12.761,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A465_L7_1_","EN":0},"TI":1496,"AM":0,"TU":"Line 7(a). In each column, enter the full amount of your standard deduction from Form 1040, line 40, or Form 1040A, line 24.","x":18.053,"y":14.91,"w":4.327,"h":1.429},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A465_L7_2_","EN":0},"TI":1497,"AM":0,"TU":"Line 7(b). In each column, enter the full amount of your standard deduction from Form 1040, line 40, or Form 1040A, line 24","x":22.674,"y":14.945,"w":4.328,"h":1.429},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A465_L7_3_","EN":0},"TI":1498,"AM":0,"TU":"Line 7(c). In each column, enter the full amount of your standard deduction from Form 1040, line 40, or Form 1040A, line 24","x":27.151,"y":14.917,"w":4.328,"h":1.429},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A465_L7_4_","EN":0},"TI":1499,"AM":0,"TU":"Line 7(d). In each column, enter the full amount of your standard deduction from Form 1040, line 40, or Form 1040A, line 24","x":31.668,"y":14.929,"w":4.328,"h":1.429},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A466_L8_1_","EN":0},"TI":1500,"AM":1024,"x":18.08,"y":16.526,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A466_L8_2_","EN":0},"TI":1501,"AM":1024,"x":22.622,"y":16.533,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A466_L8_3_","EN":0},"TI":1502,"AM":1024,"x":27.139,"y":16.506,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A466_L8_4_","EN":0},"TI":1503,"AM":1024,"x":31.616,"y":16.478,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A467_L9_1_","EN":0},"TI":1504,"AM":1024,"x":18.08,"y":17.276,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A467_L9_2_","EN":0},"TI":1505,"AM":1024,"x":22.661,"y":17.284,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A467_L9_3_","EN":0},"TI":1506,"AM":1024,"x":27.139,"y":17.296,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A467_L9_4_","EN":0},"TI":1507,"AM":1024,"x":31.576,"y":17.308,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A468_L10_1_","EN":0},"TI":1508,"AM":0,"TU":"Line 10(a). In each column, multiply $3,900 by the total number of exemptions claimed (see instructions if line 3 is more than $150,000).","x":18.033,"y":20.049,"w":4.357,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A468_L10_2_","EN":0},"TI":1509,"AM":0,"TU":"Line 10(b). In each column, multiply $3,900 by the total number of exemptions claimed (see instructions if line 3 is more than $150,000)","x":22.535,"y":20.017,"w":4.358,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A468_L10_3_","EN":0},"TI":1510,"AM":0,"TU":"Line 10(c). In each column, multiply $3,900 by the total number of exemptions claimed (see instructions if line 3 is more than $150,000)","x":27.115,"y":20.02,"w":4.358,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A468_L10_4_","EN":0},"TI":1511,"AM":0,"TU":"Line 10(d). In each column, multiply $3,900 by the total number of exemptions claimed (see instructions if line 3 is more than $150,000)","x":31.608,"y":20.002,"w":4.357,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A507_L11_1_","EN":0},"TI":1512,"AM":1024,"x":17.995,"y":21.08,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A507_L11_2_","EN":0},"TI":1513,"AM":1024,"x":22.537,"y":21.074,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A507_L11_3_","EN":0},"TI":1514,"AM":1024,"x":26.987,"y":21.098,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A507_L11_4_","EN":0},"TI":1515,"AM":1024,"x":31.543,"y":21.071,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A489_L12_1_","EN":0},"TI":1516,"AM":0,"TU":"Line 12(a). Figure your tax on the amount on line 11 (see instructions).","x":17.995,"y":21.83,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A489_L12_2_","EN":0},"TI":1517,"AM":0,"TU":"Line 12(b). Figure your tax on the amount on line 11 (see instructions)","x":22.537,"y":21.824,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A489_L12_3_","EN":0},"TI":1518,"AM":0,"TU":"Line 12(c). Figure your tax on the amount on line 11 (see instructions)","x":26.987,"y":21.848,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A489_L12_4_","EN":0},"TI":1519,"AM":0,"TU":"Line 12(d). Figure your tax on the amount on line 11 (see instructions)","x":31.543,"y":21.821,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A470_L13_1_","EN":0},"TI":1520,"AM":1024,"x":18.038,"y":22.58,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A470_L13_2_","EN":0},"TI":1521,"AM":1024,"x":22.579,"y":22.574,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A470_L13_3_","EN":0},"TI":1522,"AM":1024,"x":27.029,"y":22.598,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A470_L13_4_","EN":0},"TI":1523,"AM":1024,"x":31.586,"y":22.571,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A471_L14_1_","EN":0},"TI":1524,"AM":0,"TU":"Line 14(a). Enter other taxes for each payment period including, if applicable, Additional Medicare Tax and / or Net Investment Income Tax (see instructions).","x":18.122,"y":24.768,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A471_L14_2_","EN":0},"TI":1525,"AM":0,"TU":"Line 14(b). Enter other taxes for each payment period including, if applicable, Additional Medicare Tax and / or Net Investment Income Tax (see instructions)","x":22.664,"y":24.762,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A471_L14_3_","EN":0},"TI":1526,"AM":0,"TU":"Line 14(c). Enter other taxes for each payment period including, if applicable, Additional Medicare Tax and / or Net Investment Income Tax (see instructions)","x":27.114,"y":24.787,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A471_L14_4_","EN":0},"TI":1527,"AM":0,"TU":"Line 14(d). Enter other taxes for each payment period including, if applicable, Additional Medicare Tax and / or Net Investment Income Tax (see instructions)","x":31.67,"y":24.759,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A472_L15_1_","EN":0},"TI":1528,"AM":1024,"x":18.122,"y":25.518,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A472_L15_2_","EN":0},"TI":1529,"AM":1024,"x":22.664,"y":25.512,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A472_L15_3_","EN":0},"TI":1530,"AM":1024,"x":27.114,"y":25.537,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A472_L15_4_","EN":0},"TI":1531,"AM":1024,"x":31.67,"y":25.509,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A473_L16_1_","EN":0},"TI":1532,"AM":0,"TU":"Line 16(a). For each period, enter the same type of credits as allowed on Form 2210, Part I, lines 1 and 3 (see instructions).","x":18.067,"y":26.613,"w":4.373,"h":1.018},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A473_L16_2_","EN":0},"TI":1533,"AM":0,"TU":"Line 16(b). For each period, enter the same type of credits as allowed on Form 2210, Part I, lines 1 and 3 (see instructions)","x":22.609,"y":26.607,"w":4.372,"h":1.018},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A473_L16_3_","EN":0},"TI":1534,"AM":0,"TU":"Line 16(c). For each period, enter the same type of credits as allowed on Form 2210, Part I, lines 1 and 3 (see instructions)","x":27.059,"y":26.632,"w":4.372,"h":1.018},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A473_L16_4_","EN":0},"TI":1535,"AM":0,"TU":"Line 16(d). For each period, enter the same type of credits as allowed on Form 2210, Part I, lines 1 and 3 (see instructions)","x":31.616,"y":26.604,"w":4.372,"h":1.018},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A485_L17_1_","EN":0},"TI":1536,"AM":1024,"x":18.038,"y":27.684,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A485_L17_2_","EN":0},"TI":1537,"AM":1024,"x":22.579,"y":27.678,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A485_L17_3_","EN":0},"TI":1538,"AM":1024,"x":27.029,"y":27.702,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A485_L17_4_","EN":0},"TI":1539,"AM":1024,"x":31.586,"y":27.675,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A474_L19_1_","EN":0},"TI":1540,"AM":1024,"x":18.038,"y":29.184,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A474_L19_2_","EN":0},"TI":1541,"AM":1024,"x":22.538,"y":29.184,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A474_L19_3_","EN":0},"TI":1542,"AM":1024,"x":27.038,"y":29.184,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A474_L19_4_","EN":0},"TI":1543,"AM":1024,"x":31.538,"y":29.184,"w":4.47,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A490_L20_1_","EN":0},"TI":1544,"AM":1024,"x":22.575,"y":30.205,"w":4.358,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A490_L20_2_","EN":0},"TI":1545,"AM":1024,"x":27.043,"y":30.183,"w":4.358,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A490_L20_3_","EN":0},"TI":1546,"AM":1024,"x":31.559,"y":30.195,"w":4.357,"h":1.822},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A475_L21_1_","EN":0},"TI":1547,"AM":1024,"x":18.038,"y":32.184,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A475_L21_2_","EN":0},"TI":1548,"AM":1024,"x":22.54,"y":32.186,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A475_L21_3_","EN":0},"TI":1549,"AM":1024,"x":27.017,"y":32.198,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A475_L21_4_","EN":0},"TI":1550,"AM":1024,"x":31.573,"y":32.17,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A476_L22_1_","EN":0},"TI":1551,"AM":1024,"x":18.038,"y":32.934,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A476_L22_2_","EN":0},"TI":1552,"AM":1024,"x":22.54,"y":32.936,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A476_L22_3_","EN":0},"TI":1553,"AM":1024,"x":27.017,"y":32.948,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A476_L22_4_","EN":0},"TI":1554,"AM":1024,"x":31.573,"y":32.92,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A491_L23_1_","EN":0},"TI":1555,"AM":1024,"x":22.567,"y":33.797,"w":4.373,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A491_L23_2_","EN":0},"TI":1556,"AM":1024,"x":27.075,"y":33.786,"w":4.373,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A491_L23_3_","EN":0},"TI":1557,"AM":1024,"x":31.631,"y":33.798,"w":4.372,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A477_L24_1_","EN":0},"TI":1558,"AM":1024,"x":18.038,"y":35.184,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A477_L24_2_","EN":0},"TI":1559,"AM":1024,"x":22.579,"y":35.182,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A477_L24_3_","EN":0},"TI":1560,"AM":1024,"x":27.029,"y":35.167,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A477_L24_4_","EN":0},"TI":1561,"AM":1024,"x":31.586,"y":35.179,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A479_L26_1_","EN":0},"TI":1562,"AM":1024,"x":18.067,"y":36.442,"w":4.373,"h":0.932},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A479_L26_2_","EN":0},"TI":1563,"AM":1024,"x":22.609,"y":36.441,"w":4.372,"h":0.932},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A479_L26_3_","EN":0},"TI":1564,"AM":1024,"x":27.059,"y":36.426,"w":4.372,"h":0.931},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A479_L26_4_","EN":0},"TI":1565,"AM":1024,"x":31.616,"y":36.438,"w":4.372,"h":0.931},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A480_L27A_1_","EN":0},"TI":1566,"AM":0,"TU":"Line 26(a). Net earnings from self-employment for the period (see instructions).","x":18.067,"y":38.297,"w":4.373,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A480_L27A_2_","EN":0},"TI":1567,"AM":0,"TU":"Line 26(b). Net earnings from self-employment for the period (see instructions).","x":22.609,"y":38.296,"w":4.372,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A480_L27A_3_","EN":0},"TI":1568,"AM":0,"TU":"Line 26(c). Net earnings from self-employment for the period (see instructions).","x":27.059,"y":38.281,"w":4.372,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A480_L27A_4_","EN":0},"TI":1569,"AM":0,"TU":"Line 26(d). Net earnings from self-employment for the period (see instructions).","x":31.616,"y":38.293,"w":4.372,"h":1.334},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A482_L29_1_","EN":0},"TI":1570,"AM":0,"TU":"Line 28(a). Enter actual wages for the period subject to social security tax or the 6.2% portion of the 7.65% railroad retirement (tier 1) tax. Exception: If you filed Form 4137 or Form 8919, see instructions.","x":18.048,"y":41.631,"w":4.328,"h":1.073},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A482_L29_2_","EN":0},"TI":1571,"AM":0,"TU":"Line 28(b). Enter actual wages for the period subject to social security tax or the 6.2% portion of the 7.65% railroad retirement (tier 1) tax. Exception: If you filed Form 4137 or Form 8919, see instructions","x":22.59,"y":41.63,"w":4.328,"h":1.073},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A482_L29_3_","EN":0},"TI":1572,"AM":0,"TU":"Line 28(c). Enter actual wages for the period subject to social security tax or the 6.2% portion of the 7.65% railroad retirement (tier 1) tax. Exception: If you filed Form 4137 or Form 8919, see instructions","x":27.04,"y":41.615,"w":4.328,"h":1.073},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A482_L29_4_","EN":0},"TI":1573,"AM":0,"TU":"Line 28(d).Enter actual wages for the period subject to social security tax or the 6.2% portion of the 7.65% railroad retirement (tier 1) tax. Exception: If you filed Form 4137 or Form 8919, see instructions","x":31.596,"y":41.627,"w":4.327,"h":1.073},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A557_L30_1_","EN":0},"TI":1574,"AM":1024,"x":17.995,"y":42.757,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A557_L30_2_","EN":0},"TI":1575,"AM":1024,"x":22.537,"y":42.756,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A557_L30_3_","EN":0},"TI":1576,"AM":1024,"x":26.987,"y":42.74,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A557_L30_4_","EN":0},"TI":1577,"AM":1024,"x":31.543,"y":42.752,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A483_L31_1_","EN":0},"TI":1578,"AM":1024,"x":17.995,"y":44.257,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A483_L31_2_","EN":0},"TI":1579,"AM":1024,"x":22.537,"y":44.255,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A483_L31_3_","EN":0},"TI":1580,"AM":1024,"x":26.987,"y":44.24,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A483_L31_4_","EN":0},"TI":1581,"AM":1024,"x":31.543,"y":44.252,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A487_L34_1_","EN":0},"TI":1582,"AM":1024,"x":17.995,"y":45.757,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A487_L34_2_","EN":0},"TI":1583,"AM":1024,"x":22.537,"y":45.755,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A487_L34_3_","EN":0},"TI":1584,"AM":1024,"x":26.987,"y":45.74,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A487_L34_4_","EN":0},"TI":1585,"AM":1024,"x":31.543,"y":45.752,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A488_L35_1_","EN":0},"TI":1586,"AM":1024,"x":17.995,"y":46.507,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A488_L35_2_","EN":0},"TI":1587,"AM":1024,"x":22.537,"y":46.505,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A488_L35_3_","EN":0},"TI":1588,"AM":1024,"x":26.987,"y":46.49,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A488_L35_4_","EN":0},"TI":1589,"AM":1024,"x":31.543,"y":46.502,"w":4.433,"h":0.833}],"Boxsets":[]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F2210F.json b/test/data/fd/form/F2210F.json index b3f94b60..f101a0f8 100755 --- a/test/data/fd/form/F2210F.json +++ b/test/data/fd/form/F2210F.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.997,"y":5.251,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.066,"y":3.001,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":5.247,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.159,"y":6.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.148,"y":9.752,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.15,"y":10.508,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.334,"y":10.478,"w":0.75,"l":86.711},{"oc":"#221f1f","x":6.147,"y":13.501,"w":1.2000000000000002,"l":6.273},{"oc":"#221f1f","x":6.147,"y":14.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.334,"y":13.501,"w":1.2000000000000002,"l":86.711},{"oc":"#221f1f","x":12.334,"y":14.251,"w":0.75,"l":86.711},{"oc":"#221f1f","x":79.159,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":17.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":17.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":17.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":19.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":20.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":21.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":75.447,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":23.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":26.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":24.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":24.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":24.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":25.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":26.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":26.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":79.159,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":27.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":27.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":27.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":27.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":29.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":30.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":33.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":33.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":33.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":34.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":34.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":34.501,"w":1.2000000000000002,"l":6.273},{"oc":"#221f1f","x":6.147,"y":35.251,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.334,"y":34.501,"w":1.2000000000000002,"l":86.711},{"oc":"#221f1f","x":12.334,"y":35.251,"w":0.75,"l":86.711},{"oc":"#221f1f","x":79.159,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":36.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":89.059,"y":36.751,"w":0.75,"l":1.323},{"oc":"#221f1f","x":90.297,"y":36.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":95.247,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":38.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":31.628,"y":39.439,"w":0.75,"l":18.219},{"oc":"#221f1f","x":79.159,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":39.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":39.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.159,"y":42.751,"w":1.5,"l":19.886},{"oc":"#221f1f","x":6.147,"y":42.752,"w":1.5,"l":35.974},{"oc":"#221f1f","x":42.034,"y":42.751,"w":1.5,"l":42.161},{"oc":"#221f1f","x":84.109,"y":42.751,"w":1.5,"l":14.936}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.531},{"oc":"#221f1f","x":21.04,"y":3.735,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.152,"y":2.977,"w":1.5,"l":1.406},{"oc":"#221f1f","x":84.152,"y":3.731,"w":1.5,"l":1.547},{"oc":"#221f1f","x":79.202,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":15.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":15.735,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":17.985,"w":0.75,"l":5.281},{"oc":"#221f1f","x":79.202,"y":17.985,"w":0.75,"l":5.281},{"oc":"#221f1f","x":82.915,"y":17.985,"w":0.75,"l":5.281},{"oc":"#221f1f","x":59.402,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":18.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":20.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":20.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":20.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":20.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":20.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":20.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.115,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":23.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":23.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.115,"y":25.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":26.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":27.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":27.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":29.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":79.202,"y":29.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":29.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.915,"y":32.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":32.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":35.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":35.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":36.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":39.735,"w":0.75,"l":3.047},{"oc":"#221f1f","x":82.915,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":36.735,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.193,"y":9.759,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":13.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":18.001,"w":3.713,"h":5.25,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":25.501,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":30.001,"w":3.713,"h":2.25,"clr":-1},{"oc":"#221f1f","x":6.19,"y":34.501,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":39.751,"w":19.8,"h":3,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.304,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.417,"y":2.304,"w":2.929,"clr":-1,"A":"left","R":[{"T":"2210-F","S":-1,"TS":[0,21,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.8689999999999998,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.319,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":34.829,"y":2.058,"w":15.98,"clr":-1,"A":"left","R":[{"T":"Underpayment%20of%20Estimated%20Tax%20by%20","S":-1,"TS":[2,16,0,0]}]},{"oc":"#221f1f","x":40.661,"y":2.933,"w":10.459999999999997,"clr":-1,"A":"left","R":[{"T":"Farmers%20and%20Fishermen","S":-1,"TS":[2,16,0,0]}]},{"oc":"#221f1f","x":35.289,"y":3.644,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":36.32,"y":3.737,"w":24.339000000000002,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20Form%201040%2C%20Form%201040NR%2C%20or%20Form%201041.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.241,"y":4.264,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":27.559,"y":4.358,"w":31.237000000000002,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%202210-F%20and%20its%20separate%20instructions%20is%20at%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.141,"y":4.358,"w":10.745000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform2210","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.068,"y":4.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9729999999999999,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0140","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.322,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.204,"y":3.322,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.621,"y":3.809,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.621,"y":4.318,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.599,"y":4.318,"w":1.7970000000000002,"clr":-1,"A":"left","R":[{"T":"06A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":12.853000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20tax%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.984,"y":5.001,"w":8.940999999999999,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.941,"y":6.979,"w":22.240000000000002,"clr":-1,"A":"left","R":[{"T":"Generally%2C%20you%20do%20not%20need%20to%20file%20Form%202210-F.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":44.553,"y":6.979,"w":31.188000000000006,"clr":-1,"A":"left","R":[{"T":"%20The%20IRS%20will%20figure%20any%20penalty%20you%20owe%20and%20send%20you%20a%20bill.%20File%20Form","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.947,"y":7.667,"w":3.4650000000000003,"clr":-1,"A":"left","R":[{"T":"2210-F%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":11.961,"y":7.667,"w":1.9809999999999999,"clr":-1,"A":"left","R":[{"T":"only","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":15.424,"y":7.667,"w":47.88199999999998,"clr":-1,"A":"left","R":[{"T":"%20if%20one%20or%20both%20of%20the%20boxes%20in%20Part%20I%20apply%20to%20you.%20If%20you%20do%20not%20need%20to%20file%20Form%202210-F%2C%20you%20still%20can%20use%20it%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.95,"y":8.354,"w":52.62799999999994,"clr":-1,"A":"left","R":[{"T":"to%20figure%20your%20penalty.%20Enter%20the%20amount%20from%20line%2016%20on%20the%20penalty%20line%20of%20your%20return%2C%20but%20do%20not%20attach%20Form%202210-F.","S":-1,"TS":[0,13,0,0]}]},{"x":6.841,"y":9.58,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.19,"y":9.549,"w":9.164000000000001,"clr":-1,"A":"left","R":[{"T":"Reasons%20for%20Filing.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.94,"y":9.549,"w":19.225000000000005,"clr":-1,"A":"left","R":[{"T":"Check%20applicable%20boxes.%20If%20neither%20applies%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.983,"y":9.549,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"do%20not","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":68.713,"y":9.549,"w":7.98,"clr":-1,"A":"left","R":[{"T":"file%20Form%202210-F.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.355,"y":10.403,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":10.403,"w":6.52,"clr":-1,"A":"left","R":[{"T":"You%20request%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.45,"y":10.403,"w":3.1290000000000004,"clr":-1,"A":"left","R":[{"T":"waiver","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.29,"y":10.403,"w":33.279999999999994,"clr":-1,"A":"left","R":[{"T":".%20In%20certain%20circumstances%2C%20the%20IRS%20will%20waive%20all%20or%20part%20of%20the%20penalty.%20See%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.769,"y":10.403,"w":8.000000000000002,"clr":-1,"A":"left","R":[{"T":"Waiver%20of%20Penalty%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":92.144,"y":10.403,"w":2.742,"clr":-1,"A":"left","R":[{"T":"in%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":11.09,"w":5.464,"clr":-1,"A":"left","R":[{"T":"instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.326,"y":11.902,"w":0.982,"clr":-1,"A":"left","R":[{"T":"B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":11.903,"w":52.95499999999997,"clr":-1,"A":"left","R":[{"T":"You%20filed%20or%20are%20filing%20a%20joint%20return%20for%20either%202012%20or%202013%2C%20but%20not%20for%20both%20years%2C%20and%20line%2010%20below%20is%20smaller%20than%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.279,"y":11.903,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.365,"y":12.59,"w":2.962,"clr":-1,"A":"left","R":[{"T":"below.","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":13.322,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.19,"y":13.322,"w":12.871,"clr":-1,"A":"left","R":[{"T":"Figure%20Your%20Underpayment","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.153,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.153,"w":42.69999999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20your%202013%20tax%20after%20credits%20from%20Form%201040%2C%20line%2055%3B%20Form%201040NR%2C%20line%2052%3B%20or%20Form%201041%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":14.84,"w":8.428000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20G%2C%20line%203%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.508,"y":14.84,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":14.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":15.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":15.652999999999999,"w":41.97099999999998,"clr":-1,"A":"left","R":[{"T":"Other%20taxes%2C%20including%20self-employment%20tax%20and%2C%20if%20applicable%2C%20Additional%20Medicare%20Tax%20and%2For%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.34,"w":20.11500000000001,"clr":-1,"A":"left","R":[{"T":"Net%20Investment%20Income%20Tax%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":16.34,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":16.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.09,"w":28.916999999999998,"clr":-1,"A":"left","R":[{"T":"Add%20lines%201%20and%202.%20If%20less%20than%20%241%2C000%2C%20you%20do%20not%20owe%20a%20penalty%3B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.621,"y":17.09,"w":11.314000000000002,"clr":-1,"A":"left","R":[{"T":"do%20not%20file%20Form%202210-F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.002,"y":17.09,"w":2.666,"clr":-1,"A":"left","R":[{"T":"..","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":17.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":22.875,"clr":-1,"A":"left","R":[{"T":"Refundable%20credits%20you%20claimed%20on%20your%20tax%20return.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.764,"y":18.59,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":11.927,"clr":-1,"A":"left","R":[{"T":"Earned%20income%20credit%20(EIC)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":18.59,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.134,"y":18.59,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"4a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.707,"y":19.34,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":11.631000000000004,"clr":-1,"A":"left","R":[{"T":"Additional%20child%20tax%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":19.34,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.106,"y":19.34,"w":1.167,"clr":-1,"A":"left","R":[{"T":"4b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.764,"y":20.09,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.09,"w":21.006000000000004,"clr":-1,"A":"left","R":[{"T":"American%20opportunity%20credit%20(Form%208863%2C%20line%208)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":20.09,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.134,"y":20.09,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"4c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.707,"y":20.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.84,"w":15.204,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20federal%20tax%20paid%20on%20fuels","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":20.84,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.106,"y":20.84,"w":1.167,"clr":-1,"A":"left","R":[{"T":"4d","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.687,"y":21.59,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.59,"w":12.037000000000003,"clr":-1,"A":"left","R":[{"T":"Health%20coverage%20tax%20credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":21.59,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.134,"y":21.59,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"4e","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.776,"y":22.34,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":22.34,"w":28.39400000000001,"clr":-1,"A":"left","R":[{"T":"Credit%20determined%20under%20section%201341(a)(5)(B)%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.441,"y":22.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.321,"y":22.34,"w":0.889,"clr":-1,"A":"left","R":[{"T":"4f","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":23.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.09,"w":10.67,"clr":-1,"A":"left","R":[{"T":"Add%20lines%204a%20through%204f%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":23.09,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":23.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":23.903,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.903,"w":40.34299999999998,"clr":-1,"A":"left","R":[{"T":"Current%20year%20tax.%20Subtract%20line%205%20from%20line%203.%20If%20less%20than%20%241%2C000%2C%20you%20do%20not%20owe%20a%20penalty%3B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.823,"y":23.903,"w":1.222,"clr":-1,"A":"left","R":[{"T":"do","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":24.59,"w":9.814,"clr":-1,"A":"left","R":[{"T":"not%20file%20Form%202210-F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.563,"y":24.59,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":24.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":25.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":8.911000000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%2066","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.803,"y":25.121,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,8.1,0,0]}]},{"oc":"#221f1f","x":25.29,"y":25.34,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.805,"y":25.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,8.1,0,0]}]},{"oc":"#221f1f","x":26.292,"y":25.34,"w":4.02,"clr":-1,"A":"left","R":[{"T":"%25%20(.667)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":25.34,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":25.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":26.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":26.09,"w":8.557,"clr":-1,"A":"left","R":[{"T":"Withholding%20taxes.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.125,"y":26.09,"w":3.4639999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.483,"y":26.09,"w":29.304000000000013,"clr":-1,"A":"left","R":[{"T":"include%20any%20estimated%20tax%20payments%20on%20this%20line%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.066,"y":26.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":26.09,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":26.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":32.602000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%208%20from%20line%206.%20If%20less%20than%20%241%2C000%2C%20you%20do%20not%20owe%20a%20penalty%3B%20","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":60.816,"y":26.84,"w":11.036000000000001,"clr":-1,"A":"left","R":[{"T":"do%20not%20file%20Form%202210-F","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":80.378,"y":26.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.8,"y":27.653,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":27.653,"w":43.71299999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20tax%20shown%20on%20your%202012%20tax%20return%20(see%20instructions%20if%20your%202013%20filing%20status%20changed%20to%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":10.886,"y":28.34,"w":13.001000000000001,"clr":-1,"A":"left","R":[{"T":"or%20from%20married%20filing%20jointly)%20%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":30.687,"y":28.34,"w":31.30300000000001,"clr":-1,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":79.948,"y":28.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.8,"y":29.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.09,"w":12.758000000000001,"clr":-1,"A":"left","R":[{"T":"Required%20annual%20payment.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.623,"y":29.09,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.869,"y":29.09,"w":4.052,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.137,"y":29.09,"w":8.187000000000003,"clr":-1,"A":"left","R":[{"T":"of%20line%207%20or%20line%2010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":29.09,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":29.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":29.903,"w":2.8339999999999996,"clr":-1,"A":"left","R":[{"T":"Note%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.291,"y":29.903,"w":35.230999999999995,"clr":-1,"A":"left","R":[{"T":"If%20line%208%20is%20equal%20to%20or%20more%20than%20line%2011%2C%20stop%20here%3B%20you%20do%20not%20owe%20the%20penalty.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.142,"y":29.903,"w":5.186,"clr":-1,"A":"left","R":[{"T":"Do%20not%20file%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":30.59,"w":6.2620000000000005,"clr":-1,"A":"left","R":[{"T":"Form%202210-F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.578,"y":30.59,"w":10.982000000000001,"clr":-1,"A":"left","R":[{"T":"unless%20you%20checked%20box%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.566,"y":30.59,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.683,"y":30.59,"w":3.2600000000000002,"clr":-1,"A":"left","R":[{"T":"%20above.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.8,"y":31.403,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":31.403,"w":42.033999999999985,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20estimated%20tax%20payments%20you%20made%20by%20January%2015%2C%202014%2C%20and%20any%20federal%20income%20tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":32.09,"w":35.74499999999999,"clr":-1,"A":"left","R":[{"T":"and%20excess%20social%20security%20or%20tier%201%20railroad%20retirement%20tax%20withheld%20during%202013%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.824,"y":32.09,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":32.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":32.903,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.903,"w":7.593,"clr":-1,"A":"left","R":[{"T":"Underpayment.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.717,"y":32.903,"w":34.672999999999995,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2012%20from%20line%2011.%20If%20the%20result%20is%20zero%20or%20less%2C%20stop%20here%3B%20you%20do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":33.59,"w":7.649000000000001,"clr":-1,"A":"left","R":[{"T":"owe%20the%20penalty.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.725,"y":33.59,"w":11.444,"clr":-1,"A":"left","R":[{"T":"Do%20not%20file%20Form%202210-F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.427,"y":33.59,"w":10.836000000000002,"clr":-1,"A":"left","R":[{"T":"unless%20you%20checked%20box","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.189,"y":33.59,"w":1.26,"clr":-1,"A":"left","R":[{"T":"%20B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.138,"y":33.59,"w":2.7409999999999997,"clr":-1,"A":"left","R":[{"T":"above","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.756,"y":33.59,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":33.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"x":6.331,"y":34.322,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.19,"y":34.322,"w":8.629999999999999,"clr":-1,"A":"left","R":[{"T":"Figure%20the%20Penalty","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":37.58199999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20date%20the%20amount%20on%20line%2013%20was%20paid%20or%20April%2015%2C%202014%2C%20whichever%20is%20earlier%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":35.84,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":35.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.214,"y":35.84,"w":0.333,"clr":-1,"A":"left","R":[{"T":"%2F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.04,"y":35.84,"w":1.723,"clr":-1,"A":"left","R":[{"T":"%2F%2014","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.695,"y":37.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":7.428000000000001,"clr":-1,"A":"left","R":[{"T":"Number%20of%20days%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.38,"y":37.34,"w":2.517,"clr":-1,"A":"left","R":[{"T":"from%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.273,"y":37.34,"w":8.264000000000001,"clr":-1,"A":"left","R":[{"T":"January%2015%2C%202014%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.057,"y":37.34,"w":0.963,"clr":-1,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.547,"y":37.34,"w":8.837000000000002,"clr":-1,"A":"left","R":[{"T":"%20the%20date%20on%20line%2014%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.44,"y":37.34,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":37.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.84,"w":3.8150000000000004,"clr":-1,"A":"left","R":[{"T":"Penalty.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.516,"y":38.528,"w":6.91,"clr":-1,"A":"left","R":[{"T":"Underpayment%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.294,"y":39.215,"w":4.335000000000001,"clr":-1,"A":"left","R":[{"T":"on%20line%2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.988,"y":38.84,"w":0.6,"clr":-1,"A":"left","R":[{"T":"%C3%97","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.492,"y":38.527,"w":12.041000000000002,"clr":-1,"A":"left","R":[{"T":"Number%20of%20days%20on%20line%2015%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.299,"y":39.214,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"365","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.005,"y":38.84,"w":23.53899999999999,"clr":-1,"A":"left","R":[{"T":"%C3%97%20%20.03..........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.581,"y":38.747,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.948,"y":38.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":40.403,"w":32.56900000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Form%201040%20filers%2C%20enter%20the%20amount%20from%20line%2016%20on%20Form%201040%2C%20line%2077.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.09,"w":35.383,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Form%201040NR%20filers%2C%20enter%20the%20amount%20from%20line%2016%20on%20Form%201040NR%2C%20line%2074.%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.777,"w":32.01300000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Form%201041%20filers%2C%20enter%20the%20amount%20from%20line%2016%20on%20Form%201041%2C%20line%2026.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":42.609,"w":25.961000000000002,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20instructions.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":58.407,"y":42.626,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011745A","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.435,"y":42.572,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.578,"y":42.572,"w":3.224,"clr":-1,"A":"left","R":[{"T":"2210-F","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.119,"y":42.572,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1286,"AM":1024,"x":6.229,"y":5.859,"w":72.848,"h":0.876,"TU":"Name(s) shown on tax return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1287,"AM":1024,"x":79.344,"y":5.869,"w":19.635,"h":0.866,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":1290,"AM":1024,"x":82.97,"y":14.891,"w":12.024,"h":0.844,"TU":"Line 1. Enter your 2013 tax after credits from Form 1040, line 55."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1291,"AM":0,"x":83.279,"y":16.505,"w":12.189,"h":0.833,"TU":"Line 2. Other taxes, including self-employment tax and, if applicable, Additional Medicare Tax and/or Net Investment Income Tax (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":1292,"AM":1024,"x":83.147,"y":17.31,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EIC","EN":0},"TI":1293,"AM":1024,"x":63.236,"y":18.725,"w":12.148,"h":0.833,"TU":"4a"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CHILDCR","EN":0},"TI":1294,"AM":1024,"x":63.253,"y":19.607,"w":12.189,"h":0.833,"TU":"4b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMEROPCR","EN":0},"TI":1295,"AM":1024,"x":63.216,"y":20.302,"w":12.189,"h":0.833,"TU":"4c"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FUELCR","EN":0},"TI":1296,"AM":1024,"x":63.178,"y":21.038,"w":12.189,"h":0.833,"TU":"4e"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HEALTHCR","EN":0},"TI":1297,"AM":1024,"x":63.216,"y":21.805,"w":12.189,"h":0.833,"TU":"4h"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"IRC1341","EN":0},"TI":1298,"AM":0,"x":63.414,"y":22.499,"w":11.997,"h":0.833,"TU":"Line 4f. Credit determined under section 1341(a)(5)(B) (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTCR","EN":0},"TI":1299,"AM":1024,"x":83.255,"y":23.032,"w":11.901,"h":0.943},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CYTAX","EN":0},"TI":1300,"AM":1024,"x":83.098,"y":24.561,"w":12.024,"h":0.894},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SAFEAMT","EN":0},"TI":1301,"AM":1024,"x":63.386,"y":25.48,"w":12.148,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WHTAX","EN":0},"TI":1302,"AM":0,"x":83.173,"y":26.198,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXDUE","EN":0},"TI":1303,"AM":1024,"x":83.016,"y":27.045,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PYTAX","EN":0},"TI":1304,"AM":0,"x":83.173,"y":28.357,"w":12.024,"h":0.878,"TU":"Line 10. Enter the tax shown on your 2012 tax return (see instructions of your 2013 filing status changed to or from married filing jointly)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REQPAY","EN":0},"TI":1305,"AM":1024,"x":83.091,"y":29.288,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXPAID","EN":0},"TI":1306,"AM":0,"x":83.385,"y":31.924,"w":11.901,"h":1.026,"TU":"Line 12. Enter the estimated tax payments you made by January 15, 2014, and any federal income tax and excess social security or tier 1 railroad retirement tax withheld during 2013."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNDERPAY","EN":0},"TI":1307,"AM":1024,"x":83.323,"y":33.564,"w":12.024,"h":0.886},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DATEPAID","EN":0},"TI":1308,"AM":0,"x":83.012,"y":35.605,"w":12.001,"h":1.122,"TU":"Line 14. Enter the date the amount on line 13 was paid or April 15, 2014, whichever is earlier.","MV":"mm/dd"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"DAYS","EN":0},"TI":1309,"AM":0,"x":83.217,"y":37.41,"w":12.05,"h":0.875,"TU":"Line 15. Number of days from January 15, 2014 to the date on line 14."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PENALTY","EN":0},"TI":1310,"AM":1024,"x":83.217,"y":38.816,"w":12.024,"h":0.875,"TU":"Line 16. Penalty. Underpayment on line 13 times number of days on line 15 times. Form 1040 filers, enter the amount from line 16 on Form 1040, line 77."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1A","EN":0},"TI":1288,"AM":0,"x":10.969,"y":10.509,"w":1.718,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1B","EN":0},"TI":1289,"AM":0,"x":10.824,"y":11.888,"w":1.982,"h":0.833,"checked":false}],"id":{"Id":"L1RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1B","EN":0},"TI":851,"AM":0,"TU":"You filed or are filing a joint return for either 2011 or 2012, but not for both years, and line 10 below is smaller than line 7","x":4.125,"y":11.987,"w":0.525,"h":0.833}]}]}],"Width":105.188}} +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Underpayment of Estimated Tax by Farmers and Fishermen","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131219152749-08'00'","ModDate":"D:20140113131134-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":5.251,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":7.635,"y":5.251,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.57,"y":3.001,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.57,"y":5.247,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.235,"y":6.751,"w":0.75,"l":26.581,"oc":"#221f1f"},{"x":28.785,"y":6.751,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":2.236,"y":9.752,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.236,"y":10.508,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":4.485,"y":10.478,"w":0.75,"l":31.531,"oc":"#221f1f"},{"x":2.235,"y":13.501,"w":1.2,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":14.251,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":4.485,"y":13.501,"w":1.2,"l":31.531,"oc":"#221f1f"},{"x":4.485,"y":14.251,"w":0.75,"l":31.531,"oc":"#221f1f"},{"x":28.785,"y":15.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":15.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":15.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":17.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":17.251,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":17.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":18.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":19.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":19.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":19.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":20.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":21.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":21.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":21.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":21.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":27.435,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":22.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":23.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":23.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":23.251,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":26.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":24.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":24.001,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":24.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":25.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":25.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":25.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":26.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":26.251,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":28.785,"y":25.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":27.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":27.001,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":27.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":27.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":27.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":27.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":29.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":29.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":29.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":30.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":33.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":33.001,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":33.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":34.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":34.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":34.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":34.501,"w":1.2,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":35.251,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":4.485,"y":34.501,"w":1.2,"l":31.531,"oc":"#221f1f"},{"x":4.485,"y":35.251,"w":0.75,"l":31.531,"oc":"#221f1f"},{"x":28.785,"y":36.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":36.751,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":32.385,"y":36.751,"w":0.75,"l":0.481,"oc":"#221f1f"},{"x":32.835,"y":36.751,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":34.635,"y":36.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":38.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":38.251,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":11.501,"y":39.439,"w":0.75,"l":6.625,"oc":"#221f1f"},{"x":28.785,"y":39.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":39.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":39.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":39.751,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":42.751,"w":1.5,"l":7.231,"oc":"#221f1f"},{"x":2.235,"y":42.752,"w":1.5,"l":13.081,"oc":"#221f1f"},{"x":15.285,"y":42.751,"w":1.5,"l":15.331,"oc":"#221f1f"},{"x":30.585,"y":42.751,"w":1.5,"l":5.431,"oc":"#221f1f"}],"VLines":[{"x":7.651,"y":2.235,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":7.651,"y":3.735,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":30.601,"y":2.235,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":2.977,"w":1.5,"l":1.406,"oc":"#221f1f"},{"x":30.601,"y":3.731,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":28.801,"y":5.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":15.735,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":15.735,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.651,"y":16.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":17.985,"w":0.75,"l":5.281,"oc":"#221f1f"},{"x":28.801,"y":17.985,"w":0.75,"l":5.281,"oc":"#221f1f"},{"x":30.151,"y":17.985,"w":0.75,"l":5.281,"oc":"#221f1f"},{"x":21.601,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":18.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":20.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":20.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":20.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":20.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":20.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":20.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":22.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":22.951,"y":22.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":27.451,"y":25.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":23.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.801,"y":23.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":23.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":23.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":23.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":25.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":22.951,"y":25.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":26.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.801,"y":26.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":26.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":27.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":27.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":29.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.801,"y":29.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.151,"y":29.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.151,"y":32.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.801,"y":32.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":32.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":32.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":32.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":35.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":35.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":36.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":36.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":38.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":38.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":39.735,"w":0.75,"l":3.047,"oc":"#221f1f"},{"x":30.151,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":36.735,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.252,"y":9.759,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.251,"y":13.501,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":28.801,"y":18.001,"w":1.35,"h":5.25,"oc":"#bebfc1"},{"x":28.801,"y":30.001,"w":1.35,"h":2.25,"oc":"#bebfc1"},{"x":2.251,"y":34.501,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":28.801,"y":39.751,"w":7.2,"h":3,"oc":"#bebfc1"}],"Texts":[{"x":2.001,"y":2.304,"w":2.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":3.265,"y":2.304,"w":2.929,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2210-F","S":-1,"TS":[0,21,0,0]}]},{"x":2.001,"y":3.8689999999999998,"w":12.54,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":51,"TS":[0,9,0,0]}]},{"x":2.001,"y":4.319,"w":11.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service","S":51,"TS":[0,9,0,0]}]},{"x":12.506,"y":2.058,"w":15.98,"oc":"#221f1f","sw":0.390625,"A":"left","R":[{"T":"Underpayment of Estimated Tax by ","S":-1,"TS":[2,16,0,0]}]},{"x":14.627,"y":2.933,"w":10.46,"oc":"#221f1f","sw":0.390625,"A":"left","R":[{"T":"Farmers and Fishermen","S":-1,"TS":[2,16,0,0]}]},{"x":12.673,"y":3.644,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":13.048,"y":3.737,"w":24.339,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Attach to Form 1040, Form 1040NR, or Form 1041. ","S":-1,"TS":[0,11,0,0]}]},{"x":25.217,"y":3.644,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,9,0,0]}]},{"x":9.383,"y":4.264,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":9.758,"y":4.283,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":9.862,"y":4.358,"w":31.237,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Information about Form 2210-F and its separate instructions is at ","S":2,"TS":[0,10,0,0]}]},{"x":23.529,"y":4.358,"w":10.745,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"www.irs.gov/form2210","S":2,"TS":[0,10,0,0]}]},{"x":28.229,"y":4.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":31.02,"y":1.9729999999999999,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0140","S":2,"TS":[0,10,0,0]}]},{"x":31.426,"y":3.322,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":33.006,"y":3.322,"w":1.336,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"x":30.976,"y":3.809,"w":5.447,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":30.976,"y":4.318,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":33.877,"y":4.318,"w":1.797,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"06A","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":5.001,"w":12.853,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name(s) shown on tax return","S":2,"TS":[0,10,0,0]}]},{"x":28.926,"y":5.001,"w":8.941,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Identifying number","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":6.979,"w":22.24,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Generally, you do not need to file Form 2210-F.","S":-1,"TS":[0,13,0,0]}]},{"x":16.042,"y":6.979,"w":31.188,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" The IRS will figure any penalty you owe and send you a bill. File Form","S":-1,"TS":[0,13,0,0]}]},{"x":2.003,"y":7.667,"w":3.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2210-F ","S":-1,"TS":[0,13,0,0]}]},{"x":4.19,"y":7.667,"w":1.981,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"only","S":-1,"TS":[0,13,0,0]}]},{"x":5.449,"y":7.667,"w":47.882,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" if one or both of the boxes in Part I apply to you. If you do not need to file Form 2210-F, you still can use it ","S":-1,"TS":[0,13,0,0]}]},{"x":2.005,"y":8.354,"w":52.628,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"to figure your penalty. Enter the amount from line 16 on the penalty line of your return, but do not attach Form 2210-F.","S":-1,"TS":[0,13,0,0]}]},{"x":2.329,"y":9.58,"w":2.555,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I","S":-1,"TS":[0,13,0,0]}]},{"x":5.001,"y":9.549,"w":9.164,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Reasons for Filing. ","S":-1,"TS":[0,13,0,0]}]},{"x":10.728,"y":9.549,"w":19.225,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check applicable boxes. If neither applies, ","S":-1,"TS":[0,13,0,0]}]},{"x":22.744,"y":9.549,"w":3.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"do not","S":-1,"TS":[0,13,0,0]}]},{"x":24.654,"y":9.549,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":24.828,"y":9.549,"w":7.98,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"file Form 2210-F.","S":-1,"TS":[0,13,0,0]}]},{"x":2.515,"y":10.403,"w":0.963,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"A ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":11.09,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":4.701,"y":10.403,"w":6.52,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You request a ","S":3,"TS":[0,12,0,0]}]},{"x":8.368,"y":10.403,"w":3.129,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"waiver","S":3,"TS":[0,12,0,0]}]},{"x":10.128,"y":10.403,"w":33.28,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". In certain circumstances, the IRS will waive all or part of the penalty. See ","S":3,"TS":[0,12,0,0]}]},{"x":28.848,"y":10.403,"w":8,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Waiver of Penalty ","S":3,"TS":[0,12,0,0]}]},{"x":33.348,"y":10.403,"w":2.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"in the ","S":3,"TS":[0,12,0,0]}]},{"x":4.701,"y":11.09,"w":5.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions.","S":3,"TS":[0,12,0,0]}]},{"x":2.505,"y":11.902,"w":0.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"B ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":12.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":4.701,"y":11.903,"w":52.955,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You filed or are filing a joint return for either 2012 or 2013, but not for both years, and line 10 below is smaller than line ","S":3,"TS":[0,12,0,0]}]},{"x":34.488,"y":11.903,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7 ","S":3,"TS":[0,12,0,0]}]},{"x":4.701,"y":12.59,"w":2.962,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"below.","S":3,"TS":[0,12,0,0]}]},{"x":2.235,"y":13.322,"w":2.85,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II","S":-1,"TS":[0,13,0,0]}]},{"x":5.001,"y":13.322,"w":12.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Figure Your Underpayment","S":-1,"TS":[0,13,0,0]}]},{"x":2.588,"y":14.153,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":14.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":14.153,"w":42.7,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter your 2013 tax after credits from Form 1040, line 55; Form 1040NR, line 52; or Form 1041, ","S":3,"TS":[0,12,0,0]}]},{"x":3.803,"y":14.84,"w":8.428,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule G, line 3 ","S":3,"TS":[0,12,0,0]}]},{"x":8.753,"y":14.84,"w":34.658,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":14.84,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":15.59,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":15.652999999999999,"w":41.971,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other taxes, including self-employment tax and, if applicable, Additional Medicare Tax and/or ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":16.34,"w":20.115,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Net Investment Income Tax (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":15.501,"y":16.34,"w":22.661,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":16.34,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":17.09,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":17.09,"w":28.917,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 1 and 2. If less than $1,000, you do not owe a penalty; ","S":3,"TS":[0,12,0,0]}]},{"x":20.067,"y":17.09,"w":11.314,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"do not file Form 2210-F ","S":3,"TS":[0,12,0,0]}]},{"x":26.751,"y":17.09,"w":2.666,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":17.09,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":17.84,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":17.84,"w":22.875,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Refundable credits you claimed on your tax return. ","S":3,"TS":[0,12,0,0]}]},{"x":3.028,"y":18.59,"w":0.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":18.59,"w":11.927,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Earned income credit (EIC)","S":3,"TS":[0,12,0,0]}]},{"x":11.001,"y":18.59,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":21.708,"y":18.59,"w":1.13,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4a","S":3,"TS":[0,12,0,0]}]},{"x":3.007,"y":19.34,"w":0.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"b","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":19.34,"w":11.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Additional child tax credit ","S":3,"TS":[0,12,0,0]}]},{"x":11.001,"y":19.34,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":21.698,"y":19.34,"w":1.167,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4b","S":3,"TS":[0,12,0,0]}]},{"x":3.028,"y":20.09,"w":0.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":20.09,"w":21.006,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"American opportunity credit (Form 8863, line 8)","S":3,"TS":[0,12,0,0]}]},{"x":16.251,"y":20.09,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":21.708,"y":20.09,"w":1.13,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4c","S":3,"TS":[0,12,0,0]}]},{"x":3.007,"y":20.84,"w":0.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"d","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":20.84,"w":15.204,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Credit for federal tax paid on fuels","S":3,"TS":[0,12,0,0]}]},{"x":12.501,"y":20.84,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":21.698,"y":20.84,"w":1.167,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4d","S":3,"TS":[0,12,0,0]}]},{"x":3,"y":21.59,"w":0.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"e","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":21.59,"w":12.037,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Health coverage tax credit ","S":3,"TS":[0,12,0,0]}]},{"x":11.001,"y":21.59,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":21.708,"y":21.59,"w":1.13,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4e","S":3,"TS":[0,12,0,0]}]},{"x":3.032,"y":22.34,"w":0.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"f","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":22.34,"w":28.394,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Credit determined under section 1341(a)(5)(B) (see instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":20.001,"y":22.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":21.776,"y":22.34,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4f","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":23.09,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":23.09,"w":10.67,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 4a through 4f ","S":3,"TS":[0,12,0,0]}]},{"x":10.251,"y":23.09,"w":31.992,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":23.09,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":23.903,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":24.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":23.903,"w":40.343,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Current year tax. Subtract line 5 from line 3. If less than $1,000, you do not owe a penalty; ","S":3,"TS":[0,12,0,0]}]},{"x":27.413,"y":23.903,"w":1.222,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"do","S":3,"TS":[0,12,0,0]}]},{"x":28.1,"y":23.903,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":24.59,"w":9.814,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"not file Form 2210-F ","S":3,"TS":[0,12,0,0]}]},{"x":9.5,"y":24.59,"w":33.325,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":24.59,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":25.34,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":25.34,"w":8.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 6 by 66","S":3,"TS":[0,12,0,0]}]},{"x":8.813,"y":25.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,5.7,0,0]}]},{"x":8.86,"y":25.121,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2","S":-1,"TS":[0,8.1,0,0]}]},{"x":9.037,"y":25.34,"w":0.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/","S":3,"TS":[0,12,0,0]}]},{"x":9.225,"y":25.34,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3","S":-1,"TS":[0,8.1,0,0]}]},{"x":9.402,"y":25.34,"w":4.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"% (.667) ","S":3,"TS":[0,12,0,0]}]},{"x":11.751,"y":25.34,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":25.34,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":26.09,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":26.09,"w":8.557,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Withholding taxes. ","S":3,"TS":[0,12,0,0]}]},{"x":8.614,"y":26.09,"w":3.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not ","S":3,"TS":[0,12,0,0]}]},{"x":10.562,"y":26.09,"w":29.304,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"include any estimated tax payments on this line (see instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":27.501,"y":26.09,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":26.09,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":26.84,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":26.84,"w":32.602,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 8 from line 6. If less than $1,000, you do not owe a penalty; ","S":-1,"TS":[0,11.91,0,0]}]},{"x":21.956,"y":26.84,"w":11.036,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"do not file Form 2210-F","S":-1,"TS":[0,11.91,0,0]}]},{"x":29.069,"y":26.84,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"x":2.314,"y":27.653,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10 ","S":3,"TS":[0,12,0,0]}]},{"x":2.939,"y":28.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":27.653,"w":43.713,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the tax shown on your 2012 tax return (see instructions if your 2013 filing status changed to ","S":-1,"TS":[0,11.82,0,0]}]},{"x":3.7990000000000004,"y":28.34,"w":13.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or from married filing jointly) ","S":-1,"TS":[0,11.82,0,0]}]},{"x":11,"y":28.34,"w":31.303,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,11.82,0,0]}]},{"x":28.913,"y":28.34,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10 ","S":3,"TS":[0,12,0,0]}]},{"x":2.314,"y":29.09,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11 ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":29.09,"w":12.758,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Required annual payment. ","S":3,"TS":[0,12,0,0]}]},{"x":10.977,"y":29.09,"w":4.038,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the","S":3,"TS":[0,12,0,0]}]},{"x":13.248,"y":29.09,"w":4.052,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" smaller ","S":3,"TS":[0,12,0,0]}]},{"x":15.527,"y":29.09,"w":8.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of line 7 or line 10 ","S":3,"TS":[0,12,0,0]}]},{"x":20.751,"y":29.09,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":29.09,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":29.903,"w":2.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Note: ","S":3,"TS":[0,12,0,0]}]},{"x":5.401,"y":29.903,"w":35.231,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If line 8 is equal to or more than line 11, stop here; you do not owe the penalty. ","S":3,"TS":[0,12,0,0]}]},{"x":25.347,"y":29.903,"w":5.186,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not file ","S":3,"TS":[0,12,0,0]}]},{"x":3.8019999999999996,"y":30.59,"w":6.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 2210-F ","S":3,"TS":[0,12,0,0]}]},{"x":7.324,"y":30.59,"w":10.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"unless you checked box ","S":3,"TS":[0,12,0,0]}]},{"x":13.501,"y":30.59,"w":0.722,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"B","S":3,"TS":[0,12,0,0]}]},{"x":13.907,"y":30.59,"w":3.26,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" above.","S":3,"TS":[0,12,0,0]}]},{"x":2.314,"y":31.403,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12 ","S":3,"TS":[0,12,0,0]}]},{"x":2.939,"y":32.09,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":31.403,"w":42.034,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the estimated tax payments you made by January 15, 2014, and any federal income tax ","S":3,"TS":[0,12,0,0]}]},{"x":3.8040000000000003,"y":32.09,"w":35.745,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and excess social security or tier 1 railroad retirement tax withheld during 2013 .","S":3,"TS":[0,12,0,0]}]},{"x":24.504,"y":32.09,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":32.09,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":32.903,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":33.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":32.903,"w":7.593,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Underpayment. ","S":3,"TS":[0,12,0,0]}]},{"x":8.102,"y":32.903,"w":34.673,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 12 from line 11. If the result is zero or less, stop here; you do not","S":3,"TS":[0,12,0,0]}]},{"x":28.122,"y":32.903,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8019999999999996,"y":33.59,"w":7.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"owe the penalty. ","S":3,"TS":[0,12,0,0]}]},{"x":8.104,"y":33.59,"w":11.444,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not file Form 2210-F ","S":3,"TS":[0,12,0,0]}]},{"x":14.542,"y":33.59,"w":10.836,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"unless you checked box","S":3,"TS":[0,12,0,0]}]},{"x":20.637,"y":33.59,"w":1.26,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" B ","S":3,"TS":[0,12,0,0]}]},{"x":21.346,"y":33.59,"w":2.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"above","S":3,"TS":[0,12,0,0]}]},{"x":22.888,"y":33.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":23.752,"y":33.59,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":33.59,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"x":2.143,"y":34.322,"w":3.145,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III","S":-1,"TS":[0,13,0,0]}]},{"x":5.001,"y":34.322,"w":8.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Figure the Penalty","S":-1,"TS":[0,13,0,0]}]},{"x":2.275,"y":35.84,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":35.84,"w":37.582,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the date the amount on line 13 was paid or April 15, 2014, whichever is earlier ","S":3,"TS":[0,12,0,0]}]},{"x":25.251,"y":35.84,"w":5.332,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":35.84,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"x":32.282,"y":35.84,"w":0.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/","S":3,"TS":[0,12,0,0]}]},{"x":34.401,"y":35.84,"w":1.723,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/ 14","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":37.34,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":37.34,"w":7.428,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Number of days ","S":3,"TS":[0,12,0,0]}]},{"x":7.978999999999999,"y":37.34,"w":2.517,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from ","S":3,"TS":[0,12,0,0]}]},{"x":9.395,"y":37.34,"w":8.264,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"January 15, 2014, ","S":3,"TS":[0,12,0,0]}]},{"x":14.043,"y":37.34,"w":0.963,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"to","S":3,"TS":[0,12,0,0]}]},{"x":14.585,"y":37.34,"w":8.837,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" the date on line 14 ","S":3,"TS":[0,12,0,0]}]},{"x":20.001,"y":37.34,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":37.34,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":38.84,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":38.84,"w":3.815,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Penalty.","S":3,"TS":[0,12,0,0]}]},{"x":6.21,"y":38.528,"w":6.91,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Underpayment ","S":3,"TS":[0,12,0,0]}]},{"x":6.857,"y":39.215,"w":4.335,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on line 13","S":3,"TS":[0,12,0,0]}]},{"x":10.382,"y":38.84,"w":0.6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"×","S":3,"TS":[0,12,0,0]}]},{"x":11.293,"y":38.527,"w":12.041,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Number of days on line 15 ","S":3,"TS":[0,12,0,0]}]},{"x":14.132,"y":39.214,"w":1.668,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"365","S":3,"TS":[0,12,0,0]}]},{"x":18.388,"y":38.84,"w":1.655,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"×","S":3,"TS":[0,12,0,0]}]},{"x":18.132,"y":38.84,"w":3.999,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" .","S":3,"TS":[0,12,0,0]}]},{"x":19.195,"y":38.84,"w":1.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"0","S":3,"TS":[0,12,0,0]}]},{"x":19.508,"y":38.84,"w":1.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3","S":3,"TS":[0,12,0,0]}]},{"x":20.231,"y":38.84,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......... ","S":3,"TS":[0,12,0,0]}]},{"x":27.689,"y":38.747,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":28.913,"y":38.84,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":40.403,"w":32.569,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Form 1040 filers, enter the amount from line 16 on Form 1040, line 77. ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":41.09,"w":35.383,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Form 1040NR filers, enter the amount from line 16 on Form 1040NR, line 74. ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":41.777,"w":32.013,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Form 1041 filers, enter the amount from line 16 on Form 1041, line 26.","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":42.609,"w":25.961,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see instructions.","S":-1,"TS":[0,11,0,0]}]},{"x":21.08,"y":42.626,"w":7.41,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11745A","S":2,"TS":[0,10,0,0]}]},{"x":31.272,"y":42.572,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":32.415,"y":42.572,"w":3.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2210-F","S":-1,"TS":[0,13,0,0]}]},{"x":34.43,"y":42.572,"w":3.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013)","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1704,"AM":1024,"TU":"Name(s) shown on tax return","x":2.265,"y":5.859,"w":26.49,"h":0.876},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1705,"AM":1024,"TU":"Identifying number","x":28.853,"y":5.869,"w":7.14,"h":0.866},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":1708,"AM":1024,"TU":"Line 1. Enter your 2013 tax after credits from Form 1040, line 55.","x":30.171,"y":14.891,"w":4.372,"h":0.844},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1709,"AM":0,"TU":"Line 2. Other taxes, including self-employment tax and, if applicable, Additional Medicare Tax and/or Net Investment Income Tax (see instructions).","x":30.283,"y":16.505,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":1710,"AM":1024,"x":30.235,"y":17.31,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EIC","EN":0},"TI":1711,"AM":1024,"TU":"4a","x":22.995,"y":18.725,"w":4.418,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CHILDCR","EN":0},"TI":1712,"AM":1024,"TU":"4b","x":23.001,"y":19.607,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"AMEROPCR","EN":0},"TI":1713,"AM":1024,"TU":"4c","x":22.988,"y":20.302,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FUELCR","EN":0},"TI":1714,"AM":1024,"TU":"4e","x":22.974,"y":21.038,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HEALTHCR","EN":0},"TI":1715,"AM":1024,"TU":"4h","x":22.988,"y":21.805,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"IRC1341","EN":0},"TI":1716,"AM":0,"TU":"Line 4f. Credit determined under section 1341(a)(5)(B) (see instructions).","x":23.06,"y":22.499,"w":4.363,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTCR","EN":0},"TI":1717,"AM":1024,"x":30.274,"y":23.032,"w":4.327,"h":0.943},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CYTAX","EN":0},"TI":1718,"AM":1024,"x":30.218,"y":24.561,"w":4.373,"h":0.894},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SAFEAMT","EN":0},"TI":1719,"AM":1024,"x":23.05,"y":25.48,"w":4.418,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"WHTAX","EN":0},"TI":1720,"AM":1024,"x":30.245,"y":26.198,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXDUE","EN":0},"TI":1721,"AM":1024,"x":30.188,"y":27.045,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PYTAX","EN":0},"TI":1722,"AM":0,"TU":"Line 10. Enter the tax shown on your 2012 tax return (see instructions of your 2013 filing status changed to or from married filing jointly)","x":30.245,"y":28.357,"w":4.372,"h":0.878},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"REQPAY","EN":0},"TI":1723,"AM":1024,"x":30.215,"y":29.288,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXPAID","EN":0},"TI":1724,"AM":0,"TU":"Line 12. Enter the estimated tax payments you made by January 15, 2014, and any federal income tax and excess social security or tier 1 railroad retirement tax withheld during 2013.","x":30.322,"y":31.924,"w":4.327,"h":1.026},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNDERPAY","EN":0},"TI":1725,"AM":1024,"x":30.299,"y":33.564,"w":4.373,"h":0.886},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"DATEPAID","EN":0},"TI":1726,"AM":0,"TU":"Line 14. Enter the date the amount on line 13 was paid or April 15, 2014, whichever is earlier.","x":30.186,"y":35.605,"w":4.364,"h":1.122,"MV":"mm/dd"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"DAYS","EN":0},"TI":1727,"AM":0,"TU":"Line 15. Number of days from January 15, 2014 to the date on line 14.","x":30.261,"y":37.41,"w":4.382,"h":0.875},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PENALTY","EN":0},"TI":1728,"AM":0,"TU":"Line 16. Penalty. Underpayment on line 13 times number of days on line 15 times. Form 1040 filers, enter the amount from line 16 on Form 1040, line 77.","x":30.261,"y":38.816,"w":4.372,"h":0.875}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1A","EN":0},"TI":1706,"AM":0,"TU":"You request a waiver. In certain circumstances, the IRS will waive all or part of the penalty. See Waiver of Penalty in the","x":4.125,"y":10.487,"w":0.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L1B","EN":0},"TI":1707,"AM":0,"TU":"You filed or are filing a joint return for either 2011 or 2012, but not for both years, and line 10 below is smaller than line 7","x":4.125,"y":11.987,"w":0.525,"h":0.833}]}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F2439.json b/test/data/fd/form/F2439.json index 7a72ef5e..1c4e20d7 100755 --- a/test/data/fd/form/F2439.json +++ b/test/data/fd/form/F2439.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Form 2439","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":45.719,"y":8.25,"w":1.2000000000000002,"l":16.225},{"oc":"#221f1f","x":61.806,"y":2.25,"w":1.5,"l":37.28},{"oc":"#221f1f","x":85.319,"y":15,"w":1.2000000000000002,"l":13.767},{"oc":"#221f1f","x":45.719,"y":2.25,"w":1.5,"l":16.225},{"oc":"#221f1f","x":61.806,"y":8.25,"w":1.2000000000000002,"l":37.28},{"dsh":1,"oc":"#221f1f","x":75.445,"y":6.75,"w":0.75,"l":8.612},{"dsh":1,"oc":"#221f1f","x":75.445,"y":7.5,"w":0.75,"l":8.748},{"dsh":1,"oc":"#221f1f","x":87.115,"y":7.5,"w":0.75,"l":4.503},{"oc":"#221f1f","x":6.102,"y":2.25,"w":1.5,"l":39.755},{"oc":"#221f1f","x":6.102,"y":8.25,"w":1.2000000000000002,"l":39.755},{"oc":"#221f1f","x":6.102,"y":9.75,"w":1.2000000000000002,"l":39.755},{"oc":"#221f1f","x":6.102,"y":11.25,"w":1.2000000000000002,"l":39.755},{"oc":"#221f1f","x":6.102,"y":15,"w":1.5,"l":39.755},{"oc":"#221f1f","x":45.719,"y":9.75,"w":1.2000000000000002,"l":39.737},{"oc":"#221f1f","x":45.719,"y":11.25,"w":1.2000000000000002,"l":39.737},{"oc":"#221f1f","x":45.719,"y":12.75,"w":1.2000000000000002,"l":19.938},{"oc":"#221f1f","x":65.519,"y":12.75,"w":1.2000000000000002,"l":19.938},{"oc":"#221f1f","x":45.719,"y":15,"w":1.5,"l":39.737}],"VLines":[{"oc":"#221f1f","x":45.788,"y":6.734,"w":1.2000000000000002,"l":1.541},{"oc":"#221f1f","x":45.788,"y":2.984,"w":1.2000000000000002,"l":3.781},{"oc":"#221f1f","x":99,"y":2.219,"w":1.5,"l":1.891},{"oc":"#221f1f","x":61.875,"y":2.219,"w":1.2000000000000002,"l":1.891},{"oc":"#221f1f","x":99,"y":8.225,"w":1.5,"l":6.8},{"oc":"#221f1f","x":85.388,"y":8.225,"w":1.2000000000000002,"l":6.8},{"oc":"#221f1f","x":45.788,"y":2.219,"w":1.2000000000000002,"l":0.797},{"oc":"#221f1f","x":99,"y":4.07,"w":1.5,"l":4.205},{"oc":"#221f1f","x":61.875,"y":4.07,"w":1.2000000000000002,"l":4.205},{"oc":"#221f1f","x":6.188,"y":2.219,"w":1.5,"l":6.056},{"oc":"#221f1f","x":6.188,"y":8.234,"w":1.5,"l":1.541},{"oc":"#221f1f","x":6.188,"y":9.734,"w":1.5,"l":1.541},{"oc":"#221f1f","x":6.188,"y":11.234,"w":1.5,"l":3.797},{"oc":"#221f1f","x":45.788,"y":8.234,"w":1.2000000000000002,"l":1.541},{"oc":"#221f1f","x":45.788,"y":9.734,"w":1.2000000000000002,"l":1.54},{"oc":"#221f1f","x":45.788,"y":11.234,"w":1.2000000000000002,"l":1.541},{"oc":"#221f1f","x":65.588,"y":11.234,"w":1.2000000000000002,"l":1.541},{"oc":"#221f1f","x":45.788,"y":12.734,"w":1.2000000000000002,"l":2.297}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1}],"Texts":[{"oc":"#221f1f","x":48.885,"y":6.937,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.926,"y":6.937,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2439","S":-1,"TS":[0,17,0,0]}]},{"oc":"#221f1f","x":49.113,"y":4.393,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":53.458,"y":4.393,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":62.772,"y":2.162,"w":18.702000000000005,"clr":-1,"A":"left","R":[{"T":"Notice%20to%20Shareholder%20of%20Undistributed%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":68.901,"y":2.987,"w":11.94,"clr":-1,"A":"left","R":[{"T":"Long-Term%20Capital%20Gains","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":88.967,"y":8.602,"w":4.02,"clr":-1,"A":"left","R":[{"T":"Copy%20B%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":87.983,"y":9.262,"w":6.039,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":87.781,"y":9.862,"w":6.334,"clr":-1,"A":"left","R":[{"T":"shareholder's%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.559,"y":10.462,"w":8.113000000000001,"clr":-1,"A":"left","R":[{"T":"income%20tax%20return%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":87.323,"y":11.062,"w":7,"clr":-1,"A":"left","R":[{"T":"for%20the%20tax%20year%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.85,"y":11.662,"w":7.687999999999999,"clr":-1,"A":"left","R":[{"T":"that%20includes%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":87.602,"y":12.262,"w":6.593999999999999,"clr":-1,"A":"left","R":[{"T":"last%20day%20of%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":87.26,"y":12.862,"w":7.0920000000000005,"clr":-1,"A":"left","R":[{"T":"RIC's%20or%20REIT's%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":89.309,"y":13.462,"w":3.833,"clr":-1,"A":"left","R":[{"T":"tax%20year.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.515,"y":14.875,"w":24.299999999999994,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20-%20Internal%20Revenue%20Service","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":47.997,"y":2.125,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0145","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.684,"y":3.88,"w":18.464999999999996,"clr":-1,"A":"left","R":[{"T":"For%20calendar%20year%202013%2C%20or%20other%20tax%20year%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.084,"y":4.48,"w":22.246000000000002,"clr":-1,"A":"left","R":[{"T":"of%20the%20regulated%20investment%20company%20(RIC)%20or%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.848,"y":5.08,"w":15.039000000000005,"clr":-1,"A":"left","R":[{"T":"real%20estate%20investment%20trust%20(REIT)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.138,"y":5.857,"w":4.390000000000001,"clr":-1,"A":"left","R":[{"T":"beginning","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.107,"y":5.795,"w":5.022,"clr":-1,"A":"left","R":[{"T":"%2C%202013%2C%20and","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.137,"y":6.544,"w":3.0380000000000003,"clr":-1,"A":"left","R":[{"T":"ending","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.244,"y":6.544,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"%2C%2020","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":30.275,"y":1.3210000000000002,"w":2.3339999999999996,"clr":-1,"A":"left","R":[{"T":"VOID","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":42.65,"y":1.3210000000000002,"w":6.074,"clr":-1,"A":"left","R":[{"T":"CORRECTED","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.453,"y":2,"w":20.039000000000005,"clr":-1,"A":"left","R":[{"T":"Name%2C%20address%2C%20and%20ZIP%20code%20of%20RIC%20or%20REIT","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.453,"y":8,"w":16.131000000000004,"clr":-1,"A":"left","R":[{"T":"Identification%20number%20of%20RIC%20or%20REIT","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.453,"y":9.5,"w":14.781,"clr":-1,"A":"left","R":[{"T":"Shareholder%E2%80%99s%20identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.453,"y":11,"w":19.671000000000003,"clr":-1,"A":"left","R":[{"T":"Shareholder%E2%80%99s%20name%2C%20address%2C%20and%20ZIP%20code","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":46.225,"y":8,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":47.919,"y":8,"w":18.930000000000003,"clr":-1,"A":"left","R":[{"T":"Total%20undistributed%20long-term%20capital%20gains","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":46.225,"y":9.5,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1b%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":47.964,"y":9.5,"w":14.337000000000003,"clr":-1,"A":"left","R":[{"T":"Unrecaptured%20section%201250%20gain","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":46.225,"y":11,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"1c%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":47.919,"y":11,"w":8.058,"clr":-1,"A":"left","R":[{"T":"Section%201202%20gain","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.025,"y":11,"w":1.445,"clr":-1,"A":"left","R":[{"T":"1d%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.764,"y":11,"w":10.278000000000002,"clr":-1,"A":"left","R":[{"T":"Collectibles%20(28%25)%20gain","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":46.225,"y":12.5,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"2%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":47.897,"y":12.5,"w":21.540000000000006,"clr":-1,"A":"left","R":[{"T":"Tax%20paid%20by%20the%20RIC%20or%20REIT%20on%20the%20box%201a%20gains","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.937,"y":14.821,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.08,"y":14.821,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2439","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":42.528,"y":14.875,"w":10.424000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform2439%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PAYERNM1","EN":0},"TI":1313,"AM":0,"x":6.476,"y":3.144,"w":39.032,"h":0.833,"TU":"Name of RIC or REIT."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PAYERNM2","EN":0},"TI":1314,"AM":0,"x":6.522,"y":3.992,"w":38.968,"h":0.833,"TU":"Name of RIC or REIT continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PAYADD1","EN":0},"TI":1315,"AM":0,"x":14.308,"y":4.918,"w":31.182,"h":0.833,"TU":"Address of RIC or REIT."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PCTY","EN":0},"TI":1316,"AM":0,"x":14.308,"y":5.68,"w":31.064,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PST","EN":0},"TI":1317,"AM":0,"x":15.553,"y":6.5,"w":4.516,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PZIP","EN":0},"TI":1318,"AM":0,"x":32.129,"y":6.468,"w":13.257,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"BEGIN","EN":0},"TI":1319,"AM":0,"x":75.521,"y":6.077,"w":8.471,"h":0.833,"TU":"Beginning","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"END","EN":0},"TI":1320,"AM":0,"x":75.297,"y":6.854,"w":8.915,"h":0.833,"TU":"Ending","MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YEAR","EN":0},"TI":1321,"AM":0,"x":87.12,"y":6.772,"w":4.517,"h":0.833,"TU":"Year.","MV":"yyyy"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PAYERID","EN":0},"TI":1322,"AM":0,"x":6.897,"y":8.998,"w":18.457,"h":0.833,"TU":"Identification number of RIC or REIT","MV":"99-9999999"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"RECIPSSN","EN":0},"TI":1323,"AM":0,"x":6.972,"y":10.443,"w":18.532,"h":0.833,"TU":"Shareholder’s identifying number."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RECIPNAM","EN":0},"TI":1324,"AM":0,"x":6.776,"y":11.899,"w":38.615,"h":0.833,"TU":"Shareholder’s name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RECIPADD","EN":0},"TI":1325,"AM":0,"x":14.524,"y":12.659,"w":30.787,"h":0.833,"TU":"Address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RCTY","EN":0},"TI":1326,"AM":0,"x":14.608,"y":13.439,"w":30.743,"h":0.833,"TU":"City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RST","EN":0},"TI":1327,"AM":0,"x":14.958,"y":14.25,"w":4.516,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"RZIP","EN":0},"TI":1328,"AM":0,"x":32.067,"y":14.245,"w":13.385,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNDLTCG","EN":0},"TI":1329,"AM":0,"x":48.444,"y":9.025,"w":16.585,"h":0.833,"TU":"Line 1a. Total undistributed long-term capital gains."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNRECAP","EN":0},"TI":1330,"AM":0,"x":48.519,"y":10.443,"w":16.735,"h":0.833,"TU":"Line 1b. Unrecaptured section 1250 gain."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEC1202","EN":0},"TI":1331,"AM":0,"x":48.444,"y":11.943,"w":16.818,"h":0.833,"TU":"Line 1c. Section 1202 gain."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COLLECT","EN":0},"TI":1332,"AM":0,"x":68.094,"y":11.998,"w":17.032,"h":0.833,"TU":"Line 1d. Collectibles (28%) gain."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXPAID","EN":0},"TI":1333,"AM":0,"x":48.281,"y":14.065,"w":17.584,"h":0.905,"TU":"Line 2 Tax paid by the RIC or REIT on box 1a gains."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"VOID","EN":0},"TI":1311,"AM":0,"x":28.075,"y":1.4,"w":2.12,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CORRECT","EN":0},"TI":1312,"AM":0,"x":40.578,"y":1.318,"w":1.971,"h":0.833,"checked":false}],"id":{"Id":"A2RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Title":"2013 Form 2439","Author":"SE:W:CAR:MP","Subject":"Notice to Shareholder of Undistributed Long-Term Capital Gains","Keywords":"Fillable","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131030172259-07'00'","ModDate":"D:20140123194014-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":16.625,"y":8.25,"w":1.2,"l":5.9,"oc":"#221f1f"},{"x":22.475,"y":2.25,"w":1.5,"l":13.556,"oc":"#221f1f"},{"x":31.025,"y":15,"w":1.2,"l":5.006,"oc":"#221f1f"},{"x":16.625,"y":2.25,"w":1.5,"l":5.9,"oc":"#221f1f"},{"x":22.475,"y":8.25,"w":1.2,"l":13.556,"oc":"#221f1f"},{"x":27.434,"y":6.75,"w":0.75,"l":3.132,"oc":"#221f1f","dsh":1},{"x":27.434,"y":7.5,"w":0.75,"l":3.181,"oc":"#221f1f","dsh":1},{"x":31.678,"y":7.5,"w":0.75,"l":1.638,"oc":"#221f1f","dsh":1},{"x":2.219,"y":2.25,"w":1.5,"l":14.456,"oc":"#221f1f"},{"x":2.219,"y":8.25,"w":1.2,"l":14.456,"oc":"#221f1f"},{"x":2.219,"y":9.75,"w":1.2,"l":14.456,"oc":"#221f1f"},{"x":2.219,"y":11.25,"w":1.2,"l":14.456,"oc":"#221f1f"},{"x":2.219,"y":15,"w":1.5,"l":14.456,"oc":"#221f1f"},{"x":16.625,"y":9.75,"w":1.2,"l":14.45,"oc":"#221f1f"},{"x":16.625,"y":11.25,"w":1.2,"l":14.45,"oc":"#221f1f"},{"x":16.625,"y":12.75,"w":1.2,"l":7.25,"oc":"#221f1f"},{"x":23.825,"y":12.75,"w":1.2,"l":7.25,"oc":"#221f1f"},{"x":16.625,"y":15,"w":1.5,"l":14.45,"oc":"#221f1f"}],"VLines":[{"x":16.65,"y":6.734,"w":1.2,"l":1.541,"oc":"#221f1f"},{"x":16.65,"y":2.984,"w":1.2,"l":3.781,"oc":"#221f1f"},{"x":36,"y":2.219,"w":1.5,"l":1.891,"oc":"#221f1f"},{"x":22.5,"y":2.219,"w":1.2,"l":1.891,"oc":"#221f1f"},{"x":36,"y":8.225,"w":1.5,"l":6.8,"oc":"#221f1f"},{"x":31.05,"y":8.225,"w":1.2,"l":6.8,"oc":"#221f1f"},{"x":16.65,"y":2.219,"w":1.2,"l":0.797,"oc":"#221f1f"},{"x":36,"y":4.07,"w":1.5,"l":4.205,"oc":"#221f1f"},{"x":22.5,"y":4.07,"w":1.2,"l":4.205,"oc":"#221f1f"},{"x":2.25,"y":2.219,"w":1.5,"l":6.056,"oc":"#221f1f"},{"x":2.25,"y":8.234,"w":1.5,"l":1.541,"oc":"#221f1f"},{"x":2.25,"y":9.734,"w":1.5,"l":1.541,"oc":"#221f1f"},{"x":2.25,"y":11.234,"w":1.5,"l":3.797,"oc":"#221f1f"},{"x":16.65,"y":8.234,"w":1.2,"l":1.541,"oc":"#221f1f"},{"x":16.65,"y":9.734,"w":1.2,"l":1.54,"oc":"#221f1f"},{"x":16.65,"y":11.234,"w":1.2,"l":1.541,"oc":"#221f1f"},{"x":23.85,"y":11.234,"w":1.2,"l":1.541,"oc":"#221f1f"},{"x":16.65,"y":12.734,"w":1.2,"l":2.297,"oc":"#221f1f"}],"Fills":[],"Texts":[{"x":17.617,"y":6.937,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":3,"TS":[0,12,0,0]}]},{"x":19.087,"y":6.937,"w":2.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2439","S":-1,"TS":[0,17,0,0]}]},{"x":17.7,"y":4.393,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":19.28,"y":4.393,"w":1.336,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"x":22.667,"y":2.162,"w":18.702,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Notice to Shareholder of Undistributed ","S":4,"TS":[0,14,0,0]}]},{"x":24.896,"y":2.987,"w":11.94,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Long-Term Capital Gains","S":4,"TS":[0,14,0,0]}]},{"x":32.193,"y":8.602,"w":4.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Copy B ","S":-1,"TS":[0,13,0,0]}]},{"x":31.835,"y":9.262,"w":6.039,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attach to the ","S":-1,"TS":[0,11,0,0]}]},{"x":31.761000000000003,"y":9.862,"w":6.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"shareholder's ","S":-1,"TS":[0,11,0,0]}]},{"x":31.317,"y":10.462,"w":8.113,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"income tax return ","S":-1,"TS":[0,11,0,0]}]},{"x":31.595,"y":11.062,"w":7,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"for the tax year ","S":-1,"TS":[0,11,0,0]}]},{"x":31.423,"y":11.662,"w":7.688,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"that includes the ","S":-1,"TS":[0,11,0,0]}]},{"x":31.696,"y":12.262,"w":6.594,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"last day of the ","S":-1,"TS":[0,11,0,0]}]},{"x":31.572,"y":12.862,"w":7.092,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"RIC's or REIT's ","S":-1,"TS":[0,11,0,0]}]},{"x":32.317,"y":13.462,"w":3.833,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"tax year.","S":-1,"TS":[0,11,0,0]}]},{"x":25.119,"y":14.875,"w":24.3,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury - Internal Revenue Service","S":2,"TS":[0,10,0,0]}]},{"x":17.294,"y":2.125,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0145","S":2,"TS":[0,10,0,0]}]},{"x":24.453,"y":3.88,"w":18.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"For calendar year 2013, or other tax year ","S":-1,"TS":[0,11,0,0]}]},{"x":23.508,"y":4.48,"w":22.246,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of the regulated investment company (RIC) or the ","S":-1,"TS":[0,11,0,0]}]},{"x":25.24,"y":5.08,"w":15.039,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"real estate investment trust (REIT)","S":-1,"TS":[0,11,0,0]}]},{"x":24.982,"y":5.857,"w":4.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"beginning","S":-1,"TS":[0,11,0,0]}]},{"x":30.425,"y":5.795,"w":5.022,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":", 2013, and","S":-1,"TS":[0,11,0,0]}]},{"x":24.982,"y":6.544,"w":3.038,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"ending","S":-1,"TS":[0,11,0,0]}]},{"x":30.475,"y":6.544,"w":1.668,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":", 20","S":-1,"TS":[0,11,0,0]}]},{"x":10.85,"y":1.3210000000000002,"w":2.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"VOID","S":-1,"TS":[0,13,0,0]}]},{"x":15.35,"y":1.3210000000000002,"w":6.074,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"CORRECTED","S":-1,"TS":[0,13,0,0]}]},{"x":2.188,"y":2,"w":20.039,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name, address, and ZIP code of RIC or REIT","S":2,"TS":[0,10,0,0]}]},{"x":2.188,"y":8,"w":16.131,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Identification number of RIC or REIT","S":2,"TS":[0,10,0,0]}]},{"x":2.188,"y":9.5,"w":14.781,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Shareholder’s identifying number","S":2,"TS":[0,10,0,0]}]},{"x":2.188,"y":11,"w":19.671,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Shareholder’s name, address, and ZIP code","S":2,"TS":[0,10,0,0]}]},{"x":16.65,"y":8,"w":1.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1a ","S":2,"TS":[0,10,0,0]}]},{"x":17.266,"y":8,"w":18.93,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total undistributed long-term capital gains","S":2,"TS":[0,10,0,0]}]},{"x":16.65,"y":9.5,"w":1.445,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1b ","S":2,"TS":[0,10,0,0]}]},{"x":17.282,"y":9.5,"w":14.337,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Unrecaptured section 1250 gain","S":2,"TS":[0,10,0,0]}]},{"x":16.65,"y":11,"w":1.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1c ","S":2,"TS":[0,10,0,0]}]},{"x":17.266,"y":11,"w":8.058,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Section 1202 gain","S":2,"TS":[0,10,0,0]}]},{"x":23.85,"y":11,"w":1.445,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1d ","S":2,"TS":[0,10,0,0]}]},{"x":24.482,"y":11,"w":10.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Collectibles (28%) gain","S":2,"TS":[0,10,0,0]}]},{"x":16.65,"y":12.5,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":2,"TS":[0,10,0,0]}]},{"x":17.258,"y":12.5,"w":21.54,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Tax paid by the RIC or REIT on the box 1a gains","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":14.821,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":3.143,"y":14.821,"w":2.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2439","S":-1,"TS":[0,13,0,0]}]},{"x":15.306,"y":14.875,"w":10.424,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"www.irs.gov/form2439 ","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PAYERNM1","EN":0},"TI":1592,"AM":0,"TU":"Name of RIC or REIT.","x":2.355,"y":3.144,"w":14.193,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PAYERNM2","EN":0},"TI":1593,"AM":0,"TU":"Name of RIC or REIT continued.","x":2.372,"y":3.992,"w":14.17,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PAYADD1","EN":0},"TI":1594,"AM":0,"TU":"Address of RIC or REIT.","x":5.203,"y":4.918,"w":11.339,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PCTY","EN":0},"TI":1595,"AM":0,"TU":"City.","x":5.203,"y":5.68,"w":11.296,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PST","EN":0},"TI":1596,"AM":0,"TU":"State","x":5.656,"y":6.5,"w":1.324,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AP"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PZIP","EN":0},"TI":1597,"AM":0,"TU":"Zip code.","x":11.683,"y":6.468,"w":4.821,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"BEGIN","EN":0},"TI":1598,"AM":0,"TU":"Beginning","x":27.462,"y":6.077,"w":3.081,"h":0.833,"MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"END","EN":0},"TI":1599,"AM":0,"TU":"Ending","x":27.381,"y":6.854,"w":3.242,"h":0.833,"MV":"mm/dd"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"YEAR","EN":0},"TI":1600,"AM":0,"TU":"Year.","x":31.68,"y":6.772,"w":1.643,"h":0.833,"MV":"yyyy"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PAYERID","EN":0},"TI":1601,"AM":0,"TU":"Identification number of RIC or REIT","x":2.508,"y":8.998,"w":6.712,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"RECIPSSN","EN":0},"TI":1602,"AM":0,"TU":"Shareholder’s identifying number.","x":2.535,"y":10.443,"w":6.739,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RECIPNAM","EN":0},"TI":1603,"AM":0,"TU":"Shareholder’s name.","x":2.464,"y":11.899,"w":14.042,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RECIPADD","EN":0},"TI":1604,"AM":0,"TU":"Address.","x":5.282,"y":12.659,"w":11.195,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RCTY","EN":0},"TI":1605,"AM":0,"TU":"City.","x":5.312,"y":13.439,"w":11.179,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"RST","EN":0},"TI":1606,"AM":0,"TU":"State","x":5.439,"y":14.25,"w":1.324,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AP"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"RZIP","EN":0},"TI":1607,"AM":0,"TU":"Zip code.","x":11.661,"y":14.245,"w":4.867,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNDLTCG","EN":0},"TI":1608,"AM":0,"TU":"Line 1a. Total undistributed long-term capital gains.","x":17.616,"y":9.025,"w":6.031,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"UNRECAP","EN":0},"TI":1609,"AM":0,"TU":"Line 1b. Unrecaptured section 1250 gain.","x":17.643,"y":10.443,"w":6.085,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SEC1202","EN":0},"TI":1610,"AM":0,"TU":"Line 1c. Section 1202 gain.","x":17.616,"y":11.943,"w":6.116,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"COLLECT","EN":0},"TI":1611,"AM":0,"TU":"Line 1d. Collectibles (28%) gain.","x":24.761,"y":11.998,"w":6.193,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAXPAID","EN":0},"TI":1612,"AM":0,"TU":"Line 2 Tax paid by the RIC or REIT on box 1a gains.","x":17.557,"y":14.065,"w":6.394,"h":0.905}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"VOID","EN":0},"TI":1590,"AM":0,"TU":"Void or Corrected Checkboxes.","x":10.209,"y":1.4,"w":0.771,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"CORRECT","EN":0},"TI":1591,"AM":0,"TU":"Void or Corrected Checkboxes.","x":14.756,"y":1.318,"w":0.717,"h":0.833,"checked":false}],"id":{"Id":"A2RB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F2441.json b/test/data/fd/form/F2441.json index fca3deac..dfe791a9 100755 --- a/test/data/fd/form/F2441.json +++ b/test/data/fd/form/F2441.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":5.981,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.952,"y":6,"w":1.5,"l":63.207},{"oc":"#9a9d9f","x":75.621,"y":3.302,"w":6,"l":3.231},{"oc":"#848587","x":73.445,"y":5.878,"w":3,"l":5.156},{"oc":"#848587","x":73.617,"y":3.844,"w":3,"l":3.438},{"oc":"#848587","x":77.054,"y":4.406,"w":3,"l":1.547},{"oc":"#221f1f","x":68.323,"y":4.575,"w":3,"l":5.295},{"oc":"#221f1f","x":68.318,"y":2.325,"w":3,"l":3.879},{"oc":"#221f1f","x":72.07,"y":2.906,"w":3,"l":1.547},{"oc":"#221f1f","x":84.064,"y":3,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.064,"y":5.981,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":7.5,"w":1.125,"l":71.861},{"oc":"#221f1f","x":77.92,"y":7.5,"w":1.125,"l":21.123},{"oc":"#221f1f","x":6.145,"y":9,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":10.5,"w":0.75,"l":19.886},{"oc":"#221f1f","x":25.945,"y":10.5,"w":0.75,"l":40.923},{"oc":"#221f1f","x":66.782,"y":10.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":81.632,"y":10.5,"w":0.75,"l":17.411},{"dsh":1,"oc":"#221f1f","x":25.945,"y":11.25,"w":0.75,"l":40.924},{"oc":"#221f1f","x":25.945,"y":12,"w":0.75,"l":40.923},{"oc":"#221f1f","x":66.782,"y":12,"w":0.75,"l":14.936},{"oc":"#221f1f","x":81.632,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":94.007,"y":12,"w":0.75,"l":5.036},{"oc":"#221f1f","x":6.144,"y":13.5,"w":0.75,"l":19.886},{"dsh":1,"oc":"#221f1f","x":25.945,"y":12.75,"w":0.75,"l":40.924},{"oc":"#221f1f","x":25.945,"y":13.5,"w":0.75,"l":40.923},{"oc":"#221f1f","x":66.782,"y":13.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":81.632,"y":13.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":94.007,"y":13.5,"w":0.75,"l":5.036},{"oc":"#221f1f","x":22.275,"y":15.75,"w":1.5,"l":19.8},{"oc":"#221f1f","x":22.275,"y":14.063,"w":1.5,"l":19.8},{"oc":"#221f1f","x":42.075,"y":14.562,"w":1.5,"l":6.188},{"oc":"#221f1f","x":54.45,"y":14.562,"w":1.5,"l":8.044},{"oc":"#221f1f","x":42.075,"y":15.438,"w":1.5,"l":6.188},{"oc":"#221f1f","x":54.45,"y":15.438,"w":1.5,"l":8.044},{"oc":"#221f1f","x":6.145,"y":17.25,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":18,"w":0.75,"l":6.273},{"oc":"#221f1f","x":12.332,"y":18,"w":0.75,"l":86.711},{"oc":"#221f1f","x":6.145,"y":18.75,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.145,"y":18.75,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.145,"y":20.25,"w":0.75,"l":24.836},{"oc":"#221f1f","x":30.895,"y":18.75,"w":0.75,"l":27.311},{"oc":"#221f1f","x":30.895,"y":20.25,"w":0.75,"l":27.311},{"oc":"#221f1f","x":58.12,"y":18.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":58.12,"y":20.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":77.92,"y":18.75,"w":0.75,"l":21.123},{"oc":"#221f1f","x":77.92,"y":20.25,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.531,"y":21.281,"w":0.75,"l":24.836},{"oc":"#221f1f","x":31.281,"y":21.281,"w":0.75,"l":27.311},{"oc":"#221f1f","x":58.506,"y":21.281,"w":0.75,"l":19.886},{"oc":"#221f1f","x":78.306,"y":21.281,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.394,"y":21.281,"w":0.75,"l":5.036},{"oc":"#221f1f","x":6.531,"y":22.266,"w":0.75,"l":24.836},{"oc":"#221f1f","x":31.281,"y":22.266,"w":0.75,"l":27.311},{"oc":"#221f1f","x":58.506,"y":22.266,"w":0.75,"l":19.886},{"oc":"#221f1f","x":78.306,"y":22.266,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.394,"y":22.266,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.207,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.207,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":25.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.007,"y":25.5,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.207,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":26.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.007,"y":26.25,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.207,"y":27.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":27.75,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.007,"y":27.75,"w":0.75,"l":5.036},{"oc":"#221f1f","x":77.92,"y":28.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.007,"y":28.5,"w":0.75,"l":5.036},{"oc":"#221f1f","x":50.695,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.407,"y":30,"w":0.75,"l":16.173},{"oc":"#221f1f","x":70.495,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":14.807,"y":33,"w":1.125,"l":6.273},{"oc":"#221f1f","x":20.995,"y":33,"w":1.125,"l":8.748},{"oc":"#221f1f","x":29.657,"y":33,"w":1.125,"l":7.511},{"oc":"#221f1f","x":48.22,"y":33,"w":1.125,"l":6.961},{"oc":"#221f1f","x":55.095,"y":33,"w":1.125,"l":8.748},{"oc":"#221f1f","x":63.757,"y":33,"w":1.125,"l":7.511},{"oc":"#221f1f","x":74.207,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":35.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.007,"y":35.25,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.207,"y":35.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":40.5,"w":1.125,"l":16.173},{"oc":"#221f1f","x":94.007,"y":40.5,"w":1.125,"l":5.036},{"oc":"#221f1f","x":50.695,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.407,"y":42,"w":0.75,"l":16.173},{"oc":"#221f1f","x":70.495,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.207,"y":40.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":43.5,"w":1.5,"l":52.061},{"oc":"#221f1f","x":58.12,"y":43.5,"w":1.5,"l":29.786},{"oc":"#221f1f","x":87.82,"y":43.5,"w":1.5,"l":11.223},{"x":6.515,"y":12.025,"w":0.75,"l":19.886}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":2.297},{"oc":"#221f1f","x":21.038,"y":4.466,"w":1.5,"l":1.547},{"oc":"#848587","x":78.601,"y":4.387,"w":3,"l":1.568},{"oc":"#848587","x":73.346,"y":4.64,"w":3,"l":1.294},{"oc":"#848587","x":77.054,"y":3.844,"w":3,"l":0.563},{"oc":"#221f1f","x":73.617,"y":2.906,"w":3,"l":1.688},{"oc":"#221f1f","x":68.461,"y":2.344,"w":3,"l":2.25},{"oc":"#221f1f","x":72.07,"y":2.344,"w":3,"l":0.563},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.15,"y":2.966,"w":1.5,"l":2.281},{"oc":"#221f1f","x":84.15,"y":4.841,"w":1.5,"l":1.172},{"oc":"#221f1f","x":77.963,"y":5.969,"w":0.75,"l":1.555},{"oc":"#221f1f","x":25.988,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.825,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.675,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.988,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.675,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.05,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.988,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.675,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.05,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":42.075,"y":14.063,"w":1.5,"l":1.688},{"oc":"#221f1f","x":22.275,"y":14.063,"w":1.5,"l":1.688},{"oc":"#221f1f","x":58.163,"y":18.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":18.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":30.938,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":58.163,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.05,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":30.938,"y":21.693,"w":0.75,"l":0.676},{"oc":"#221f1f","x":58.137,"y":21.651,"w":0.75,"l":0.761},{"oc":"#221f1f","x":77.962,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.05,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":23.234,"w":0.75,"l":1.547},{"oc":"#221f1f","x":74.25,"y":23.234,"w":0.75,"l":1.547},{"oc":"#221f1f","x":77.963,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":23.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.05,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.05,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.738,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.45,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.313,"y":33,"w":1.125,"l":6},{"oc":"#221f1f","x":77.963,"y":28.485,"w":0.75,"l":6.047},{"oc":"#221f1f","x":74.25,"y":28.485,"w":0.75,"l":6.047},{"oc":"#221f1f","x":77.963,"y":34.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.25,"y":34.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":35.235,"w":0.75,"l":4.547},{"oc":"#221f1f","x":74.25,"y":35.235,"w":0.75,"l":4.547},{"oc":"#221f1f","x":77.963,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":35.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":94.05,"y":39.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":54.45,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.738,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":70.538,"y":41.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":40.477,"w":0.75,"l":2.305},{"oc":"#221f1f","x":74.25,"y":40.477,"w":0.75,"l":2.305},{"oc":"#221f1f","x":77.963,"y":42.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":42.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":40.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":94.05,"y":42.734,"w":0.75,"l":0.781},{"x":26.039,"y":11.188,"w":0.75,"l":0.781},{"x":26.039,"y":11.797,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":7.5,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":17.25,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":74.25,"y":23.25,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":74.25,"y":28.5,"w":3.712,"h":6,"clr":-1},{"oc":"#bebfc1","x":74.25,"y":35.25,"w":3.712,"h":4.5,"clr":-1},{"oc":"#bebfc1","x":74.25,"y":40.5,"w":3.712,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.634,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.275,"y":2.634,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2441","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.938,"y":4.419,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.919,"w":13.279000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":20.788,"y":2.413,"w":18.839000000000006,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20Child%20and%20Dependent%20Care%20Expenses","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":27.942,"y":3.474,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":28.974,"y":3.567,"w":24.729000000000006,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20Form%201040%2C%20Form%201040A%2C%20or%20Form%201040NR.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":24.189,"y":4.409,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":25.555,"y":4.503,"w":29.951999999999998,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Form%202441%20and%20its%20separate%20instructions%20is%20at","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":37.89,"y":5.045,"w":10.615000000000002,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform2441","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":52.665,"y":5.045,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":68.334,"y":2.866,"w":3.1870000000000003,"clr":-1,"A":"left","R":[{"T":"1040A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":68.199,"y":2.355,"w":5.560000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":68.432,"y":2.05,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"1040%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#848587","x":73.592,"y":4.5,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2441","S":4,"TS":[0,14,0,0]}]},{"oc":"#9a9d9f","x":73.688,"y":2.723,"w":1,"clr":-1,"A":"left","R":[{"T":"%60","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":68.28,"y":3.066,"w":5.560000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":68.334,"y":3.6420000000000003,"w":3.9650000000000003,"clr":-1,"A":"left","R":[{"T":"1040NR%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":85.741,"y":1.972,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.857,"y":3.718,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.827,"y":3.718,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.963,"y":4.512,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.963,"y":4.958,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.94,"y":4.959,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":5.687,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.4,"y":5.656,"w":13.368000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":2,"TS":[0,10,0,0]}]},{"x":6.836,"y":7.321,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":7.321,"w":23.72800000000001,"clr":-1,"A":"left","R":[{"T":"Persons%20or%20Organizations%20Who%20Provided%20the%20Care%2C","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":54.078,"y":7.321,"w":1.778,"clr":-1,"A":"left","R":[{"T":"You","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":56.962,"y":7.321,"w":2.9450000000000003,"clr":-1,"A":"left","R":[{"T":"%20must%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":62.022,"y":7.321,"w":8.651000000000002,"clr":-1,"A":"left","R":[{"T":"complete%20this%20part.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":8.009,"w":28.374,"clr":-1,"A":"left","R":[{"T":"(If%20you%20have%20more%20than%20two%20care%20providers%2C%20see%20the%20instructions.)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.552,"y":8.839,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.669,"y":8.844,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":12.741,"y":8.844,"w":6.870000000000001,"clr":-1,"A":"left","R":[{"T":"Care%20provider%E2%80%99s","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":14.343,"y":9.312,"w":2.483,"clr":-1,"A":"left","R":[{"T":"name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":42.87,"y":8.844,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":44.986,"y":8.844,"w":3.704,"clr":-1,"A":"left","R":[{"T":"Address","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":32.651,"y":9.312,"w":22.451,"clr":-1,"A":"left","R":[{"T":"(number%2C%20street%2C%20apt.%20no.%2C%20city%2C%20state%2C%20and%20ZIP%20code)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.95,"y":8.844,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":70.022,"y":8.844,"w":8.336,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.636,"y":9.312,"w":5.591000000000001,"clr":-1,"A":"left","R":[{"T":"(SSN%20or%20EIN)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.586,"y":8.844,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":87.702,"y":8.844,"w":5.7250000000000005,"clr":-1,"A":"left","R":[{"T":"Amount%20paid","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.542,"y":9.312,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.582,"y":14.039,"w":7.464,"clr":-1,"A":"left","R":[{"T":"Did%20you%20receive%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.529,"y":14.727,"w":12.114000000000004,"clr":-1,"A":"left","R":[{"T":"dependent%20care%20benefits%3F","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":50.061,"y":13.902,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":61.642,"y":13.894,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.1,"y":14,"w":12.63,"clr":-1,"A":"left","R":[{"T":"Complete%20only%20Part%20II%20below.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.731,"y":14.777,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":61.642,"y":14.769,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.1,"y":14.839,"w":15.55900000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20Part%20III%20on%20the%20back%20next.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":15.539000000000001,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Caution.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":11.868,"y":15.539000000000001,"w":54.69699999999994,"clr":-1,"A":"left","R":[{"T":"If%20the%20care%20was%20provided%20in%20your%20home%2C%20you%20may%20owe%20employment%20taxes.%20If%20you%20do%2C%20you%20cannot%20file%20Form%201040A.%20For%20details%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.937,"y":16.227,"w":31.621000000000006,"clr":-1,"A":"left","R":[{"T":"see%20the%20instructions%20for%20Form%201040%2C%20line%2059a%2C%20or%20Form%201040NR%2C%20line%2058a.","S":3,"TS":[0,12,0,0]}]},{"x":6.582,"y":17.071,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.844,"y":17.071,"w":22.22700000000001,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20Child%20and%20Dependent%20Care%20Expenses","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.552,"y":17.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":17.839,"w":10.447,"clr":-1,"A":"left","R":[{"T":"Information%20about%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.501,"y":17.839,"w":9.835,"clr":-1,"A":"left","R":[{"T":"qualifying%20person(s).","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":38.988,"y":17.839,"w":29.875999999999998,"clr":-1,"A":"left","R":[{"T":"%20If%20you%20have%20more%20than%20two%20qualifying%20persons%2C%20see%20the%20instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.059,"y":18.625,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":26.13,"y":18.625,"w":11.355000000000002,"clr":-1,"A":"left","R":[{"T":"Qualifying%20person%E2%80%99s%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":17.143,"y":19.375,"w":2.222,"clr":-1,"A":"left","R":[{"T":"First%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":43.152,"y":19.286,"w":1.908,"clr":-1,"A":"left","R":[{"T":"Last","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":59.858,"y":18.594,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":61.975,"y":18.594,"w":11.464000000000002,"clr":-1,"A":"left","R":[{"T":"Qualifying%20person%E2%80%99s%20social","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.477,"y":19.062,"w":7.2059999999999995,"clr":-1,"A":"left","R":[{"T":"security%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.77,"y":18.406,"w":10.893000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20Qualified%20expenses%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":93.732,"y":18.406,"w":1.6300000000000001,"clr":-1,"A":"left","R":[{"T":"you","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.628,"y":18.875,"w":14.579000000000002,"clr":-1,"A":"left","R":[{"T":"incurred%20and%20paid%20in%202013%20for%20the","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.178,"y":19.343,"w":11.725000000000001,"clr":-1,"A":"left","R":[{"T":"person%20listed%20in%20column%20(a)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.552,"y":23.102,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":23.07,"w":18.006999999999998,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20in%20column%20(c)%20of%20line%202.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.261,"y":23.07,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":40.696,"y":23.07,"w":18.96900000000001,"clr":-1,"A":"left","R":[{"T":"%20enter%20more%20than%20%243%2C000%20for%20one%20qualifying%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.892,"y":23.758,"w":38.34199999999998,"clr":-1,"A":"left","R":[{"T":"person%20or%20%246%2C000%20for%20two%20or%20more%20persons.%20If%20you%20completed%20Part%20III%2C%20enter%20the%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.891,"y":24.445,"w":5.261,"clr":-1,"A":"left","R":[{"T":"from%20line%2031","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.378,"y":24.445,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.426,"y":24.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":25.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":25.339,"w":4.871,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.735,"y":25.339,"w":7.336,"clr":-1,"A":"left","R":[{"T":"earned%20income.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":28.13,"y":25.339,"w":7.464,"clr":-1,"A":"left","R":[{"T":"%20See%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":25.339,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.426,"y":25.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":25.977,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":26.039,"w":38.911999999999985,"clr":-1,"A":"left","R":[{"T":"If%20married%20filing%20jointly%2C%20enter%20your%20spouse%E2%80%99s%20earned%20income%20(if%20you%20or%20your%20spouse%20was%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":26.726,"w":20.800000000000008,"clr":-1,"A":"left","R":[{"T":"student%20or%20was%20disabled%2C%20see%20the%20instructions)%3B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.139,"y":26.726,"w":4.446000000000001,"clr":-1,"A":"left","R":[{"T":"all%20others","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":46.295,"y":26.726,"w":13.172,"clr":-1,"A":"left","R":[{"T":"%2C%20enter%20the%20amount%20from%20line%204","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.328,"y":26.726,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.426,"y":26.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":27.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":27.589,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.048,"y":27.589,"w":4.002000000000001,"clr":-1,"A":"left","R":[{"T":"smallest","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.886,"y":27.589,"w":7.206,"clr":-1,"A":"left","R":[{"T":"%20of%20line%203%2C%204%2C%20or%205","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":27.589,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.426,"y":27.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":28.227,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":28.289,"w":21.806000000000004,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%201040%2C%20line%2038%3B%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.976,"w":18.100000000000005,"clr":-1,"A":"left","R":[{"T":"1040A%2C%20%20line%2022%3B%20or%20Form%201040NR%2C%20line%2037","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":28.976,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.914,"y":29.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":29.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":29.839,"w":37.78899999999999,"clr":-1,"A":"left","R":[{"T":"Enter%20on%20line%208%20the%20decimal%20amount%20shown%20below%20that%20applies%20to%20the%20amount%20on%20line%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.6,"y":30.607,"w":4.891000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%207%20is%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":14.6,"y":32.013,"w":2.279,"clr":-1,"A":"left","R":[{"T":"Over","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":20.788,"y":31.32,"w":4.055,"clr":-1,"A":"left","R":[{"T":"But%20not%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":20.788,"y":32.007,"w":2.112,"clr":-1,"A":"left","R":[{"T":"over","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":29.45,"y":31.32,"w":4.391,"clr":-1,"A":"left","R":[{"T":"Decimal%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":29.45,"y":32.007,"w":4.723,"clr":-1,"A":"left","R":[{"T":"amount%20is","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":17.884,"y":32.857,"w":5.17,"clr":-1,"A":"left","R":[{"T":"%240%E2%80%9415%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.513,"y":32.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".35","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.208,"y":33.607,"w":7.1160000000000005,"clr":-1,"A":"left","R":[{"T":"15%2C000%E2%80%9417%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.513,"y":33.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".34","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.208,"y":34.357,"w":7.1160000000000005,"clr":-1,"A":"left","R":[{"T":"17%2C000%E2%80%9419%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.513,"y":34.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".33","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.208,"y":35.107,"w":7.1160000000000005,"clr":-1,"A":"left","R":[{"T":"19%2C000%E2%80%9421%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.513,"y":35.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".32","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.208,"y":35.857,"w":7.1160000000000005,"clr":-1,"A":"left","R":[{"T":"21%2C000%E2%80%9423%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.513,"y":35.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".31","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.208,"y":36.607,"w":7.1160000000000005,"clr":-1,"A":"left","R":[{"T":"23%2C000%E2%80%9425%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.513,"y":36.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".30","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.208,"y":37.357,"w":7.1160000000000005,"clr":-1,"A":"left","R":[{"T":"25%2C000%E2%80%9427%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.513,"y":37.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".29","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":15.208,"y":38.107,"w":7.1160000000000005,"clr":-1,"A":"left","R":[{"T":"27%2C000%E2%80%9429%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.513,"y":38.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".28","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":48.013,"y":30.607,"w":4.891000000000001,"clr":-1,"A":"left","R":[{"T":"If%20line%207%20is%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":48.013,"y":32.013,"w":2.279,"clr":-1,"A":"left","R":[{"T":"Over","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.06,"y":31.32,"w":4.055,"clr":-1,"A":"left","R":[{"T":"But%20not%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.06,"y":32.007,"w":2.112,"clr":-1,"A":"left","R":[{"T":"over","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":63.55,"y":31.32,"w":4.391,"clr":-1,"A":"left","R":[{"T":"Decimal%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":63.55,"y":32.007,"w":4.723,"clr":-1,"A":"left","R":[{"T":"amount%20is","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":48.543,"y":32.857,"w":7.6720000000000015,"clr":-1,"A":"left","R":[{"T":"%2429%2C000%E2%80%9431%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.613,"y":32.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".27","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.308,"y":33.607,"w":7.1160000000000005,"clr":-1,"A":"left","R":[{"T":"31%2C000%E2%80%9433%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.613,"y":33.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".26","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.308,"y":34.357,"w":7.1160000000000005,"clr":-1,"A":"left","R":[{"T":"33%2C000%E2%80%9435%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.613,"y":34.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".25","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.308,"y":35.107,"w":7.1160000000000005,"clr":-1,"A":"left","R":[{"T":"35%2C000%E2%80%9437%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.613,"y":35.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".24","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.308,"y":35.857,"w":7.1160000000000005,"clr":-1,"A":"left","R":[{"T":"37%2C000%E2%80%9439%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.613,"y":35.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".23","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.308,"y":36.607,"w":7.1160000000000005,"clr":-1,"A":"left","R":[{"T":"39%2C000%E2%80%9441%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.613,"y":36.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".22","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.308,"y":37.357,"w":7.1160000000000005,"clr":-1,"A":"left","R":[{"T":"41%2C000%E2%80%9443%2C000","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.613,"y":37.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".21","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.308,"y":38.107,"w":7.466000000000001,"clr":-1,"A":"left","R":[{"T":"43%2C000%E2%80%94No%20limit","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.613,"y":38.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":".20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":75.426,"y":34.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":38.789,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":38.789,"w":38.97799999999999,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%206%20by%20the%20decimal%20amount%20on%20line%208.%20If%20you%20paid%202012%20expenses%20in%202013%2C%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.881,"y":39.477,"w":6.872000000000001,"clr":-1,"A":"left","R":[{"T":"the%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.432,"y":39.477,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.426,"y":39.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":40.289,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":40.289,"w":22.635000000000005,"clr":-1,"A":"left","R":[{"T":"Tax%20liability%20limit.%20Enter%20the%20amount%20from%20the%20Credit%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":40.977,"w":15.449000000000002,"clr":-1,"A":"left","R":[{"T":"Limit%20Worksheet%20in%20the%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.808,"y":40.977,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.484,"y":41.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":41.789,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":41.789,"w":22.229000000000013,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20child%20and%20dependent%20care%20expenses.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":41.625,"y":41.789,"w":4.038,"clr":-1,"A":"left","R":[{"T":"Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.537,"y":41.789,"w":4.058,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":53.465,"y":41.789,"w":7.9090000000000025,"clr":-1,"A":"left","R":[{"T":"of%20line%209%20or%20line%2010","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":42.476,"w":34.922,"clr":-1,"A":"left","R":[{"T":"here%20and%20on%20Form%201040%2C%20line%2048%3B%20Form%201040A%2C%20line%2029%3B%20or%20Form%201040NR%2C%20line%2046","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.757,"y":42.476,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.996,"y":42.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":43.339,"w":33.23,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":68.171,"y":43.375,"w":7.633000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011862M","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.152,"y":43.321,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.294,"y":43.321,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2441","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.117,"y":43.321,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"x":6.133,"y":11.011,"w":5.80000232,"clr":0,"A":"left","R":[{"T":"Last%20or%20Business","S":-1,"TS":[2,8.988573824,0,0]}]},{"x":6.127,"y":10.308,"w":1.3506673420000002,"clr":0,"A":"left","R":[{"T":"First","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":26.382,"y":10.262,"w":2.498667916,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":26.242,"y":10.964,"w":1.178667256,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":45.665,"y":10.964,"w":1.6233341450000003,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":55.633,"y":10.964,"w":1.049333858,"clr":0,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":6.133,"y":12.511,"w":5.80000232,"clr":0,"A":"left","R":[{"T":"Last%20or%20Business","S":-1,"TS":[2,8.988573824,0,0]}]},{"x":6.127,"y":11.808,"w":1.3506673420000002,"clr":0,"A":"left","R":[{"T":"First","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":26.382,"y":11.762,"w":2.498667916,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":45.665,"y":12.464,"w":1.6233341450000003,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":55.633,"y":12.464,"w":1.049333858,"clr":0,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":5.809,"y":22.188,"w":152.07300000000004,"clr":0,"A":"left","R":[{"T":"To%20enter%20additional%20qualifying%20persons%3A","S":3,"TS":[0,12,0,0]}]},{"x":5.769,"y":13.252,"w":116.55000000000003,"clr":0,"A":"left","R":[{"T":"To%20enter%20additional%20providers%3A","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1334,"AM":1024,"x":6.188,"y":6.625,"w":71.431,"h":0.875,"TU":"Page 1. Name(s) shown on return. "},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1335,"AM":1024,"x":77.963,"y":6.625,"w":21.037,"h":0.875,"TU":"Your social security number. "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_1_","EN":0},"TI":1336,"AM":0,"x":8.733,"y":10.477,"w":17.329,"h":0.833,"TU":"Line 1(a) Care provider's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_1_","EN":0},"TI":1337,"AM":0,"x":30.479,"y":10.5,"w":36.346,"h":0.833,"TU":"Line 1. Item 1. (b) Address (number, street, apartment number). 2 lines available for entry. Line 1."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_1_","EN":0},"TI":1338,"AM":0,"x":66.806,"y":10.501,"w":14.625,"h":0.833,"TU":"Line 1. Item 1. (c) Identifying number (S S N). "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_1_","EN":0},"TI":1339,"AM":0,"x":14.32,"y":11.27,"w":11.714,"h":0.833,"TU":"Line 1(a) Care provider's last name or business name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_1_","EN":0},"TI":1340,"AM":0,"x":28.564,"y":11.236,"w":16.636,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_1_","EN":0},"TI":1341,"AM":0,"x":49.122,"y":11.077,"w":5.784,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_1_","EN":0},"TI":1342,"AM":0,"x":57.705,"y":11.264,"w":9.169,"h":0.833,"TU":"ZIP"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_1_","EN":0},"TI":1343,"AM":0,"x":66.866,"y":11.256,"w":14.625,"h":0.833,"TU":"Line 1. Item 1. (c) Identifying number( E I N). ","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_1_","EN":0},"TI":1344,"AM":0,"x":81.675,"y":10.999,"w":12.375,"h":1.002,"TU":"Line 1. Item 1. (d) Amount paid (see instructions). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_2_","EN":0},"TI":1345,"AM":0,"x":8.7,"y":12.072,"w":17.329,"h":0.833,"TU":"Line 1(a) Care provider's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_2_","EN":0},"TI":1346,"AM":0,"x":30.447,"y":11.99,"w":36.346,"h":0.833,"TU":"Line 1. Item 1. (b) Address (number, street, apartment number). 2 lines available for entry. Line 1."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_2_","EN":0},"TI":1347,"AM":0,"x":66.773,"y":11.991,"w":14.625,"h":0.833,"TU":"Line 1. Item 1. (c) Identifying number (S S N). "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_2_","EN":0},"TI":1348,"AM":0,"x":14.399,"y":12.841,"w":11.602,"h":0.833,"TU":"Line 1(a) Care provider's last name or business name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_2_","EN":0},"TI":1349,"AM":0,"x":28.137,"y":12.726,"w":17.03,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_2_","EN":0},"TI":1350,"AM":0,"x":49.337,"y":12.768,"w":5.403,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_2_","EN":0},"TI":1351,"AM":0,"x":57.672,"y":12.753,"w":9.169,"h":0.833,"TU":"ZIP"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_2_","EN":0},"TI":1352,"AM":0,"x":66.833,"y":12.746,"w":14.625,"h":0.833,"TU":"Line 1. Item 1. (c) Identifying number( E I N). ","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_2_","EN":0},"TI":1353,"AM":0,"x":81.642,"y":12.442,"w":12.375,"h":1.048,"TU":"Line 1. Item 1. (d) Amount paid (see instructions). Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2441DEP"}},"id":{"Id":"Add_F2441DEP","EN":0},"TI":1354,"AM":0,"x":26.293,"y":13.42,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_1_","EN":0},"TI":1355,"AM":0,"x":6.3,"y":20.433,"w":24.43,"h":0.833,"TU":"Line 2 (a). Qualifying person's name first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_1_","EN":0},"TI":1356,"AM":0,"x":31.883,"y":20.386,"w":25.815,"h":0.833,"TU":"Line 2 (b). Qualifying person's name last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_1_","EN":0},"TI":1357,"AM":0,"x":58.66,"y":20.386,"w":18.967,"h":0.833,"TU":"Line 2(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_1_","EN":0},"TI":1358,"AM":0,"x":78.396,"y":20.386,"w":15.767,"h":0.833,"TU":"Line 2(c). Qualified expenses you incurred and paid in 2013 for the person listed in column (a)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_2_","EN":0},"TI":1359,"AM":0,"x":6.091,"y":21.426,"w":24.429,"h":0.833,"TU":"Line 2 (a). Qualifying person's name first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_2_","EN":0},"TI":1360,"AM":0,"x":31.802,"y":21.426,"w":25.943,"h":0.833,"TU":"Line 2 (b). Qualifying person's name last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_2_","EN":0},"TI":1361,"AM":0,"x":58.643,"y":21.403,"w":18.902,"h":0.833,"TU":"Line 2(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_2_","EN":0},"TI":1362,"AM":0,"x":78.507,"y":21.403,"w":15.511,"h":0.833,"TU":"Line 2(c). Qualified expenses you incurred and paid in 2013 for the person listed in column (a)."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2441DEP"}},"id":{"Id":"Add_F2441DEP","EN":0},"TI":1363,"AM":0,"x":32.701,"y":22.419,"w":2.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1364,"AM":0,"x":77.963,"y":24.75,"w":16.087,"h":0.833,"TU":"Line 3. Add the amounts in column (c) of line 2. Do not enter more than $3,000 for one qualifying person or $6,000 for two or more persons. If you completed Part 3, enter the amount from line 31. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":1365,"AM":0,"x":77.963,"y":25.5,"w":16.087,"h":0.833,"TU":"Line 4. Enter your earned income. See instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":1366,"AM":0,"x":77.963,"y":27,"w":16.087,"h":0.833,"TU":"Line 5. If married filing jointly, enter your spouse's earned income (if your spouse was a student or was disabled, see the instructions); all others, enter the amount from line 4. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":1367,"AM":1024,"x":77.963,"y":27.75,"w":16.087,"h":0.833,"TU":"Line 6. Enter the smallest of line 3, 4, or 5. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":1368,"AM":1024,"x":54.45,"y":29.25,"w":16.087,"h":0.833,"TU":"Line 7. Enter the amount from Form 1040, line 38, Form 1040 A, line 22, or Form 1040 N R, line 37. Dollars."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":1369,"AM":0,"x":85.6,"y":34.173,"w":7.65,"h":0.914,"TU":"Line 8. Enter on line 8 the decimal amount shown below that applies to the amount on line 7. ","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":1370,"AM":1024,"x":77.963,"y":39.75,"w":16.087,"h":0.833,"TU":"Line 9. Multiply line 6 by the decimal amount on line 8. If you paid 2012 expenses in 2013, see the instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAX1040","EN":0},"TI":1371,"AM":1024,"x":54.45,"y":41.25,"w":16.087,"h":0.833,"TU":"Line 10. Tax liability limit. Enter the amount from the Credit Limit Worksheet in the instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRDT2441","EN":0},"TI":1372,"AM":1024,"x":77.963,"y":42.75,"w":16.087,"h":0.833,"TU":"Line 11. Credit for child and dependent care expenses. Enter the smaller of line 9 or line 10 here and on Form 1040, line 48, Form 1040 A, line 29, or Form 1040 N R, line 46. Dollars."}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":3,"w":1.5,"l":87.949},{"oc":"#221f1f","x":94.007,"y":3,"w":1.5,"l":5.036},{"oc":"#221f1f","x":6.145,"y":3,"w":1.125,"l":6.521},{"oc":"#221f1f","x":6.145,"y":3.75,"w":0.75,"l":6.521},{"oc":"#221f1f","x":6.145,"y":3.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":74.207,"y":3.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.207,"y":7.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":7.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.007,"y":7.5,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.207,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":9,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.007,"y":9,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.207,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":9.75,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.007,"y":9.75,"w":0.75,"l":5.036},{"oc":"#221f1f","x":77.92,"y":10.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.007,"y":10.5,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.457,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":53.17,"y":12,"w":0.75,"l":16.173},{"oc":"#221f1f","x":69.257,"y":12,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.457,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":53.17,"y":12.75,"w":0.75,"l":16.173},{"oc":"#221f1f","x":69.257,"y":12.75,"w":0.75,"l":5.036},{"oc":"#221f1f","x":53.17,"y":13.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":69.257,"y":13.5,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.457,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":53.17,"y":18,"w":0.75,"l":16.173},{"oc":"#221f1f","x":69.257,"y":18,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.457,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":53.17,"y":21,"w":0.75,"l":16.173},{"oc":"#221f1f","x":69.257,"y":21,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.457,"y":21,"w":0.75,"l":3.798},{"oc":"#221f1f","x":49.457,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":53.17,"y":23.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":69.257,"y":23.25,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.207,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":26.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.007,"y":26.25,"w":0.75,"l":5.036},{"oc":"#221f1f","x":49.457,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":53.17,"y":27,"w":0.75,"l":16.173},{"oc":"#221f1f","x":69.257,"y":27,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.207,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":74.207,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":28.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.007,"y":28.5,"w":0.75,"l":5.036},{"oc":"#221f1f","x":77.92,"y":30.75,"w":1.125,"l":16.173},{"oc":"#221f1f","x":94.007,"y":30.75,"w":1.125,"l":5.036},{"oc":"#221f1f","x":74.207,"y":30.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":74.207,"y":34.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":34.5,"w":1.125,"l":16.173},{"oc":"#221f1f","x":94.007,"y":34.5,"w":1.125,"l":5.036},{"oc":"#221f1f","x":6.145,"y":34.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":36.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":74.207,"y":37.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":37.5,"w":1.125,"l":16.173},{"oc":"#221f1f","x":94.007,"y":37.5,"w":1.125,"l":5.036},{"oc":"#221f1f","x":74.207,"y":39,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":39,"w":1.125,"l":16.173},{"oc":"#221f1f","x":94.007,"y":39,"w":1.125,"l":5.036},{"oc":"#221f1f","x":74.207,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":40.5,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.007,"y":40.5,"w":0.75,"l":5.036},{"oc":"#221f1f","x":74.207,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":42,"w":0.75,"l":16.173},{"oc":"#221f1f","x":94.007,"y":42,"w":0.75,"l":5.036},{"oc":"#221f1f","x":6.145,"y":43.5,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":77.963,"y":3.734,"w":0.75,"l":3.047},{"oc":"#221f1f","x":74.25,"y":3.734,"w":0.75,"l":3.047},{"oc":"#221f1f","x":77.963,"y":6.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":6.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":3.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":94.05,"y":6.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":7.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":7.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.05,"y":7.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":8.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":8.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":8.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":8.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":9.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":9.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":9.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.5,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.3,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.5,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.3,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.5,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.3,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":13.484,"w":0.75,"l":3.797},{"oc":"#221f1f","x":49.5,"y":13.484,"w":0.75,"l":3.797},{"oc":"#221f1f","x":53.213,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.5,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.3,"y":13.484,"w":0.75,"l":3.781},{"oc":"#221f1f","x":69.3,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":17.984,"w":0.75,"l":2.297},{"oc":"#221f1f","x":49.5,"y":17.984,"w":0.75,"l":2.297},{"oc":"#221f1f","x":53.213,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.5,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.3,"y":17.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":69.3,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":20.984,"w":0.75,"l":1.547},{"oc":"#221f1f","x":49.5,"y":20.984,"w":0.75,"l":1.547},{"oc":"#221f1f","x":53.213,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.5,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.3,"y":20.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.3,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":10.484,"w":0.75,"l":15.047},{"oc":"#221f1f","x":74.25,"y":10.484,"w":0.75,"l":15.047},{"oc":"#221f1f","x":77.963,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":10.484,"w":0.75,"l":15.031},{"oc":"#221f1f","x":94.05,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":53.213,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.5,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.3,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":26.235,"w":0.75,"l":1.547},{"oc":"#221f1f","x":74.25,"y":26.235,"w":0.75,"l":1.547},{"oc":"#221f1f","x":77.963,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.05,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":74.25,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":94.05,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.05,"y":29.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":30.727,"w":0.75,"l":3.055},{"oc":"#221f1f","x":74.25,"y":30.727,"w":0.75,"l":3.055},{"oc":"#221f1f","x":94.05,"y":30.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":77.963,"y":33.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.25,"y":33.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":94.05,"y":33.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":36.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":74.25,"y":36.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":94.05,"y":36.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":37.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":74.25,"y":37.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":94.05,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":38.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":38.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":38.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.05,"y":38.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":40.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":40.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.05,"y":40.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":41.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":41.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":41.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":94.05,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.05,"y":42.735,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":3,"w":6.435,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":74.25,"y":3.75,"w":3.712,"h":3,"clr":-1},{"oc":"#bebfc1","x":49.5,"y":13.5,"w":3.713,"h":3.75,"clr":-1},{"oc":"#bebfc1","x":49.5,"y":18,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":49.5,"y":21,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":74.25,"y":10.5,"w":3.712,"h":15,"clr":-1},{"oc":"#bebfc1","x":74.25,"y":26.25,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":74.25,"y":30.75,"w":3.712,"h":3,"clr":-1},{"oc":"#221f1f","x":-0.824,"y":49.5,"w":1.647,"h":0.3,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.9380000000000002,"w":7.856000000000002,"clr":-1,"A":"left","R":[{"T":"Form%202441%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.8,"y":2.009,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":96.897,"y":2.009,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":10,"TS":[0,14,1,0]}]},{"x":6.453,"y":2.821,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":12.813,"y":2.821,"w":12.447000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20Dependent%20Care%20Benefits","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.692,"y":3.7270000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":3.7270000000000003,"w":11.374000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.413,"y":3.7270000000000003,"w":11.503000000000004,"clr":-1,"A":"left","R":[{"T":"dependent%20care%20benefits","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":41.592,"y":3.7270000000000003,"w":16.006000000000004,"clr":-1,"A":"left","R":[{"T":"%20you%20received%20in%202013.%20Amounts%20you","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.658,"y":4.414,"w":33.155,"clr":-1,"A":"left","R":[{"T":"received%20as%20an%20employee%20should%20be%20shown%20in%20box%2010%20of%20your%20Form(s)%20W-2.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.712,"y":4.414,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.967,"y":4.414,"w":3.501,"clr":-1,"A":"left","R":[{"T":"%20include","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.661,"y":5.101,"w":37.633999999999986,"clr":-1,"A":"left","R":[{"T":"amounts%20reported%20as%20wages%20in%20box%201%20of%20Form(s)%20W-2.%20If%20you%20were%20self-employed%20or%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.67,"y":5.789,"w":39.546999999999976,"clr":-1,"A":"left","R":[{"T":"partner%2C%20include%20amounts%20you%20received%20under%20a%20dependent%20care%20assistance%20program%20from","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.672,"y":6.476,"w":17.168000000000006,"clr":-1,"A":"left","R":[{"T":"your%20sole%20proprietorship%20or%20partnership","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.897,"y":6.476,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.996,"y":6.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":7.289,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":7.289,"w":39.12399999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%2C%20if%20any%2C%20you%20carried%20over%20from%202012%20and%20used%20in%202013%20during%20the%20grace%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.647,"y":7.977,"w":10.594000000000001,"clr":-1,"A":"left","R":[{"T":"period.%20See%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.559,"y":7.977,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.996,"y":8.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":8.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":8.839,"w":36.48699999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%2C%20if%20any%2C%20you%20forfeited%20or%20carried%20forward%20to%202014.%20See%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.815,"y":8.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.877,"y":8.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.939,"y":8.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.996,"y":8.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.959,"y":8.777,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.931,"y":8.777,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":9.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":9.589,"w":20.63600000000001,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%2012%20through%2014.%20See%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.062,"y":9.589,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.996,"y":9.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":10.289,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":10.289,"w":11.374000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20total%20amount%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.152,"y":10.289,"w":8.948,"clr":-1,"A":"left","R":[{"T":"qualified%20expenses","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":37.955,"y":10.289,"w":4.223000000000001,"clr":-1,"A":"left","R":[{"T":"%20incurred%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.648,"y":10.976,"w":11.781000000000002,"clr":-1,"A":"left","R":[{"T":"in%202013%20for%20the%20care%20of%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.81,"y":10.976,"w":9.557,"clr":-1,"A":"left","R":[{"T":"qualifying%20person(s)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":43.061,"y":10.976,"w":3.9989999999999997,"clr":-1,"A":"left","R":[{"T":"...","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.246,"y":11.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":11.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":11.839,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.811,"y":11.839,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.703,"y":11.839,"w":6.928000000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2015%20or%2016","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.75,"y":11.839,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.246,"y":11.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":12.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":12.589,"w":4.871,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.497,"y":12.589,"w":7.336,"clr":-1,"A":"left","R":[{"T":"earned%20income.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":26.721,"y":12.589,"w":7.464,"clr":-1,"A":"left","R":[{"T":"%20See%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.001,"y":12.589,"w":6.665,"clr":-1,"A":"left","R":[{"T":"....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.246,"y":12.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":13.289,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":13.289,"w":24.933999999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20%20%20%20the%20%20%20%20amount%20%20%20%20shown%20%20%20%20below%20%20%20%20that%20%20%20%20applies%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":13.977,"w":4.187,"clr":-1,"A":"left","R":[{"T":"to%20you.%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":14.914,"w":18.411000000000005,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20%20%20married%20%20%20filing%20%20%20jointly%2C%20%20%20enter%20%20%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.946,"y":15.602,"w":18.467000000000002,"clr":-1,"A":"left","R":[{"T":"spouse%E2%80%99s%20%20earned%20%20income%20%20(if%20you%20or%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.949,"y":16.289,"w":17.687,"clr":-1,"A":"left","R":[{"T":"spouse%20was%20a%20student%20or%20was%20disabled%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.952,"y":16.976,"w":13.391000000000004,"clr":-1,"A":"left","R":[{"T":"see%20the%20instructions%20for%20line%205).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.664,"y":17.789,"w":16.354000000000006,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20%20%20married%20%20%20filing%20%20separately%2C%20see%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.952,"y":18.477,"w":5.464,"clr":-1,"A":"left","R":[{"T":"instructions.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":19.339,"w":18.969,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20All%20others%2C%20enter%20the%20amount%20from%20line%2018.","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":40.831,"y":18.388,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,25.25,0,0]}]},{"oc":"#221f1f","x":41.001,"y":16.995,"w":5.332,"clr":-1,"A":"left","R":[{"T":"%20...","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.246,"y":17.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":20.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":20.089,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.811,"y":20.089,"w":4.002000000000001,"clr":-1,"A":"left","R":[{"T":"smallest","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.648,"y":20.089,"w":8.874000000000002,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2017%2C%2018%2C%20or%2019","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":20.089,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.246,"y":20.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":20.852,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":20.852,"w":21.302,"clr":-1,"A":"left","R":[{"T":"Enter%20%245%2C000%20(%242%2C500%20if%20married%20filing%20separately%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.265,"y":20.852,"w":1.778,"clr":-1,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.653,"y":21.539,"w":21.983999999999995,"clr":-1,"A":"left","R":[{"T":"you%20were%20required%20to%20enter%20your%20spouse%E2%80%99s%20earned%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.653,"y":22.226,"w":8.151000000000002,"clr":-1,"A":"left","R":[{"T":"income%20on%20line%2019)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.441,"y":22.226,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.246,"y":22.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":23.039,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":23.039,"w":39.93499999999999,"clr":-1,"A":"left","R":[{"T":"Is%20any%20amount%20on%20line%2012%20from%20your%20sole%20proprietorship%20or%20partnership%3F%20(Form%201040A%20filers%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":23.727,"w":6.057000000000002,"clr":-1,"A":"left","R":[{"T":"go%20to%20line%2025.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.878,"y":24.589,"w":1.889,"clr":-1,"A":"left","R":[{"T":"No.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.829,"y":24.589,"w":4.242000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20-0-.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.973,"y":25.339,"w":2.3350000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.583,"y":25.339,"w":9.948000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20here","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.75,"y":25.339,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.996,"y":25.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":26.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":26.089,"w":12.578000000000007,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2022%20from%20line%2015","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":26.089,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.246,"y":26.027,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.883,"y":26.789,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.989,"y":26.789,"w":4.002000000000001,"clr":-1,"A":"left","R":[{"T":"smallest","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":34.886,"y":26.789,"w":20.69300000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2020%2C%2021%2C%20or%2022.%20Also%2C%20include%20this%20amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.819,"y":26.789,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.642,"y":27.477,"w":23.725,"clr":-1,"A":"left","R":[{"T":"the%20appropriate%20line(s)%20of%20your%20return.%20See%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.18,"y":27.477,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.996,"y":27.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":28.352,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":28.352,"w":23.119000000000003,"clr":-1,"A":"left","R":[{"T":"Excluded%20benefits.%20Form%201040%20and%201040NR%20filers%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":41.774,"y":28.352,"w":16.986,"clr":-1,"A":"left","R":[{"T":"%20If%20you%20checked%20%22No%22%20on%20line%2022%2C%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.648,"y":29.039,"w":39.19399999999998,"clr":-1,"A":"left","R":[{"T":"the%20smaller%20of%20line%2020%20or%2021.%20Otherwise%2C%20subtract%20line%2024%20from%20the%20smaller%20of%20line%2020%20or%20line","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.642,"y":29.726,"w":5.609999999999999,"clr":-1,"A":"left","R":[{"T":"21.%20If%20zero%20or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.063,"y":29.726,"w":6.761000000000001,"clr":-1,"A":"left","R":[{"T":"less%2C%20enter%20-0-.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.318,"y":29.726,"w":8.725000000000003,"clr":-1,"A":"left","R":[{"T":"Form%201040A%20filers%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":39.576,"y":29.726,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"%20Enter%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.737,"y":29.726,"w":4.058,"clr":-1,"A":"left","R":[{"T":"%20smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":51.489,"y":29.726,"w":8.465000000000002,"clr":-1,"A":"left","R":[{"T":"of%20line%2020%20or%20line%2021","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.914,"y":29.726,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.565,"y":29.726,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.996,"y":29.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":30.727,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":30.726,"w":22.675,"clr":-1,"A":"left","R":[{"T":"Taxable%20benefits.%20Form%201040%20and%201040NR%20filers%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":41.473,"y":30.726,"w":17.354000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2025%20from%20line%2023.%20If%20zero%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.644,"y":32.101,"w":35.104000000000006,"clr":-1,"A":"left","R":[{"T":"the%20dotted%20line%20next%20to%20Form%201040%2C%20line%207%2C%20or%20Form%201040NR%2C%20line%208%2C%20enter%20%E2%80%9CDCB.%E2%80%9D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":32.788,"w":9.003000000000004,"clr":-1,"A":"left","R":[{"T":"Form%201040A%20filers%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.194,"y":32.788,"w":32.12300000000002,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2025%20from%20line%2015.%20Also%2C%20include%20this%20amount%20on%20Form%201040A%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.656,"y":33.476,"w":22.782999999999994,"clr":-1,"A":"left","R":[{"T":"line%207.%20In%20the%20space%20to%20the%20left%20of%20line%207%2C%20enter%20%E2%80%9CDCB%E2%80%9D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.131,"y":33.476,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.996,"y":33.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":34.634,"w":17.727999999999998,"clr":-1,"A":"left","R":[{"T":"To%20claim%20the%20child%20and%20dependent%20care%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":36.875,"y":35.321,"w":19.338000000000005,"clr":-1,"A":"left","R":[{"T":"credit%2C%20complete%20lines%2027%20through%2031%20below.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":36.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":36.589,"w":24.45000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20%243%2C000%20(%246%2C000%20if%20two%20or%20more%20qualifying%20persons)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.25,"y":36.589,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.996,"y":36.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":37.289,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":37.289,"w":14.283000000000001,"clr":-1,"A":"left","R":[{"T":"Form%201040%20and%201040NR%20filers%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.511,"y":37.289,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2024%20and%2025.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":42.616,"y":37.289,"w":9.281000000000002,"clr":-1,"A":"left","R":[{"T":"%20Form%201040A%20filers%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":55.567,"y":37.289,"w":7.707000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":37.976,"w":5.261,"clr":-1,"A":"left","R":[{"T":"from%20line%2025","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.312,"y":37.976,"w":35.99099999999998,"clr":-1,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.996,"y":38.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":38.789,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":38.789,"w":19.669000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2028%20from%20line%2027.%20If%20zero%20or%20less%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.367,"y":38.789,"w":2.389,"clr":-1,"A":"left","R":[{"T":"stop.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":40.86,"y":38.789,"w":12.652000000000003,"clr":-1,"A":"left","R":[{"T":"%20You%20cannot%20take%20the%20credit.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.658,"y":39.477,"w":5.057,"clr":-1,"A":"left","R":[{"T":"Exception.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.104,"y":39.477,"w":28.99000000000001,"clr":-1,"A":"left","R":[{"T":"%20If%20you%20paid%202012%20expenses%20in%202013%2C%20see%20the%20instructions%20for%20line%209","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.695,"y":39.477,"w":7.998,"clr":-1,"A":"left","R":[{"T":".....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.996,"y":39.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":40.289,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":40.289,"w":18.357,"clr":-1,"A":"left","R":[{"T":"Complete%20line%202%20on%20the%20front%20of%20this%20form.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.803,"y":40.289,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":39.201,"y":40.289,"w":18.671000000000006,"clr":-1,"A":"left","R":[{"T":"%20include%20in%20column%20(c)%20any%20benefits%20shown%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.655,"y":40.977,"w":34.92000000000001,"clr":-1,"A":"left","R":[{"T":"on%20line%2028%20above.%20Then%2C%20add%20the%20amounts%20in%20column%20(c)%20and%20enter%20the%20total%20here","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.692,"y":40.977,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.996,"y":41.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":41.789,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":41.789,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.69,"y":41.789,"w":3.5020000000000007,"clr":-1,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.78,"y":41.789,"w":32.65800000000001,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2029%20or%2030.%20Also%2C%20enter%20this%20amount%20on%20line%203%20on%20the%20front%20of%20this%20form","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":42.476,"w":14.413000000000004,"clr":-1,"A":"left","R":[{"T":"and%20complete%20lines%204%20through%2011","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.75,"y":42.476,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.996,"y":42.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.152,"y":43.321,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":91.294,"y":43.321,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2441","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.117,"y":43.321,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20(2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":26.789,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":26.789,"w":9.780000000000001,"clr":-1,"A":"left","R":[{"T":"Deductible%20benefits.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.644,"y":31.414,"w":40.25599999999999,"clr":-1,"A":"left","R":[{"T":"less%2C%20enter%20-0-.%20Also%2C%20include%20this%20amount%20on%20Form%201040%2C%20line%207%2C%20or%20Form%201040NR%2C%20line%208.%20On","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":1373,"AM":1024,"x":19.8,"y":2.006,"w":39.056,"h":0.842},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":1374,"AM":1024,"x":61.65,"y":2.045,"w":25.556,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":1375,"AM":0,"x":77.963,"y":6.75,"w":16.087,"h":0.833,"TU":"Page 2. Part 3. Dependent Care Benefits. Line 12. Enter the total amount of dependent care benefits you received in 2013. Amounts you received as an employee should be shown in box 10 of your Form(s) W-2. Do not include amounts reported as wages in box 1 of Form(s) W-2. If you were self-employed or a partner, include amounts you received under a dependent care assistance program from your sole proprietorship or partnership. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRYOVER","EN":0},"TI":1376,"AM":0,"x":77.963,"y":8.25,"w":16.087,"h":0.833,"TU":"Line 13. Enter the amount, if any, you carried over from 2012 and used in 2013 during the grace period. See instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":1377,"AM":0,"x":78.684,"y":9,"w":14.85,"h":0.833,"TU":"Line 14. Enter the amount, if any, you forfeited or carried forward to 2014. See instructions. Open parenthesis. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":1378,"AM":1024,"x":77.963,"y":9.75,"w":16.087,"h":0.833,"TU":"Line 15. Combine lines 12 through 14. See instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":1379,"AM":0,"x":53.213,"y":11.25,"w":16.087,"h":0.833,"TU":"Line 16. Enter the total amount of qualified expenses incurred in 2013 for the care of the qualifying person(s). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":1380,"AM":1024,"x":53.213,"y":12,"w":16.087,"h":0.833,"TU":"Line 17. Enter the smaller of line 15 or 16. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":1381,"AM":0,"x":53.213,"y":12.75,"w":16.087,"h":0.833,"TU":"Line 18. Enter your earned income. See instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":1382,"AM":0,"x":53.213,"y":17.25,"w":16.087,"h":0.833,"TU":"Line 19. Enter the amount shown below that applies to you. If married filing jointly, enter your spouse's earned income (if your spouse was a student or was disabled, see the instructions for line 5). If married filing separately, see instructions. All others, enter the amount from line 18. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":1383,"AM":1024,"x":53.213,"y":20.25,"w":16.087,"h":0.833,"TU":"Line 20. Enter the smallest of line 17, 18, or 19. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STD","EN":0},"TI":1384,"AM":0,"x":53.213,"y":22.5,"w":16.087,"h":0.833,"TU":"Line 21. Enter $5,000 ($2,500 if married filing separately and you were required to enter your spouse’s earned income on line 19). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FRPSHIP","EN":0},"TI":1387,"AM":0,"x":77.963,"y":25.5,"w":16.087,"h":0.833,"TU":"L22"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LSL12","EN":0},"TI":1388,"AM":1024,"x":53.213,"y":26.25,"w":16.087,"h":0.833,"TU":"Line 23. Subtract line 22 from line 15. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEDBENS","EN":0},"TI":1389,"AM":1024,"x":77.963,"y":27.75,"w":16.087,"h":0.833,"TU":"Line 24. Deductible benefits. Enter the smallest of line 20, 21, or 22. Also, include this amount on the appropriate line(s) of your return. See instructions. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":1390,"AM":1024,"x":77.963,"y":30,"w":16.087,"h":0.833,"TU":"Line 25. Excluded benefits. Form 1040 and 1040 N R filers: If you checked \"No\" on line 22, enter the smaller of line 20 or 21. Otherwise, subtract line 24 from the smaller of line 20 or line 21. If zero or less, enter zero. Form 1040 A filers: Enter the smaller of line 20 or line 21. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":1391,"AM":1024,"x":77.963,"y":33.75,"w":16.087,"h":0.833,"TU":"Line 26. Taxable benefits. Form 1040 and 1040N R filers: Subtract line 25 from line 23. If zero or less, enter zero. Also, include this amount on Form 1040, line 7, or Form 1040 N R, line 8. On the dotted line next to Form 1040, line 7, or Form 1040 N R, line 8, enter \"D C B.\" \rForm 1040 A filers: Subtract line 25 from line 15. Also, include this amount on Form 1040 A, line 7. In the space to the left of line 7, enter “D C B”. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":1392,"AM":0,"x":77.963,"y":36.75,"w":16.087,"h":0.833,"TU":"Part 3. Dependent Care Benefits. To claim the child and dependent care credit, complete lines 27 through 31 below. Line 27. Enter $3,000 ($6,000 if two or more qualifying persons). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":1393,"AM":1024,"x":77.963,"y":38.25,"w":16.087,"h":0.833,"TU":"Line 28. Form 1040 and 1040N R filers: Add lines 24 and 25. Form 1040A filers: Enter the amount from line 25\t. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":1394,"AM":1024,"x":77.963,"y":39.75,"w":16.087,"h":0.833,"TU":"Line 29. Subtract line 28 from line 27. If zero or less, stop. You cannot take the credit. Exception. If you paid 2012 expenses in 2013, see the instructions for line 9. Dollars. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":1395,"AM":0,"x":77.963,"y":41.25,"w":16.087,"h":0.833,"TU":"Line 30. Complete line 2 on the front of this form. Do not include in column (c) any benefits shown on line 28 above. Then, add the amounts in column (c) and enter the total here. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":1396,"AM":1024,"x":77.963,"y":42.75,"w":16.087,"h":0.833,"TU":"Line 31. Enter the smaller of line 29 or 30. Also, enter this amount on line 3 on the front of this form and complete lines 4 through 11. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXSOLEN","EN":0},"TI":1385,"AM":0,"x":9.804,"y":24.713,"w":1.647,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXSOLEY","EN":0},"TI":1386,"AM":0,"x":9.784,"y":25.436,"w":1.647,"h":0.833,"checked":false}],"id":{"Id":"B1040ARB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.7","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Child and Dependent Care Expenses","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Adobe Acrobat Pro 10.1.8","CreationDate":"D:20131211084239-08'00'","ModDate":"D:20140106140723-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":5.981,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":7.619,"y":6,"w":1.5,"l":22.984,"oc":"#221f1f"},{"x":27.499,"y":3.302,"w":6,"l":1.175,"oc":"#9a9d9f"},{"x":26.707,"y":5.878,"w":3,"l":1.875,"oc":"#848587"},{"x":26.77,"y":3.844,"w":3,"l":1.25,"oc":"#848587"},{"x":28.02,"y":4.406,"w":3,"l":0.563,"oc":"#848587"},{"x":24.845,"y":4.575,"w":3,"l":1.925,"oc":"#221f1f"},{"x":24.843,"y":2.325,"w":3,"l":1.411,"oc":"#221f1f"},{"x":26.207,"y":2.906,"w":3,"l":0.563,"oc":"#221f1f"},{"x":30.569,"y":3,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.569,"y":5.981,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.234,"y":7.5,"w":1.125,"l":26.131,"oc":"#221f1f"},{"x":28.334,"y":7.5,"w":1.125,"l":7.681,"oc":"#221f1f"},{"x":2.234,"y":9,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":10.5,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":9.434,"y":10.5,"w":0.75,"l":14.881,"oc":"#221f1f"},{"x":24.284,"y":10.5,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.684,"y":10.5,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":9.434,"y":11.25,"w":0.75,"l":14.881,"oc":"#221f1f","dsh":1},{"x":9.434,"y":12,"w":0.75,"l":14.881,"oc":"#221f1f"},{"x":24.284,"y":12,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.684,"y":12,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.184,"y":12,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":2.234,"y":13.5,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":9.434,"y":12.75,"w":0.75,"l":14.881,"oc":"#221f1f","dsh":1},{"x":9.434,"y":13.5,"w":0.75,"l":14.881,"oc":"#221f1f"},{"x":24.284,"y":13.5,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.684,"y":13.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.184,"y":13.5,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":8.1,"y":15.75,"w":1.5,"l":7.2,"oc":"#221f1f"},{"x":8.1,"y":14.063,"w":1.5,"l":7.2,"oc":"#221f1f"},{"x":15.3,"y":14.562,"w":1.5,"l":2.25,"oc":"#221f1f"},{"x":19.8,"y":14.562,"w":1.5,"l":2.925,"oc":"#221f1f"},{"x":15.3,"y":15.438,"w":1.5,"l":2.25,"oc":"#221f1f"},{"x":19.8,"y":15.438,"w":1.5,"l":2.925,"oc":"#221f1f"},{"x":2.234,"y":17.25,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":18,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":4.484,"y":18,"w":0.75,"l":31.531,"oc":"#221f1f"},{"x":2.234,"y":18.75,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":2.234,"y":18.75,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":2.234,"y":20.25,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":11.234,"y":18.75,"w":0.75,"l":9.931,"oc":"#221f1f"},{"x":11.234,"y":20.25,"w":0.75,"l":9.931,"oc":"#221f1f"},{"x":21.134,"y":18.75,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":21.134,"y":20.25,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.334,"y":18.75,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":28.334,"y":20.25,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":2.375,"y":21.281,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":11.375,"y":21.281,"w":0.75,"l":9.931,"oc":"#221f1f"},{"x":21.275,"y":21.281,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.475,"y":21.281,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.325,"y":21.281,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":2.375,"y":22.266,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":11.375,"y":22.266,"w":0.75,"l":9.931,"oc":"#221f1f"},{"x":21.275,"y":22.266,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.475,"y":22.266,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.325,"y":22.266,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":26.984,"y":23.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":26.984,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":25.5,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":25.5,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":26.984,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":26.25,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":26.25,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":26.984,"y":27.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":27.75,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":27.75,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":28.334,"y":28.5,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":28.5,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":18.434,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.784,"y":30,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":25.634,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":5.384,"y":33,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":7.634,"y":33,"w":1.125,"l":3.181,"oc":"#221f1f"},{"x":10.784,"y":33,"w":1.125,"l":2.731,"oc":"#221f1f"},{"x":17.534,"y":33,"w":1.125,"l":2.531,"oc":"#221f1f"},{"x":20.034,"y":33,"w":1.125,"l":3.181,"oc":"#221f1f"},{"x":23.184,"y":33,"w":1.125,"l":2.731,"oc":"#221f1f"},{"x":26.984,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":35.25,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":35.25,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":26.984,"y":35.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":40.5,"w":1.125,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":40.5,"w":1.125,"l":1.831,"oc":"#221f1f"},{"x":18.434,"y":42,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.784,"y":42,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":25.634,"y":42,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":26.984,"y":40.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":43.5,"w":1.5,"l":18.931,"oc":"#221f1f"},{"x":21.134,"y":43.5,"w":1.5,"l":10.831,"oc":"#221f1f"},{"x":31.934,"y":43.5,"w":1.5,"l":4.081,"oc":"#221f1f"},{"x":2.369,"y":12.025,"w":0.75,"l":7.231,"oc":"#000000"}],"VLines":[{"x":7.65,"y":2.234,"w":1.5,"l":2.297,"oc":"#221f1f"},{"x":7.65,"y":4.466,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":28.582,"y":4.387,"w":3,"l":1.568,"oc":"#848587"},{"x":26.671,"y":4.64,"w":3,"l":1.294,"oc":"#848587"},{"x":28.02,"y":3.844,"w":3,"l":0.563,"oc":"#848587"},{"x":26.77,"y":2.906,"w":3,"l":1.688,"oc":"#221f1f"},{"x":24.895,"y":2.344,"w":3,"l":2.25,"oc":"#221f1f"},{"x":26.207,"y":2.344,"w":3,"l":0.563,"oc":"#221f1f"},{"x":30.6,"y":2.234,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":2.966,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":30.6,"y":4.841,"w":1.5,"l":1.172,"oc":"#221f1f"},{"x":28.35,"y":5.969,"w":0.75,"l":1.555,"oc":"#221f1f"},{"x":9.45,"y":8.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.3,"y":8.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.7,"y":8.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":9.45,"y":10.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.3,"y":10.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.7,"y":10.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.2,"y":10.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":9.45,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.3,"y":11.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.7,"y":11.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.2,"y":11.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":15.3,"y":14.063,"w":1.5,"l":1.688,"oc":"#221f1f"},{"x":8.1,"y":14.063,"w":1.5,"l":1.688,"oc":"#221f1f"},{"x":21.15,"y":18.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.35,"y":18.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":11.25,"y":20.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.15,"y":20.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.35,"y":20.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.2,"y":20.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":11.25,"y":21.693,"w":0.75,"l":0.676,"oc":"#221f1f"},{"x":21.141,"y":21.651,"w":0.75,"l":0.761,"oc":"#221f1f"},{"x":28.35,"y":21.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.2,"y":21.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.35,"y":23.234,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":27,"y":23.234,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":28.35,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":23.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.2,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.2,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":26.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":27.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27,"y":27.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":27.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.45,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.8,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":15.75,"y":33,"w":1.125,"l":6,"oc":"#221f1f"},{"x":28.35,"y":28.485,"w":0.75,"l":6.047,"oc":"#221f1f"},{"x":27,"y":28.485,"w":0.75,"l":6.047,"oc":"#221f1f"},{"x":28.35,"y":34.484,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":27,"y":34.484,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.35,"y":35.235,"w":0.75,"l":4.547,"oc":"#221f1f"},{"x":27,"y":35.235,"w":0.75,"l":4.547,"oc":"#221f1f"},{"x":28.35,"y":39.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27,"y":39.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":35.235,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.2,"y":39.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":19.8,"y":41.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.45,"y":41.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.65,"y":41.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":40.477,"w":0.75,"l":2.305,"oc":"#221f1f"},{"x":27,"y":40.477,"w":0.75,"l":2.305,"oc":"#221f1f"},{"x":28.35,"y":42.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27,"y":42.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":40.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.2,"y":42.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":9.469,"y":11.188,"w":0.75,"l":0.781,"oc":"#000000"},{"x":9.469,"y":11.797,"w":0.75,"l":0.781,"oc":"#000000"}],"Fills":[{"x":2.25,"y":7.5,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.25,"y":17.25,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":27,"y":28.5,"w":1.35,"h":6,"oc":"#bebfc1"},{"x":27,"y":35.25,"w":1.35,"h":4.5,"oc":"#bebfc1"},{"x":27,"y":40.5,"w":1.35,"h":2.25,"oc":"#bebfc1"}],"Texts":[{"x":2,"y":2.634,"w":2.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"x":3.021,"y":2.633,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":3.577,"y":2.634,"w":2.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2441","S":-1,"TS":[0,28,1,0]}]},{"x":2,"y":4.419,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":2,"y":4.919,"w":13.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99) ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":7.4,"y":2.413,"w":18.839,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Child and Dependent Care Expenses","S":11,"TS":[0,18,1,0]}]},{"x":10.002,"y":3.474,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":10.377,"y":3.567,"w":24.729,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Attach to Form 1040, Form 1040A, or Form 1040NR.","S":-1,"TS":[0,11,1,0]}]},{"x":8.637,"y":4.409,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":9.012,"y":4.503,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":9.134,"y":4.503,"w":29.952,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Information about Form 2441 and its separate instructions is at","S":-1,"TS":[0,11,1,0]}]},{"x":24.113,"y":4.503,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":13.619,"y":5.045,"w":10.615,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"www.irs.gov/form2441","S":-1,"TS":[0,11,1,0]}]},{"x":18.992,"y":5.045,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":24.69,"y":2.866,"w":3.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1040A ","S":-1,"TS":[0,11,0,0]}]},{"x":24.641,"y":2.355,"w":5.56,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". . . . . . . . . . ","S":1,"TS":[0,8,0,0]}]},{"x":24.725,"y":2.05,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1040 ","S":-1,"TS":[0,11,0,0]}]},{"x":26.601,"y":4.5,"w":2.224,"oc":"#848587","sw":0.36196875,"A":"left","R":[{"T":"2441","S":4,"TS":[0,14,0,0]}]},{"x":26.636,"y":2.723,"w":1,"oc":"#9a9d9f","sw":0.32553125,"A":"left","R":[{"T":"`","S":-1,"TS":[0,13,0,0]}]},{"x":24.67,"y":3.066,"w":5.56,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". . . . . . . . . . ","S":1,"TS":[0,8,0,0]}]},{"x":24.69,"y":3.6420000000000003,"w":3.965,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1040NR ","S":-1,"TS":[0,10.6,0,0]}]},{"x":31.019,"y":1.972,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.425,"y":3.718,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.505,"y":3.718,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":31.1,"y":4.512,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.1,"y":4.958,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":34.001,"y":4.959,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21","S":10,"TS":[0,14,1,0]}]},{"x":2,"y":5.687,"w":11.205,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name(s) shown on return","S":2,"TS":[0,10,0,0]}]},{"x":28.35,"y":5.656,"w":13.368,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your social security number","S":2,"TS":[0,10,0,0]}]},{"x":2.327,"y":7.321,"w":2.555,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I","S":-1,"TS":[0,13,0,0]}]},{"x":5.125,"y":7.321,"w":23.728,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Persons or Organizations Who Provided the Care,","S":10,"TS":[0,14,1,0]}]},{"x":19.506,"y":7.321,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You","S":-1,"TS":[0,13,0,0]}]},{"x":20.554,"y":7.321,"w":2.945,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" must ","S":10,"TS":[0,14,1,0]}]},{"x":22.394,"y":7.321,"w":8.651,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"complete this part. ","S":-1,"TS":[0,13,0,0]}]},{"x":28.739,"y":7.321,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":5.125,"y":8.009,"w":28.374,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(If you have more than two care providers, see the instructions.)","S":-1,"TS":[0,13,0,0]}]},{"x":2.587,"y":8.839,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"x":3.721,"y":8.844,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(a) ","S":8,"TS":[0,10,1,0]}]},{"x":4.474,"y":8.844,"w":6.87,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Care provider’s","S":2,"TS":[0,10,0,0]}]},{"x":7.48,"y":8.844,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":5.057,"y":9.312,"w":2.483,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"name","S":2,"TS":[0,10,0,0]}]},{"x":15.43,"y":8.844,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(b) ","S":8,"TS":[0,10,1,0]}]},{"x":16.2,"y":8.844,"w":3.704,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Address","S":2,"TS":[0,10,0,0]}]},{"x":17.82,"y":8.844,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":11.714,"y":9.312,"w":22.451,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(number, street, apt. no., city, state, and ZIP code)","S":2,"TS":[0,10,0,0]}]},{"x":24.55,"y":8.844,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(c) ","S":8,"TS":[0,10,1,0]}]},{"x":25.303,"y":8.844,"w":8.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Identifying number","S":2,"TS":[0,10,0,0]}]},{"x":28.95,"y":8.844,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":25.527,"y":9.312,"w":5.591,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(SSN or EIN)","S":2,"TS":[0,10,0,0]}]},{"x":30.963,"y":8.844,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(d) ","S":8,"TS":[0,10,1,0]}]},{"x":31.733,"y":8.844,"w":5.725,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Amount paid","S":2,"TS":[0,10,0,0]}]},{"x":34.237,"y":8.844,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":30.947,"y":9.312,"w":7.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions)","S":2,"TS":[0,10,0,0]}]},{"x":9.507,"y":14.039,"w":7.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you receive ","S":3,"TS":[0,12,0,0]}]},{"x":8.033,"y":14.727,"w":12.114,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"dependent care benefits?","S":9,"TS":[0,12,1,0]}]},{"x":18.045,"y":13.902,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":22.256,"y":13.894,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":23.15,"y":14,"w":12.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete only Part II below.","S":3,"TS":[0,12,0,0]}]},{"x":17.925,"y":14.777,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":22.256,"y":14.769,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":23.15,"y":14.839,"w":15.559,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete Part III on the back next.","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":15.539000000000001,"w":4.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Caution. ","S":9,"TS":[0,12,1,0]}]},{"x":4.156,"y":15.539000000000001,"w":54.697,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If the care was provided in your home, you may owe employment taxes. If you do, you cannot file Form 1040A. For details,","S":3,"TS":[0,12,0,0]}]},{"x":35.173,"y":15.539000000000001,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":16.227,"w":31.621,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"see the instructions for Form 1040, line 59a, or Form 1040NR, line 58a.","S":3,"TS":[0,12,0,0]}]},{"x":2.234,"y":17.071,"w":2.85,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II","S":-1,"TS":[0,13,0,0]}]},{"x":4.875,"y":17.071,"w":22.227,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Credit for Child and Dependent Care Expenses","S":10,"TS":[0,14,1,0]}]},{"x":2.587,"y":17.839,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":17.839,"w":10.447,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Information about your ","S":3,"TS":[0,12,0,0]}]},{"x":9.114,"y":17.839,"w":9.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"qualifying person(s).","S":9,"TS":[0,12,1,0]}]},{"x":14.018,"y":17.839,"w":29.876,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" If you have more than two qualifying persons, see the instructions.","S":3,"TS":[0,12,0,0]}]},{"x":8.589,"y":18.625,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(a) ","S":8,"TS":[0,10,1,0]}]},{"x":9.343,"y":18.625,"w":11.355,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Qualifying person’s name","S":2,"TS":[0,10,0,0]}]},{"x":6.075,"y":19.375,"w":2.222,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"First ","S":2,"TS":[0,10,0,0]}]},{"x":15.533,"y":19.286,"w":1.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Last","S":2,"TS":[0,10,0,0]}]},{"x":21.608,"y":18.594,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(b) ","S":8,"TS":[0,10,1,0]}]},{"x":22.377,"y":18.594,"w":11.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Qualifying person’s social","S":2,"TS":[0,10,0,0]}]},{"x":27.393,"y":18.594,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":22.924,"y":19.062,"w":7.206,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"security number","S":2,"TS":[0,10,0,0]}]},{"x":29.212,"y":18.406,"w":10.893,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(c) Qualified expenses ","S":8,"TS":[0,10,1,0]}]},{"x":33.925,"y":18.406,"w":1.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you","S":2,"TS":[0,10,0,0]}]},{"x":34.638,"y":18.406,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":28.675,"y":18.875,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":28.797,"y":18.875,"w":14.579,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"incurred and paid in 2013 for the","S":2,"TS":[0,10,0,0]}]},{"x":35.175,"y":18.875,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":29.36,"y":19.343,"w":11.725,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"person listed in column (a)","S":2,"TS":[0,10,0,0]}]},{"x":34.49,"y":19.343,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":34.611,"y":19.343,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":2.587,"y":23.102,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":9,"TS":[0,12,1,0]}]},{"x":2.9,"y":23.789,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":23.07,"w":18.007,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add the amounts in column (c) of line 2. ","S":3,"TS":[0,12,0,0]}]},{"x":13.027,"y":23.07,"w":3.166,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not","S":9,"TS":[0,12,1,0]}]},{"x":14.639,"y":23.07,"w":18.969,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" enter more than $3,000 for one qualifying ","S":3,"TS":[0,12,0,0]}]},{"x":3.8019999999999996,"y":23.758,"w":38.342,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"person or $6,000 for two or more persons. If you completed Part III, enter the amount ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":24.445,"w":5.261,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from line 31","S":3,"TS":[0,12,0,0]}]},{"x":7.251,"y":24.445,"w":34.658,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"x":27.269,"y":24.589,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":25.339,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":25.339,"w":4.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter your ","S":3,"TS":[0,12,0,0]}]},{"x":6.29,"y":25.339,"w":7.336,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"earned income.","S":9,"TS":[0,12,1,0]}]},{"x":10.07,"y":25.339,"w":7.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" See instructions","S":3,"TS":[0,12,0,0]}]},{"x":15.5,"y":25.339,"w":19.995,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"x":27.269,"y":25.339,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":25.977,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":26.039,"w":38.912,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If married filing jointly, enter your spouse’s earned income (if you or your spouse was a ","S":3,"TS":[0,12,0,0]}]},{"x":3.7990000000000004,"y":26.726,"w":20.8,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"student or was disabled, see the instructions); ","S":3,"TS":[0,12,0,0]}]},{"x":14.437,"y":26.726,"w":4.446,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"all others","S":9,"TS":[0,12,1,0]}]},{"x":16.675,"y":26.726,"w":13.172,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":", enter the amount from line 4","S":3,"TS":[0,12,0,0]}]},{"x":24.687,"y":26.726,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":27.269,"y":26.839,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":27.589,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":27.589,"w":4.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":6.04,"y":27.589,"w":4.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"smallest","S":9,"TS":[0,12,1,0]}]},{"x":8.163,"y":27.589,"w":7.206,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of line 3, 4, or 5","S":3,"TS":[0,12,0,0]}]},{"x":13.25,"y":27.589,"w":23.994,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":27.269,"y":27.589,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6 ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":28.227,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":28.289,"w":21.806,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount from Form 1040, line 38; Form ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":28.976,"w":18.1,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1040A, line 22; or Form 1040NR, line 37","S":3,"TS":[0,12,0,0]}]},{"x":14,"y":28.976,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":18.719,"y":29.089,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7 ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":29.839,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":29.839,"w":37.789,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter on line 8 the decimal amount shown below that applies to the amount on line 7","S":3,"TS":[0,12,0,0]}]},{"x":5.15,"y":30.607,"w":4.891,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If line 7 is:","S":-1,"TS":[0,11,1,0]}]},{"x":5.15,"y":32.013,"w":2.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Over","S":-1,"TS":[0,11,1,0]}]},{"x":7.4,"y":31.32,"w":4.055,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"But not ","S":-1,"TS":[0,11,1,0]}]},{"x":7.4,"y":32.007,"w":2.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"over","S":-1,"TS":[0,11,1,0]}]},{"x":10.55,"y":31.32,"w":4.391,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Decimal ","S":-1,"TS":[0,11,1,0]}]},{"x":10.55,"y":32.007,"w":4.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"amount is","S":-1,"TS":[0,11,1,0]}]},{"x":6.344,"y":32.857,"w":5.17,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"$0—15,000","S":-1,"TS":[0,11,0,0]}]},{"x":11.3,"y":32.857,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".35","S":-1,"TS":[0,11,0,0]}]},{"x":5.371,"y":33.607,"w":7.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15,000—17,000","S":-1,"TS":[0,11,0,0]}]},{"x":11.3,"y":33.607,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".34","S":-1,"TS":[0,11,0,0]}]},{"x":5.371,"y":34.357,"w":7.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17,000—19,000","S":-1,"TS":[0,11,0,0]}]},{"x":11.3,"y":34.357,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".33","S":-1,"TS":[0,11,0,0]}]},{"x":5.371,"y":35.107,"w":7.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19,000—21,000","S":-1,"TS":[0,11,0,0]}]},{"x":11.3,"y":35.107,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".32","S":-1,"TS":[0,11,0,0]}]},{"x":5.371,"y":35.857,"w":7.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21,000—23,000","S":-1,"TS":[0,11,0,0]}]},{"x":11.3,"y":35.857,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".31","S":-1,"TS":[0,11,0,0]}]},{"x":5.371,"y":36.607,"w":7.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23,000—25,000","S":-1,"TS":[0,11,0,0]}]},{"x":11.3,"y":36.607,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".30","S":-1,"TS":[0,11,0,0]}]},{"x":5.371,"y":37.357,"w":7.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25,000—27,000","S":-1,"TS":[0,11,0,0]}]},{"x":11.3,"y":37.357,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".29","S":-1,"TS":[0,11,0,0]}]},{"x":5.371,"y":38.107,"w":7.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"27,000—29,000","S":-1,"TS":[0,11,0,0]}]},{"x":11.3,"y":38.107,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".28","S":-1,"TS":[0,11,0,0]}]},{"x":17.3,"y":30.607,"w":4.891,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If line 7 is:","S":-1,"TS":[0,11,1,0]}]},{"x":17.3,"y":32.013,"w":2.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Over","S":-1,"TS":[0,11,1,0]}]},{"x":19.863,"y":31.32,"w":4.055,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"But not ","S":-1,"TS":[0,11,1,0]}]},{"x":19.863,"y":32.007,"w":2.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"over","S":-1,"TS":[0,11,1,0]}]},{"x":22.95,"y":31.32,"w":4.391,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Decimal ","S":-1,"TS":[0,11,1,0]}]},{"x":22.95,"y":32.007,"w":4.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"amount is","S":-1,"TS":[0,11,1,0]}]},{"x":17.493,"y":32.857,"w":7.672,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"$29,000—31,000","S":-1,"TS":[0,11,0,0]}]},{"x":23.7,"y":32.857,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".27","S":-1,"TS":[0,11,0,0]}]},{"x":17.771,"y":33.607,"w":7.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"31,000—33,000","S":-1,"TS":[0,11,0,0]}]},{"x":23.7,"y":33.607,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".26","S":-1,"TS":[0,11,0,0]}]},{"x":17.771,"y":34.357,"w":7.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"33,000—35,000","S":-1,"TS":[0,11,0,0]}]},{"x":23.7,"y":34.357,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".25","S":-1,"TS":[0,11,0,0]}]},{"x":17.771,"y":35.107,"w":7.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"35,000—37,000","S":-1,"TS":[0,11,0,0]}]},{"x":23.7,"y":35.107,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".24","S":-1,"TS":[0,11,0,0]}]},{"x":17.771,"y":35.857,"w":7.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"37,000—39,000","S":-1,"TS":[0,11,0,0]}]},{"x":23.7,"y":35.857,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".23","S":-1,"TS":[0,11,0,0]}]},{"x":17.771,"y":36.607,"w":7.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"39,000—41,000","S":-1,"TS":[0,11,0,0]}]},{"x":23.7,"y":36.607,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".22","S":-1,"TS":[0,11,0,0]}]},{"x":17.771,"y":37.357,"w":7.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"41,000—43,000","S":-1,"TS":[0,11,0,0]}]},{"x":23.7,"y":37.357,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".21","S":-1,"TS":[0,11,0,0]}]},{"x":17.771,"y":38.107,"w":7.466,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"43,000—No limit","S":-1,"TS":[0,11,0,0]}]},{"x":23.7,"y":38.107,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".20","S":-1,"TS":[0,11,0,0]}]},{"x":27.269,"y":34.339,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8 ","S":3,"TS":[0,12,0,0]}]},{"x":33.335,"y":34.348,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,15,0,0]}]},{"x":2.587,"y":38.789,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":38.789,"w":38.978,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 6 by the decimal amount on line 8. If you paid 2012 expenses in 2013, see ","S":3,"TS":[0,12,0,0]}]},{"x":3.798,"y":39.477,"w":6.872,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the instructions","S":3,"TS":[0,12,0,0]}]},{"x":7.997999999999999,"y":39.477,"w":33.325,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"x":27.269,"y":39.589,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":40.289,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":40.289,"w":22.635,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Tax liability limit. Enter the amount from the Credit ","S":3,"TS":[0,12,0,0]}]},{"x":3.798,"y":40.977,"w":15.449,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Limit Worksheet in the instructions","S":3,"TS":[0,12,0,0]}]},{"x":12.499,"y":40.977,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"x":18.562,"y":41.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":41.789,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":41.789,"w":22.229,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Credit for child and dependent care expenses. ","S":9,"TS":[0,12,1,0]}]},{"x":14.977,"y":41.789,"w":4.038,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the","S":3,"TS":[0,12,0,0]}]},{"x":17.127,"y":41.789,"w":4.058,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" smaller ","S":9,"TS":[0,12,1,0]}]},{"x":19.283,"y":41.789,"w":7.909,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of line 9 or line 10","S":3,"TS":[0,12,0,0]}]},{"x":26.302,"y":41.789,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8019999999999996,"y":42.476,"w":34.922,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"here and on Form 1040, line 48; Form 1040A, line 29; or Form 1040NR, line 46","S":3,"TS":[0,12,0,0]}]},{"x":23.752,"y":42.476,"w":5.332,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"x":27.112,"y":42.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11 ","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":43.339,"w":33.23,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see your tax return instructions.","S":9,"TS":[0,12,1,0]}]},{"x":24.63,"y":43.375,"w":7.633,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11862M","S":2,"TS":[0,10,0,0]}]},{"x":31.896,"y":43.321,"w":2.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form","S":2,"TS":[0,10,0,0]}]},{"x":32.917,"y":43.321,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":33.039,"y":43.321,"w":2.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2441","S":10,"TS":[0,14,1,0]}]},{"x":34.429,"y":43.321,"w":3.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013)","S":2,"TS":[0,10,0,0]}]},{"x":2.071,"y":11.011,"w":5.8,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Last or Business","S":-1,"TS":[2,8.988573824,0,0]}]},{"x":2.069,"y":10.308,"w":1.351,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"First","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":9.434,"y":10.262,"w":2.499,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":9.384,"y":10.964,"w":1.179,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"City","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":16.446,"y":10.964,"w":1.623,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"State","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":20.071,"y":10.964,"w":1.049,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":2.071,"y":12.511,"w":5.8,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Last or Business","S":-1,"TS":[2,8.988573824,0,0]}]},{"x":2.069,"y":11.808,"w":1.351,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"First","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":9.434,"y":11.762,"w":2.499,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":16.446,"y":12.464,"w":1.623,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"State","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":20.071,"y":12.464,"w":1.049,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,8.9886029943,0,0]}]},{"x":1.9529999999999998,"y":22.188,"w":152.073,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"To enter additional qualifying persons:","S":3,"TS":[0,12,0,0]}]},{"x":1.939,"y":13.252,"w":116.55,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"To enter additional providers:","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":2490,"AM":1024,"TU":"Page 1. Name(s) shown on return. ","x":2.25,"y":6.625,"w":25.975,"h":0.875},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":2491,"AM":1024,"TU":"Your social security number. ","x":28.35,"y":6.625,"w":7.65,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_1_","EN":0},"TI":2492,"AM":0,"TU":"Line 1(a) Care provider's first name.","x":3.176,"y":10.477,"w":6.302,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_1_","EN":0},"TI":2493,"AM":0,"TU":"Line 1. Item 1. (b) Address (number, street, apartment number). 2 lines available for entry. Line 1.","x":11.083,"y":10.5,"w":13.217,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_1_","EN":0},"TI":2494,"AM":0,"TU":"Line 1. Item 1. (c) Identifying number (S S N). ","x":24.293,"y":10.501,"w":5.318,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_1_","EN":0},"TI":2495,"AM":0,"TU":"Line 1(a) Care provider's last name or business name.","x":5.207,"y":11.27,"w":4.26,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_1_","EN":0},"TI":2496,"AM":0,"TU":"CITY","x":10.387,"y":11.236,"w":6.049,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_1_","EN":0},"TI":2497,"AM":0,"TU":"State","x":17.863,"y":11.077,"w":1.7850000000000001,"h":0.926,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AL"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_1_","EN":0},"TI":2498,"AM":0,"TU":"ZIP","x":20.984,"y":11.264,"w":3.334,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_1_","EN":0},"TI":2499,"AM":0,"TU":"Line 1. Item 1. (c) Identifying number( E I N). ","x":24.315,"y":11.256,"w":5.318,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_1_","EN":0},"TI":2500,"AM":0,"TU":"Line 1. Item 1. (d) Amount paid (see instructions). Dollars.","x":29.7,"y":10.999,"w":4.5,"h":1.002},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_2_","EN":0},"TI":2501,"AM":0,"TU":"Line 1(a) Care provider's first name.","x":3.164,"y":12.072,"w":6.302,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_2_","EN":0},"TI":2502,"AM":0,"TU":"Line 1. Item 1. (b) Address (number, street, apartment number). 2 lines available for entry. Line 1.","x":11.072,"y":11.99,"w":13.217,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_2_","EN":0},"TI":2503,"AM":0,"TU":"Line 1. Item 1. (c) Identifying number (S S N). ","x":24.281,"y":11.991,"w":5.318,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_2_","EN":0},"TI":2504,"AM":0,"TU":"Line 1(a) Care provider's last name or business name.","x":5.236,"y":12.841,"w":4.219,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_2_","EN":0},"TI":2505,"AM":0,"TU":"CITY","x":10.232,"y":12.726,"w":6.193,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_2_","EN":0},"TI":2506,"AM":0,"TU":"State","x":17.941,"y":12.768,"w":1.6469999999999998,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AK"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_2_","EN":0},"TI":2507,"AM":0,"TU":"ZIP","x":20.972,"y":12.753,"w":3.334,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_2_","EN":0},"TI":2508,"AM":0,"TU":"Line 1. Item 1. (c) Identifying number( E I N). ","x":24.303,"y":12.746,"w":5.318,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_2_","EN":0},"TI":2509,"AM":0,"TU":"Line 1. Item 1. (d) Amount paid (see instructions). Dollars.","x":29.688,"y":12.442,"w":4.5,"h":1.048},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2441DEP"}},"id":{"Id":"A1","EN":0},"TI":2510,"AM":0,"x":9.561,"y":13.42,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_1_","EN":0},"TI":2511,"AM":0,"TU":"Line 2 (a). Qualifying person's name first name.","x":2.291,"y":20.433,"w":8.883,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_1_","EN":0},"TI":2512,"AM":0,"TU":"Line 2 (b). Qualifying person's name last name.","x":11.594,"y":20.386,"w":9.387,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_1_","EN":0},"TI":2513,"AM":0,"TU":"Line 2(b). Qualifying person's social security number.","x":21.331,"y":20.386,"w":6.897,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_1_","EN":0},"TI":2514,"AM":0,"TU":"Line 2(c). Qualified expenses you incurred and paid in 2013 for the person listed in column (a).","x":28.508,"y":20.386,"w":5.733,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_2_","EN":0},"TI":2515,"AM":0,"TU":"Line 2 (a). Qualifying person's name first name.","x":2.215,"y":21.426,"w":8.883,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_2_","EN":0},"TI":2516,"AM":0,"TU":"Line 2 (b). Qualifying person's name last name.","x":11.564,"y":21.426,"w":9.434,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_2_","EN":0},"TI":2517,"AM":0,"TU":"Line 2(b). Qualifying person's social security number.","x":21.325,"y":21.403,"w":6.874,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_2_","EN":0},"TI":2518,"AM":0,"TU":"Line 2(c). Qualified expenses you incurred and paid in 2013 for the person listed in column (a).","x":28.548,"y":21.403,"w":5.64,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2441DEP"}},"id":{"Id":"A384","EN":0},"TI":2519,"AM":0,"x":11.891,"y":22.419,"w":0.804,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":2520,"AM":0,"TU":"Line 3. Add the amounts in column (c) of line 2. Do not enter more than $3,000 for one qualifying person or $6,000 for two or more persons. If you completed Part 3, enter the amount from line 31. Dollars.","x":28.35,"y":24.75,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":2521,"AM":0,"TU":"Line 4. Enter your earned income. See instructions. Dollars.","x":28.35,"y":25.5,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":2522,"AM":0,"TU":"Line 5. If married filing jointly, enter your spouse's earned income (if your spouse was a student or was disabled, see the instructions); all others, enter the amount from line 4. Dollars.","x":28.35,"y":27,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":2523,"AM":1024,"TU":"Line 6. Enter the smallest of line 3, 4, or 5. Dollars.","x":28.35,"y":27.75,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":2524,"AM":1024,"TU":"Line 7. Enter the amount from Form 1040, line 38, Form 1040 A, line 22, or Form 1040 N R, line 37. Dollars.","x":19.8,"y":29.25,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":2525,"AM":0,"TU":"Line 8. Enter on line 8 the decimal amount shown below that applies to the amount on line 7. ","x":31.127,"y":34.173,"w":2.782,"h":0.914,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":2526,"AM":1024,"TU":"Line 9. Multiply line 6 by the decimal amount on line 8. If you paid 2012 expenses in 2013, see the instructions. Dollars.","x":28.35,"y":39.75,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TAX1040","EN":0},"TI":2527,"AM":1024,"TU":"Line 10. Tax liability limit. Enter the amount from the Credit Limit Worksheet in the instructions. Dollars.","x":19.8,"y":41.25,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRDT2441","EN":0},"TI":2528,"AM":1024,"TU":"Line 11. Credit for child and dependent care expenses. Enter the smaller of line 9 or line 10 here and on Form 1040, line 48, Form 1040 A, line 29, or Form 1040 N R, line 46. Dollars.","x":28.35,"y":42.75,"w":5.85,"h":0.833}],"Boxsets":[]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":3,"w":1.5,"l":31.981,"oc":"#221f1f"},{"x":34.184,"y":3,"w":1.5,"l":1.831,"oc":"#221f1f"},{"x":2.234,"y":3,"w":1.125,"l":2.371,"oc":"#221f1f"},{"x":2.234,"y":3.75,"w":0.75,"l":2.371,"oc":"#221f1f"},{"x":2.234,"y":3.75,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":26.984,"y":3.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":26.984,"y":7.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":7.5,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":7.5,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":26.984,"y":9,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":9,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":9,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":26.984,"y":9.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":9.75,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":9.75,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":28.334,"y":10.5,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":10.5,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":17.984,"y":12,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.334,"y":12,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":25.184,"y":12,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":17.984,"y":12.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.334,"y":12.75,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":25.184,"y":12.75,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":19.334,"y":13.5,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":25.184,"y":13.5,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":17.984,"y":13.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.334,"y":18,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":25.184,"y":18,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":17.984,"y":18,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.334,"y":21,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":25.184,"y":21,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":17.984,"y":21,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":17.984,"y":23.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.334,"y":23.25,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":25.184,"y":23.25,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":26.984,"y":10.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":26.25,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":26.25,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":17.984,"y":27,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.334,"y":27,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":25.184,"y":27,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":26.984,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":26.984,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":28.5,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":28.5,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":28.334,"y":30.75,"w":1.125,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":30.75,"w":1.125,"l":1.831,"oc":"#221f1f"},{"x":26.984,"y":30.75,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":26.984,"y":34.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":34.5,"w":1.125,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":34.5,"w":1.125,"l":1.831,"oc":"#221f1f"},{"x":2.234,"y":34.5,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":36.75,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":26.984,"y":37.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":37.5,"w":1.125,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":37.5,"w":1.125,"l":1.831,"oc":"#221f1f"},{"x":26.984,"y":39,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":39,"w":1.125,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":39,"w":1.125,"l":1.831,"oc":"#221f1f"},{"x":26.984,"y":40.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":40.5,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":40.5,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":26.984,"y":42,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":42,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.184,"y":42,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":2.234,"y":43.5,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":28.35,"y":3.734,"w":0.75,"l":3.047,"oc":"#221f1f"},{"x":27,"y":3.734,"w":0.75,"l":3.047,"oc":"#221f1f"},{"x":28.35,"y":6.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27,"y":6.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":3.734,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":34.2,"y":6.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":7.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27,"y":7.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.2,"y":7.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":8.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":8.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27,"y":8.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":8.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":9.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27,"y":9.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":9.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.35,"y":11.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18,"y":11.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.2,"y":11.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.35,"y":11.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18,"y":11.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.2,"y":11.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.35,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.2,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.35,"y":13.484,"w":0.75,"l":3.797,"oc":"#221f1f"},{"x":18,"y":13.484,"w":0.75,"l":3.797,"oc":"#221f1f"},{"x":19.35,"y":17.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18,"y":17.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.2,"y":13.484,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":25.2,"y":17.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.35,"y":17.984,"w":0.75,"l":2.297,"oc":"#221f1f"},{"x":18,"y":17.984,"w":0.75,"l":2.297,"oc":"#221f1f"},{"x":19.35,"y":20.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18,"y":20.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.2,"y":17.984,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":25.2,"y":20.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.35,"y":20.984,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":18,"y":20.984,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":19.35,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.2,"y":20.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.2,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":10.484,"w":0.75,"l":15.047,"oc":"#221f1f"},{"x":27,"y":10.484,"w":0.75,"l":15.047,"oc":"#221f1f"},{"x":28.35,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":10.484,"w":0.75,"l":15.031,"oc":"#221f1f"},{"x":34.2,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.35,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.2,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":26.235,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":27,"y":26.235,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":28.35,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.2,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":28.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":27,"y":28.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.2,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.2,"y":29.984,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.35,"y":30.727,"w":0.75,"l":3.055,"oc":"#221f1f"},{"x":27,"y":30.727,"w":0.75,"l":3.055,"oc":"#221f1f"},{"x":34.2,"y":30.735,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":28.35,"y":33.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":27,"y":33.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.2,"y":33.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.35,"y":36.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":27,"y":36.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.2,"y":36.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.35,"y":37.485,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":27,"y":37.485,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.2,"y":37.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":38.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.35,"y":38.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27,"y":38.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.2,"y":38.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":39.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":40.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27,"y":40.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.2,"y":40.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":41.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":41.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27,"y":41.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.2,"y":41.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.2,"y":42.735,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.25,"y":3,"w":2.34,"h":0.75,"oc":"#221f1f"},{"x":27,"y":3.75,"w":1.35,"h":3,"oc":"#bebfc1"},{"x":18,"y":13.5,"w":1.35,"h":3.75,"oc":"#bebfc1"},{"x":18,"y":18,"w":1.35,"h":2.25,"oc":"#bebfc1"},{"x":27,"y":10.5,"w":1.35,"h":15,"oc":"#bebfc1"},{"x":27,"y":30.75,"w":1.35,"h":3,"oc":"#bebfc1"}],"Texts":[{"x":2,"y":1.9380000000000002,"w":7.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 2441 (2013)","S":2,"TS":[0,10,0,0]}]},{"x":33.95,"y":2.009,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.076,"y":2.009,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2","S":10,"TS":[0,14,1,0]}]},{"x":2.188,"y":2.821,"w":3.145,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III","S":-1,"TS":[0,13,0,0]}]},{"x":4.5,"y":2.821,"w":12.447,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Dependent Care Benefits","S":10,"TS":[0,14,1,0]}]},{"x":2.275,"y":3.7270000000000003,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12 ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":4.414,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":5.101,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":5.789,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":3.7270000000000003,"w":11.374,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the total amount of ","S":3,"TS":[0,12,0,0]}]},{"x":9.082,"y":3.7270000000000003,"w":11.503,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"dependent care benefits","S":9,"TS":[0,12,1,0]}]},{"x":14.965,"y":3.7270000000000003,"w":16.006,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" you received in 2013. Amounts you","S":3,"TS":[0,12,0,0]}]},{"x":3.353,"y":4.414,"w":33.155,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"received as an employee should be shown in box 10 of your Form(s) W-2. ","S":3,"TS":[0,12,0,0]}]},{"x":20.1,"y":4.414,"w":3.166,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not","S":9,"TS":[0,12,1,0]}]},{"x":21.647,"y":4.414,"w":3.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" include","S":3,"TS":[0,12,0,0]}]},{"x":3.354,"y":5.101,"w":37.634,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"amounts reported as wages in box 1 of Form(s) W-2. If you were self-employed or a ","S":3,"TS":[0,12,0,0]}]},{"x":3.357,"y":5.789,"w":39.547,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"partner, include amounts you received under a dependent care assistance program from","S":3,"TS":[0,12,0,0]}]},{"x":3.358,"y":6.476,"w":17.168,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"your sole proprietorship or partnership","S":3,"TS":[0,12,0,0]}]},{"x":13.258,"y":6.476,"w":23.994,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":27.112,"y":6.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":7.289,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":7.289,"w":39.124,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount, if any, you carried over from 2012 and used in 2013 during the grace ","S":3,"TS":[0,12,0,0]}]},{"x":3.349,"y":7.977,"w":10.594,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"period. See instructions","S":3,"TS":[0,12,0,0]}]},{"x":9.499,"y":7.977,"w":30.659,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"x":27.112,"y":8.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":8.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":8.839,"w":36.487,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount, if any, you forfeited or carried forward to 2014. See instructions","S":3,"TS":[0,12,0,0]}]},{"x":24.501,"y":8.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":25.251,"y":8.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":26,"y":8.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":27.112,"y":8.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14 ","S":3,"TS":[0,12,0,0]}]},{"x":28.19,"y":8.777,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"x":35.452,"y":8.777,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":")","S":3,"TS":[0,12,0,0]}]},{"x":2.274,"y":9.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":9.589,"w":20.636,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine lines 12 through 14. See instructions","S":3,"TS":[0,12,0,0]}]},{"x":15.5,"y":9.589,"w":19.995,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"x":27.112,"y":9.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":10.289,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":10.289,"w":11.374,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the total amount of ","S":3,"TS":[0,12,0,0]}]},{"x":8.987,"y":10.289,"w":8.948,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"qualified expenses","S":9,"TS":[0,12,1,0]}]},{"x":13.643,"y":10.289,"w":4.223,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" incurred ","S":3,"TS":[0,12,0,0]}]},{"x":3.349,"y":10.976,"w":11.781,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"in 2013 for the care of the ","S":3,"TS":[0,12,0,0]}]},{"x":9.226,"y":10.976,"w":9.557,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"qualifying person(s)","S":9,"TS":[0,12,1,0]}]},{"x":15.499,"y":10.976,"w":3.999,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...","S":3,"TS":[0,12,0,0]}]},{"x":17.272,"y":10.976,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":18.112,"y":11.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":11.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":11.839,"w":4.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":5.59,"y":11.839,"w":3.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"x":7.369,"y":11.839,"w":6.928,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of line 15 or 16","S":3,"TS":[0,12,0,0]}]},{"x":11.75,"y":11.839,"w":10.664,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"x":18.112,"y":11.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":12.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":12.589,"w":4.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter your ","S":3,"TS":[0,12,0,0]}]},{"x":5.84,"y":12.589,"w":7.336,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"earned income.","S":9,"TS":[0,12,1,0]}]},{"x":9.558,"y":12.589,"w":7.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" See instructions","S":3,"TS":[0,12,0,0]}]},{"x":14.75,"y":12.589,"w":5.332,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"x":17.272,"y":12.589,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":18.112,"y":12.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":13.289,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":13.289,"w":24.934,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount shown below that applies ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":13.977,"w":4.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"to you. ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":14.914,"w":18.411,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If married filing jointly, enter your ","S":3,"TS":[0,12,0,0]}]},{"x":3.8209999999999997,"y":15.602,"w":18.467,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"spouse’s earned income (if you or your ","S":3,"TS":[0,12,0,0]}]},{"x":3.8230000000000004,"y":16.289,"w":17.687,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"spouse was a student or was disabled, ","S":3,"TS":[0,12,0,0]}]},{"x":3.824,"y":16.976,"w":13.391,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"see the instructions for line 5).","S":3,"TS":[0,12,0,0]}]},{"x":3.355,"y":17.789,"w":16.354,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If married filing separately, see ","S":3,"TS":[0,12,0,0]}]},{"x":3.824,"y":18.477,"w":5.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions.","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":19.339,"w":18.969,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• All others, enter the amount from line 18.","S":-1,"TS":[0,11.64,0,0]}]},{"x":14.689,"y":18.388,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[3,25.25,0,0]}]},{"x":14.75,"y":16.995,"w":5.332,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ...","S":3,"TS":[0,12,0,0]}]},{"x":18.112,"y":17.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":20.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":20.089,"w":4.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":5.59,"y":20.089,"w":4.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"smallest","S":9,"TS":[0,12,1,0]}]},{"x":7.713,"y":20.089,"w":8.874,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of line 17, 18, or 19","S":3,"TS":[0,12,0,0]}]},{"x":13.25,"y":20.089,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":18.112,"y":20.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":20.852,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21 ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":21.539,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":20.852,"w":21.302,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter $5,000 ($2,500 if married filing separately ","S":3,"TS":[0,12,0,0]}]},{"x":16.301,"y":20.852,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and","S":3,"TS":[0,12,0,0]}]},{"x":17.301,"y":20.852,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":21.539,"w":21.984,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you were required to enter your spouse’s earned ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":22.226,"w":8.151,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"income on line 19)","S":3,"TS":[0,12,0,0]}]},{"x":8.001,"y":22.226,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":18.112,"y":22.339,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":23.039,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":23.039,"w":39.935,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Is any amount on line 12 from your sole proprietorship or partnership? (Form 1040A filers ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":23.727,"w":6.057,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"go to line 25.)","S":3,"TS":[0,12,0,0]}]},{"x":4.16,"y":24.589,"w":1.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No. ","S":9,"TS":[0,12,1,0]}]},{"x":5.233,"y":24.589,"w":4.242,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter -0-.","S":3,"TS":[0,12,0,0]}]},{"x":4.195,"y":25.339,"w":2.335,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes. ","S":9,"TS":[0,12,1,0]}]},{"x":5.507,"y":25.339,"w":9.948,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount here","S":3,"TS":[0,12,0,0]}]},{"x":11.75,"y":25.339,"w":26.66,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"x":27.112,"y":25.339,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":26.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":26.089,"w":12.578,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 22 from line 15","S":3,"TS":[0,12,0,0]}]},{"x":11,"y":26.089,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":18.112,"y":26.027,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23 ","S":3,"TS":[0,12,0,0]}]},{"x":8.162,"y":26.789,"w":4.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":10.383,"y":26.789,"w":4.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"smallest","S":9,"TS":[0,12,1,0]}]},{"x":12.527,"y":26.789,"w":20.693,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of line 20, 21, or 22. Also, include this amount","S":3,"TS":[0,12,0,0]}]},{"x":25.484,"y":26.789,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":23.412,"y":26.789,"w":1.13,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on","S":3,"TS":[0,12,0,0]}]},{"x":3.347,"y":27.477,"w":23.725,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the appropriate line(s) of your return. See instructions","S":3,"TS":[0,12,0,0]}]},{"x":16.997,"y":27.477,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":27.112,"y":27.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"24 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":28.352,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25 ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":29.039,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":28.352,"w":23.119,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Excluded benefits. Form 1040 and 1040NR filers:","S":9,"TS":[0,12,1,0]}]},{"x":15.032,"y":28.352,"w":16.986,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" If you checked \"No\" on line 22, enter ","S":3,"TS":[0,12,0,0]}]},{"x":3.349,"y":29.039,"w":39.194,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the smaller of line 20 or 21. Otherwise, subtract line 24 from the smaller of line 20 or line","S":3,"TS":[0,12,0,0]}]},{"x":3.347,"y":29.726,"w":5.61,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21. If zero or","S":3,"TS":[0,12,0,0]}]},{"x":6.503,"y":29.726,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":6.409,"y":29.726,"w":6.761,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"less, enter -0-. ","S":3,"TS":[0,12,0,0]}]},{"x":9.775,"y":29.726,"w":8.725,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1040A filers:","S":9,"TS":[0,12,1,0]}]},{"x":14.232,"y":29.726,"w":4.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Enter the","S":3,"TS":[0,12,0,0]}]},{"x":16.472,"y":29.726,"w":4.058,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" smaller ","S":9,"TS":[0,12,1,0]}]},{"x":18.564,"y":29.726,"w":8.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of line 20 or line 21","S":3,"TS":[0,12,0,0]}]},{"x":23.81,"y":29.726,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":24.41,"y":29.726,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":27.112,"y":29.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":30.727,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"26 ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":31.414,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":32.102,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":32.789,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":30.726,"w":22.675,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Taxable benefits. Form 1040 and 1040NR filers: ","S":9,"TS":[0,12,1,0]}]},{"x":14.922,"y":30.726,"w":17.354,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 25 from line 23. If zero or ","S":3,"TS":[0,12,0,0]}]},{"x":25.383,"y":31.414,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.348,"y":32.101,"w":35.104,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the dotted line next to Form 1040, line 7, or Form 1040NR, line 8, enter “DCB.”","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":32.788,"w":9.003,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1040A filers: ","S":9,"TS":[0,12,1,0]}]},{"x":7.911,"y":32.788,"w":32.123,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 25 from line 15. Also, include this amount on Form 1040A, ","S":3,"TS":[0,12,0,0]}]},{"x":3.352,"y":33.476,"w":22.783,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 7. In the space to the left of line 7, enter “DCB”","S":3,"TS":[0,12,0,0]}]},{"x":16.252,"y":33.476,"w":18.662,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"x":27.112,"y":33.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"26 ","S":3,"TS":[0,12,0,0]}]},{"x":13.25,"y":34.634,"w":17.728,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"To claim the child and dependent care ","S":-1,"TS":[0,13,0,0]}]},{"x":13.25,"y":35.321,"w":19.338,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"credit, complete lines 27 through 31 below.","S":-1,"TS":[0,13,0,0]}]},{"x":2.275,"y":36.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"27 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":36.589,"w":24.45,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter $3,000 ($6,000 if two or more qualifying persons)","S":3,"TS":[0,12,0,0]}]},{"x":17.75,"y":36.589,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":27.112,"y":36.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"27 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":37.289,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28 ","S":9,"TS":[0,12,1,0]}]},{"x":3.35,"y":37.289,"w":14.283,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1040 and 1040NR filers: ","S":9,"TS":[0,12,1,0]}]},{"x":10.572,"y":37.289,"w":9.171,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 24 and 25.","S":3,"TS":[0,12,0,0]}]},{"x":15.338,"y":37.289,"w":9.281,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Form 1040A filers: ","S":9,"TS":[0,12,1,0]}]},{"x":20.047,"y":37.289,"w":7.707,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount","S":3,"TS":[0,12,0,0]}]},{"x":26.3,"y":37.289,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":37.976,"w":5.261,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from line 25","S":3,"TS":[0,12,0,0]}]},{"x":6.5,"y":37.976,"w":35.991,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........................","S":3,"TS":[0,12,0,0]}]},{"x":27.112,"y":38.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"28 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":38.789,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"29 ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":39.477,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":38.789,"w":19.669,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 28 from line 27. If zero or less, ","S":3,"TS":[0,12,0,0]}]},{"x":13.429,"y":38.789,"w":2.389,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"stop.","S":9,"TS":[0,12,1,0]}]},{"x":14.699,"y":38.789,"w":12.652,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" You cannot take the credit. ","S":3,"TS":[0,12,0,0]}]},{"x":3.353,"y":39.477,"w":5.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Exception.","S":9,"TS":[0,12,1,0]}]},{"x":6.061,"y":39.477,"w":28.99,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" If you paid 2012 expenses in 2013, see the instructions for line 9","S":3,"TS":[0,12,0,0]}]},{"x":23.003,"y":39.477,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":26.158,"y":39.477,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":27.112,"y":39.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"29 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":40.289,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"30 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":40.289,"w":18.357,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete line 2 on the front of this form. ","S":3,"TS":[0,12,0,0]}]},{"x":12.496,"y":40.289,"w":3.166,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not","S":9,"TS":[0,12,1,0]}]},{"x":14.096,"y":40.289,"w":18.671,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" include in column (c) any benefits shown ","S":3,"TS":[0,12,0,0]}]},{"x":3.352,"y":40.977,"w":34.92,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on line 28 above. Then, add the amounts in column (c) and enter the total here","S":3,"TS":[0,12,0,0]}]},{"x":23.001,"y":40.977,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":27.112,"y":41.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"30 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":41.789,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"31 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":41.789,"w":4.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":5.546,"y":41.789,"w":3.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"smaller","S":9,"TS":[0,12,1,0]}]},{"x":7.397,"y":41.789,"w":32.658,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of line 29 or 30. Also, enter this amount on line 3 on the front of this form","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":42.476,"w":14.413,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and complete lines 4 through 11","S":3,"TS":[0,12,0,0]}]},{"x":11.75,"y":42.476,"w":26.66,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"x":27.112,"y":42.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"31 ","S":3,"TS":[0,12,0,0]}]},{"x":31.896,"y":43.321,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":33.039,"y":43.321,"w":2.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2441","S":10,"TS":[0,14,1,0]}]},{"x":34.429,"y":43.321,"w":3.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013)","S":2,"TS":[0,10,0,0]}]},{"x":2.275,"y":26.789,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24 ","S":9,"TS":[0,12,1,0]}]},{"x":3.35,"y":26.789,"w":5.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Deductible ","S":9,"TS":[0,12,1,0]}]},{"x":6.403,"y":26.789,"w":4.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"benefits. ","S":9,"TS":[0,12,1,0]}]},{"x":3.348,"y":31.414,"w":40.256,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"less, enter -0-. Also, include this amount on Form 1040, line 7, or Form 1040NR, line 8. On","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":2648,"AM":1024,"x":7.2,"y":2.006,"w":14.202,"h":0.842},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2649,"AM":1024,"x":22.418,"y":2.045,"w":9.293,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":2650,"AM":0,"TU":"Page 2. Part 3. Dependent Care Benefits. Line 12. Enter the total amount of dependent care benefits you received in 2013. Amounts you received as an employee should be shown in box 10 of your Form(s) W-2. Do not include amounts reported as wages in box 1 of Form(s) W-2. If you were self-employed or a partner, include amounts you received under a dependent care assistance program from your sole proprietorship or partnership. Dollars.","x":28.35,"y":6.75,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CRYOVER","EN":0},"TI":2651,"AM":0,"TU":"Line 13. Enter the amount, if any, you carried over from 2012 and used in 2013 during the grace period. See instructions. Dollars.","x":28.35,"y":8.25,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":2652,"AM":0,"TU":"Line 14. Enter the amount, if any, you forfeited or carried forward to 2014. See instructions. Open parenthesis. Dollars.","x":28.613,"y":9,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":2653,"AM":1024,"TU":"Line 15. Combine lines 12 through 14. See instructions. Dollars.","x":28.35,"y":9.75,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":2654,"AM":0,"TU":"Line 16. Enter the total amount of qualified expenses incurred in 2013 for the care of the qualifying person(s). Dollars.","x":19.35,"y":11.25,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":2655,"AM":1024,"TU":"Line 17. Enter the smaller of line 15 or 16. Dollars.","x":19.35,"y":12,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":2656,"AM":0,"TU":"Line 18. Enter your earned income. See instructions. Dollars.","x":19.35,"y":12.75,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":2657,"AM":0,"TU":"Line 19. Enter the amount shown below that applies to you. If married filing jointly, enter your spouse's earned income (if your spouse was a student or was disabled, see the instructions for line 5). If married filing separately, see instructions. All others, enter the amount from line 18. Dollars.","x":19.35,"y":17.25,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":2658,"AM":1024,"TU":"Line 20. Enter the smallest of line 17, 18, or 19. Dollars.","x":19.35,"y":20.25,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STD","EN":0},"TI":2659,"AM":0,"TU":"Line 21. Enter $5,000 ($2,500 if married filing separately and you were required to enter your spouse’s earned income on line 19). Dollars.","x":19.35,"y":22.5,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"FRPSHIP","EN":0},"TI":2662,"AM":0,"TU":"L22","x":28.35,"y":25.5,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LSL12","EN":0},"TI":2663,"AM":1024,"TU":"Line 23. Subtract line 22 from line 15. Dollars.","x":19.35,"y":26.25,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DEDBENS","EN":0},"TI":2664,"AM":1024,"TU":"Line 24. Deductible benefits. Enter the smallest of line 20, 21, or 22. Also, include this amount on the appropriate line(s) of your return. See instructions. Dollars.","x":28.35,"y":27.75,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":2665,"AM":1024,"TU":"Line 25. Excluded benefits. Form 1040 and 1040 N R filers: If you checked \"No\" on line 22, enter the smaller of line 20 or 21. Otherwise, subtract line 24 from the smaller of line 20 or line 21. If zero or less, enter zero. Form 1040 A filers: Enter the smaller of line 20 or line 21. Dollars.","x":28.35,"y":30,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":2666,"AM":1024,"TU":"Line 26. Taxable benefits. Form 1040 and 1040N R filers: Subtract line 25 from line 23. If zero or less, enter zero. Also, include this amount on Form 1040, line 7, or Form 1040 N R, line 8. On the dotted line next to Form 1040, line 7, or Form 1040 N R, line 8, enter \"D C B.\" \rForm 1040 A filers: Subtract line 25 from line 15. Also, include this amount on Form 1040 A, line 7. In the space to the left of line 7, enter “D C B”. Dollars.","x":28.35,"y":33.75,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":2667,"AM":0,"TU":"Part 3. Dependent Care Benefits. To claim the child and dependent care credit, complete lines 27 through 31 below. Line 27. Enter $3,000 ($6,000 if two or more qualifying persons). Dollars.","x":28.35,"y":36.75,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":2668,"AM":1024,"TU":"Line 28. Form 1040 and 1040N R filers: Add lines 24 and 25. Form 1040A filers: Enter the amount from line 25\t. Dollars.","x":28.35,"y":38.25,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":2669,"AM":1024,"TU":"Line 29. Subtract line 28 from line 27. If zero or less, stop. You cannot take the credit. Exception. If you paid 2012 expenses in 2013, see the instructions for line 9. Dollars. ","x":28.35,"y":39.75,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":2670,"AM":0,"TU":"Line 30. Complete line 2 on the front of this form. Do not include in column (c) any benefits shown on line 28 above. Then, add the amounts in column (c) and enter the total here. Dollars.","x":28.35,"y":41.25,"w":5.85,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":2671,"AM":1024,"TU":"Line 31. Enter the smaller of line 29 or 30. Also, enter this amount on line 3 on the front of this form and complete lines 4 through 11. Dollars.","x":28.35,"y":42.75,"w":5.85,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXSOLEN","EN":0},"TI":2660,"AM":0,"x":3.565,"y":24.713,"w":0.599,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BOXSOLEY","EN":0},"TI":2661,"AM":0,"x":3.558,"y":25.436,"w":0.599,"h":0.833,"checked":false}],"id":{"Id":"B1040ARB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F2441DEP.json b/test/data/fd/form/F2441DEP.json index 180aa0d8..91815577 100755 --- a/test/data/fd/form/F2441DEP.json +++ b/test/data/fd/form/F2441DEP.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"fdidepcare.pfm : default (Read Only)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[],"VLines":[],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":0,"y":1.5,"w":100.372,"h":0.124,"clr":0},{"x":0,"y":3,"w":100.372,"h":0.124,"clr":0},{"x":0,"y":4.5,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":7.5,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":8.25,"w":43.395,"h":0.03,"clr":0},{"x":43.313,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":44.684,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":46.056,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":47.427,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":48.799,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":50.17,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":51.542,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":52.913,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":54.285,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":55.657,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":57.028,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":58.4,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":59.771,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":61.143,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":62.514,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":63.886,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":65.258,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":66.629,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":68.001,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":69.372,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":70.744,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":72.115,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":73.487,"y":8.25,"w":0.856,"h":0.03,"clr":0},{"x":74.858,"y":8.25,"w":0.505,"h":0.03,"clr":0},{"x":75.281,"y":8.25,"w":24.833,"h":0.03,"clr":0},{"x":0,"y":9,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":9.75,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":10.5,"w":36.176,"h":0.03,"clr":0},{"x":36.094,"y":10.5,"w":0.856,"h":0.03,"clr":0},{"x":37.465,"y":10.5,"w":0.856,"h":0.03,"clr":0},{"x":38.837,"y":10.5,"w":0.856,"h":0.03,"clr":0},{"x":40.208,"y":10.5,"w":0.856,"h":0.03,"clr":0},{"x":41.58,"y":10.5,"w":0.856,"h":0.03,"clr":0},{"x":42.952,"y":10.5,"w":0.856,"h":0.03,"clr":0},{"x":44.323,"y":10.5,"w":0.856,"h":0.03,"clr":0},{"x":45.695,"y":10.5,"w":0.856,"h":0.03,"clr":0},{"x":47.066,"y":10.5,"w":0.856,"h":0.03,"clr":0},{"x":48.438,"y":10.5,"w":0.856,"h":0.03,"clr":0},{"x":49.809,"y":10.5,"w":0.856,"h":0.03,"clr":0},{"x":51.181,"y":10.5,"w":0.856,"h":0.03,"clr":0},{"x":52.553,"y":10.5,"w":0.856,"h":0.03,"clr":0},{"x":57.75,"y":10.5,"w":4.208,"h":0.03,"clr":0},{"x":64.969,"y":10.5,"w":35.145,"h":0.03,"clr":0},{"x":0,"y":11.25,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":12,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":12.75,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":13.5,"w":36.176,"h":0.03,"clr":0},{"x":36.094,"y":13.5,"w":0.856,"h":0.03,"clr":0},{"x":37.465,"y":13.5,"w":0.856,"h":0.03,"clr":0},{"x":38.837,"y":13.5,"w":0.856,"h":0.03,"clr":0},{"x":40.208,"y":13.5,"w":0.856,"h":0.03,"clr":0},{"x":41.58,"y":13.5,"w":0.856,"h":0.03,"clr":0},{"x":42.952,"y":13.5,"w":0.856,"h":0.03,"clr":0},{"x":44.323,"y":13.5,"w":0.856,"h":0.03,"clr":0},{"x":45.695,"y":13.5,"w":0.856,"h":0.03,"clr":0},{"x":47.066,"y":13.5,"w":0.856,"h":0.03,"clr":0},{"x":48.438,"y":13.5,"w":0.856,"h":0.03,"clr":0},{"x":49.809,"y":13.5,"w":0.856,"h":0.03,"clr":0},{"x":51.181,"y":13.5,"w":0.856,"h":0.03,"clr":0},{"x":52.553,"y":13.5,"w":0.856,"h":0.03,"clr":0},{"x":57.75,"y":13.5,"w":4.208,"h":0.03,"clr":0},{"x":64.969,"y":13.5,"w":35.145,"h":0.03,"clr":0},{"x":0,"y":14.25,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":15,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":15.75,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":16.5,"w":36.176,"h":0.03,"clr":0},{"x":36.094,"y":16.5,"w":0.856,"h":0.03,"clr":0},{"x":37.465,"y":16.5,"w":0.856,"h":0.03,"clr":0},{"x":38.837,"y":16.5,"w":0.856,"h":0.03,"clr":0},{"x":40.208,"y":16.5,"w":0.856,"h":0.03,"clr":0},{"x":41.58,"y":16.5,"w":0.856,"h":0.03,"clr":0},{"x":42.952,"y":16.5,"w":0.856,"h":0.03,"clr":0},{"x":44.323,"y":16.5,"w":0.856,"h":0.03,"clr":0},{"x":45.695,"y":16.5,"w":0.856,"h":0.03,"clr":0},{"x":47.066,"y":16.5,"w":0.856,"h":0.03,"clr":0},{"x":48.438,"y":16.5,"w":0.856,"h":0.03,"clr":0},{"x":49.809,"y":16.5,"w":0.856,"h":0.03,"clr":0},{"x":51.181,"y":16.5,"w":0.856,"h":0.03,"clr":0},{"x":52.553,"y":16.5,"w":0.856,"h":0.03,"clr":0},{"x":57.75,"y":16.5,"w":4.208,"h":0.03,"clr":0},{"x":64.969,"y":16.5,"w":35.145,"h":0.03,"clr":0},{"x":0,"y":17.25,"w":100.372,"h":0.124,"clr":0},{"x":0,"y":18.75,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":21,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":21.75,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":22.5,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":23.25,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":24,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":24.75,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":25.5,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":26.25,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":27,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":27.75,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":28.5,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":29.25,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":30,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":30.75,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":31.5,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":32.25,"w":100.114,"h":0.03,"clr":0},{"x":0,"y":33.75,"w":100.372,"h":0.124,"clr":0},{"x":15.469,"y":0,"w":0.083,"h":1.53,"clr":0},{"x":81.469,"y":0,"w":0.082,"h":3.03,"clr":0},{"x":36.094,"y":4.5,"w":0.082,"h":12.03,"clr":0},{"x":75.281,"y":4.5,"w":0.083,"h":3.03,"clr":0},{"x":87.656,"y":4.5,"w":0.083,"h":3.03,"clr":0},{"x":87.656,"y":8.25,"w":0.083,"h":8.28,"clr":0},{"x":75.281,"y":9,"w":0.083,"h":2.28,"clr":0},{"x":75.281,"y":12,"w":0.083,"h":2.28,"clr":0},{"x":75.281,"y":15,"w":0.083,"h":1.53,"clr":0},{"x":51.047,"y":18.75,"w":0.083,"h":13.53,"clr":0},{"x":72.703,"y":18.75,"w":0.083,"h":13.53,"clr":0},{"x":24.75,"y":21,"w":0.082,"h":11.28,"clr":0}],"Texts":[{"x":0.09000000000000002,"y":-0.124,"w":5.002,"clr":0,"A":"left","R":[{"T":"Form%202441","S":-1,"TS":[2,13.941,1,0]}]},{"x":23.809,"y":-0.124,"w":21.059000000000005,"clr":0,"A":"left","R":[{"T":"Additional%20Form%202441%20Information%20Statement","S":-1,"TS":[2,15.9773,1,0]}]},{"x":91.874,"y":-0.124,"w":2.224,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[2,15.9773,1,0]}]},{"x":2.153,"y":0.6259999999999999,"w":5.78,"clr":0,"A":"left","R":[{"T":"Line%201%20and%202","S":-1,"TS":[2,13.941,1,0]}]},{"x":36.184,"y":0.6259999999999999,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,10.9648,0,0]}]},{"x":37.349,"y":0.6259999999999999,"w":17.146,"clr":0,"A":"left","R":[{"T":"%20Attach%20to%20return%20(after%20all%20IRS%20forms)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.09000000000000002,"y":1.376,"w":11.798000000000002,"clr":0,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":-1,"TS":[2,10.9648,0,0]}]},{"x":81.559,"y":1.376,"w":13.449000000000002,"clr":0,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[2,10.9648,1,0]}]},{"x":2.153,"y":3.6260000000000003,"w":26.839000000000006,"clr":0,"A":"left","R":[{"T":"Additional%20Persons%20or%20Organizations%20Who%20Provided%20Care","S":-1,"TS":[2,13.941,1,0]}]},{"x":12.465,"y":4.376,"w":1.222,"clr":0,"A":"left","R":[{"T":"(a)","S":-1,"TS":[2,11.9829,1,0]}]},{"x":14.352,"y":4.376,"w":7.693999999999999,"clr":0,"A":"left","R":[{"T":"%20Care%20provider's%20","S":-1,"TS":[2,11.9829,0,0]}]},{"x":50.622,"y":4.376,"w":1.555,"clr":0,"A":"left","R":[{"T":"(b)%20","S":-1,"TS":[2,11.9829,1,0]}]},{"x":53.035,"y":4.376,"w":3.748,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":75.372,"y":4.376,"w":1.5,"clr":0,"A":"left","R":[{"T":"(c)%20","S":-1,"TS":[2,11.9829,1,0]}]},{"x":77.692,"y":4.376,"w":5.1209999999999996,"clr":0,"A":"left","R":[{"T":"Identifying%20","S":-1,"TS":[2,11.9829,0,0]}]},{"x":87.747,"y":4.376,"w":1.555,"clr":0,"A":"left","R":[{"T":"(d)%20","S":-1,"TS":[2,11.9829,1,0]}]},{"x":90.16,"y":4.376,"w":5.884999999999999,"clr":0,"A":"left","R":[{"T":"Amount%20paid","S":-1,"TS":[2,11.9829,0,0]}]},{"x":17.622,"y":5.126,"w":2.5869999999999997,"clr":0,"A":"left","R":[{"T":"name","S":-1,"TS":[2,11.9829,0,0]}]},{"x":37.216,"y":5.126,"w":23.917000000000005,"clr":0,"A":"left","R":[{"T":"(number%2C%20street%2C%20apt.%20no.%2C%20city%2C%20state%2C%20and%20ZIP%20Code)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":78.471,"y":5.126,"w":3.842,"clr":0,"A":"left","R":[{"T":"number%20","S":-1,"TS":[2,11.9829,0,0]}]},{"x":87.753,"y":5.126,"w":8.024999999999999,"clr":0,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":77.434,"y":5.876,"w":5.553,"clr":0,"A":"left","R":[{"T":"(SSN%20above","S":-1,"TS":[2,11.9829,0,0]}]},{"x":77.434,"y":6.626,"w":6.325,"clr":0,"A":"left","R":[{"T":"or%20EIN%20below)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.09000000000000002,"y":8.126,"w":7.713999999999999,"clr":0,"A":"left","R":[{"T":"Last%20or%20Business","S":-1,"TS":[2,10.9648,0,0]}]},{"x":0.09000000000000002,"y":8.876,"w":2.026,"clr":0,"A":"left","R":[{"T":"First","S":-1,"TS":[2,11.9829,0,0]}]},{"x":36.185,"y":8.876,"w":3.748,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.09000000000000002,"y":9.626,"w":7.713999999999999,"clr":0,"A":"left","R":[{"T":"Last%20or%20Business","S":-1,"TS":[2,10.9648,0,0]}]},{"x":36.184,"y":9.626,"w":1.768,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[2,11.9829,0,0]}]},{"x":53.716,"y":9.626,"w":2.4350000000000005,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[2,11.9829,0,0]}]},{"x":61.966,"y":9.626,"w":1.574,"clr":0,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.09000000000000002,"y":10.376,"w":2.026,"clr":0,"A":"left","R":[{"T":"First","S":-1,"TS":[2,11.9829,0,0]}]},{"x":36.185,"y":10.376,"w":3.748,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.09000000000000002,"y":11.126,"w":7.713999999999999,"clr":0,"A":"left","R":[{"T":"Last%20or%20Business","S":-1,"TS":[2,10.9648,0,0]}]},{"x":36.184,"y":11.126,"w":1.768,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[2,11.9829,0,0]}]},{"x":53.716,"y":11.126,"w":2.4350000000000005,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[2,11.9829,0,0]}]},{"x":61.966,"y":11.126,"w":1.574,"clr":0,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.09000000000000002,"y":11.876,"w":2.026,"clr":0,"A":"left","R":[{"T":"First","S":-1,"TS":[2,11.9829,0,0]}]},{"x":36.185,"y":11.876,"w":3.748,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.09000000000000002,"y":12.626,"w":7.713999999999999,"clr":0,"A":"left","R":[{"T":"Last%20or%20Business","S":-1,"TS":[2,10.9648,0,0]}]},{"x":36.184,"y":12.626,"w":1.768,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[2,11.9829,0,0]}]},{"x":53.716,"y":12.626,"w":2.4350000000000005,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[2,11.9829,0,0]}]},{"x":61.966,"y":12.626,"w":1.574,"clr":0,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.09000000000000002,"y":13.376,"w":2.026,"clr":0,"A":"left","R":[{"T":"First","S":-1,"TS":[2,11.9829,0,0]}]},{"x":36.185,"y":13.376,"w":3.748,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.09000000000000002,"y":14.126,"w":7.713999999999999,"clr":0,"A":"left","R":[{"T":"Last%20or%20Business","S":-1,"TS":[2,10.9648,0,0]}]},{"x":36.184,"y":14.126,"w":1.768,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[2,11.9829,0,0]}]},{"x":53.716,"y":14.126,"w":2.4350000000000005,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[2,11.9829,0,0]}]},{"x":61.966,"y":14.126,"w":1.574,"clr":0,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.09000000000000002,"y":14.876,"w":2.026,"clr":0,"A":"left","R":[{"T":"First","S":-1,"TS":[2,11.9829,0,0]}]},{"x":36.185,"y":14.876,"w":3.748,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.09000000000000002,"y":15.626000000000001,"w":7.713999999999999,"clr":0,"A":"left","R":[{"T":"Last%20or%20Business","S":-1,"TS":[2,10.9648,0,0]}]},{"x":36.184,"y":15.626000000000001,"w":1.768,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[2,11.9829,0,0]}]},{"x":53.716,"y":15.626000000000001,"w":2.4350000000000005,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[2,11.9829,0,0]}]},{"x":61.966,"y":15.626000000000001,"w":1.574,"clr":0,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,11.9829,0,0]}]},{"x":2.153,"y":16.376,"w":24.865999999999993,"clr":0,"A":"left","R":[{"T":"Total.%20Enter%20on%20an%20available%20line%20on%20Form%202441%20line%201.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":41.433,"y":16.376,"w":41.51700000000007,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":2.153,"y":17.876,"w":21.284000000000013,"clr":0,"A":"left","R":[{"T":"Additional%20Qualifying%20Persons%20and%20Expenses","S":-1,"TS":[2,13.941,1,0]}]},{"x":75.372,"y":18.626,"w":10.615000000000002,"clr":0,"A":"left","R":[{"T":"(c)%20Qualified%20expenses","S":-1,"TS":[2,11.9829,1,0]}]},{"x":92.14,"y":18.626,"w":1.9750000000000003,"clr":0,"A":"left","R":[{"T":"you%20","S":-1,"TS":[2,11.9829,0,0]}]},{"x":15.559,"y":19.376,"w":1.222,"clr":0,"A":"left","R":[{"T":"(a)","S":-1,"TS":[2,11.9829,1,0]}]},{"x":17.446,"y":19.376,"w":12.479,"clr":0,"A":"left","R":[{"T":"%20Qualifying%20person's%20name%20","S":-1,"TS":[2,11.9829,0,0]}]},{"x":53.715,"y":19.376,"w":1.277,"clr":0,"A":"left","R":[{"T":"(b)","S":-1,"TS":[2,11.9829,1,0]}]},{"x":55.695,"y":19.376,"w":9.552,"clr":0,"A":"left","R":[{"T":"%20Qualifying%20person's%20","S":-1,"TS":[2,11.9829,0,0]}]},{"x":74.343,"y":19.376,"w":13.769,"clr":0,"A":"left","R":[{"T":"incurred%20and%20paid%20in%202013%20for%20","S":-1,"TS":[2,11.9829,0,0]}]},{"x":9.371,"y":20.126,"w":2.026,"clr":0,"A":"left","R":[{"T":"First","S":-1,"TS":[2,11.9829,0,0]}]},{"x":36.185,"y":20.126,"w":1.9340000000000002,"clr":0,"A":"left","R":[{"T":"Last","S":-1,"TS":[2,11.9829,0,0]}]},{"x":53.717,"y":20.126,"w":10.425999999999998,"clr":0,"A":"left","R":[{"T":"social%20security%20number","S":-1,"TS":[2,11.9829,0,0]}]},{"x":74.345,"y":20.126,"w":14.239999999999997,"clr":0,"A":"left","R":[{"T":"the%20person%20listed%20in%20column%20(a)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":2.153,"y":32.876,"w":24.865999999999993,"clr":0,"A":"left","R":[{"T":"Total.%20Enter%20on%20an%20available%20line%20on%20Form%202441%20line%202.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":41.041,"y":32.876,"w":36.904000000000025,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,8.9885,0,0]}]},{"x":0.09100000000000003,"y":7.3759999999999994,"w":2.026,"clr":0,"A":"left","R":[{"T":"First","S":-1,"TS":[2,11.9829,0,0]}]},{"x":36.185,"y":7.3759999999999994,"w":3.748,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":36.184,"y":8.126,"w":1.768,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[2,11.9829,0,0]}]},{"x":53.716,"y":8.126,"w":2.4350000000000005,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[2,11.9829,0,0]}]},{"x":61.966,"y":8.126,"w":1.574,"clr":0,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,11.9829,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1397,"AM":1024,"x":0.117,"y":2.291,"w":81.398,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1398,"AM":1024,"x":81.634,"y":2.297,"w":18.686,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_1_","EN":0},"TI":1399,"AM":0,"x":3.244,"y":7.552,"w":32.711,"h":0.833,"TU":"(a) FIRST NAME."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_1_","EN":0},"TI":1400,"AM":0,"x":42.171,"y":7.552,"w":32.917,"h":0.833,"TU":"(b). Address."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_1_","EN":0},"TI":1401,"AM":0,"x":75.403,"y":7.575,"w":12.189,"h":0.833,"TU":"(c) SSN."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_1_","EN":0},"TI":1402,"AM":0,"x":87.682,"y":7.559,"w":12.293,"h":0.833,"TU":"(d). Amount paid (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_1_","EN":0},"TI":1403,"AM":0,"x":10.69,"y":8.303,"w":25.266,"h":0.833,"TU":"(a) Last name or Business name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_1_","EN":0},"TI":1404,"AM":0,"x":39.317,"y":8.317,"w":14.36,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_1_","EN":0},"TI":1405,"AM":0,"x":58.224,"y":8.238,"w":3.376,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_1_","EN":0},"TI":1406,"AM":0,"x":64.816,"y":8.335,"w":10.271,"h":0.833,"TU":"ZIP"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_1_","EN":0},"TI":1407,"AM":0,"x":75.403,"y":8.298,"w":12.189,"h":0.833,"TU":"(c). EIN.","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_2_","EN":0},"TI":1408,"AM":0,"x":3.368,"y":9.061,"w":32.711,"h":0.833,"TU":"(a) FIRST NAME."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_2_","EN":0},"TI":1409,"AM":0,"x":42.295,"y":9.061,"w":32.917,"h":0.833,"TU":"(b). Address."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_2_","EN":0},"TI":1410,"AM":0,"x":75.528,"y":9.084,"w":12.189,"h":0.833,"TU":"(c) SSN."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_2_","EN":0},"TI":1411,"AM":0,"x":87.806,"y":9.067,"w":12.292,"h":0.833,"TU":"(d). Amount paid (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_2_","EN":0},"TI":1412,"AM":0,"x":10.814,"y":9.811,"w":25.266,"h":0.833,"TU":"(a) Last name or Business name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_2_","EN":0},"TI":1413,"AM":0,"x":39.442,"y":9.826,"w":14.361,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_2_","EN":0},"TI":1414,"AM":0,"x":57.798,"y":9.768,"w":3.376,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_2_","EN":0},"TI":1415,"AM":0,"x":64.866,"y":9.843,"w":10.271,"h":0.833,"TU":"ZIP"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_2_","EN":0},"TI":1416,"AM":0,"x":75.528,"y":9.806,"w":12.189,"h":0.833,"TU":"(c). EIN.","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_3_","EN":0},"TI":1417,"AM":0,"x":3.498,"y":10.578,"w":32.711,"h":0.833,"TU":"(a) FIRST NAME."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_3_","EN":0},"TI":1418,"AM":0,"x":42.424,"y":10.578,"w":32.917,"h":0.833,"TU":"(b). Address."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_3_","EN":0},"TI":1419,"AM":0,"x":75.657,"y":10.601,"w":12.189,"h":0.833,"TU":"(c) SSN."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_3_","EN":0},"TI":1420,"AM":0,"x":87.935,"y":10.584,"w":12.293,"h":0.833,"TU":"(d). Amount paid (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_3_","EN":0},"TI":1421,"AM":0,"x":10.944,"y":11.328,"w":25.266,"h":0.833,"TU":"(a) Last name or Business name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_3_","EN":0},"TI":1422,"AM":0,"x":39.571,"y":11.343,"w":14.36,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_3_","EN":0},"TI":1423,"AM":0,"x":58.14,"y":11.229,"w":3.376,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_3_","EN":0},"TI":1424,"AM":0,"x":64.995,"y":11.306,"w":10.271,"h":0.833,"TU":"ZIP"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_3_","EN":0},"TI":1425,"AM":0,"x":75.657,"y":11.324,"w":12.189,"h":0.833,"TU":"(c). EIN.","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_4_","EN":0},"TI":1426,"AM":0,"x":3.368,"y":12.056,"w":32.711,"h":0.833,"TU":"(a) FIRST NAME."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_4_","EN":0},"TI":1427,"AM":0,"x":42.295,"y":12.056,"w":32.917,"h":0.833,"TU":"(b). Address."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_4_","EN":0},"TI":1428,"AM":0,"x":75.528,"y":12.078,"w":12.189,"h":0.833,"TU":"(c) SSN."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_4_","EN":0},"TI":1429,"AM":0,"x":87.806,"y":12.039,"w":12.292,"h":0.833,"TU":"(d). Amount paid (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_4_","EN":0},"TI":1430,"AM":0,"x":10.814,"y":12.806,"w":25.266,"h":0.833,"TU":"(a) Last name or Business name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_4_","EN":0},"TI":1431,"AM":0,"x":39.442,"y":12.82,"w":14.361,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_4_","EN":0},"TI":1432,"AM":0,"x":58.057,"y":12.811,"w":3.376,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_4_","EN":0},"TI":1433,"AM":0,"x":64.866,"y":12.838,"w":10.271,"h":0.833,"TU":"ZIP"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_4_","EN":0},"TI":1434,"AM":0,"x":75.528,"y":12.801,"w":12.189,"h":0.833,"TU":"(c). EIN.","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_5_","EN":0},"TI":1435,"AM":0,"x":3.443,"y":13.58,"w":32.711,"h":0.833,"TU":"(a) FIRST NAME."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_5_","EN":0},"TI":1436,"AM":0,"x":42.37,"y":13.58,"w":32.917,"h":0.833,"TU":"(b). Address."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_5_","EN":0},"TI":1437,"AM":0,"x":75.602,"y":13.603,"w":12.189,"h":0.833,"TU":"(c) SSN."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_5_","EN":0},"TI":1438,"AM":0,"x":87.881,"y":13.586,"w":12.293,"h":0.833,"TU":"(d). Amount paid (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_5_","EN":0},"TI":1439,"AM":0,"x":10.889,"y":14.33,"w":25.266,"h":0.833,"TU":"(a) Last name or Business name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_5_","EN":0},"TI":1440,"AM":0,"x":39.516,"y":14.345,"w":14.361,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_5_","EN":0},"TI":1441,"AM":0,"x":58.018,"y":14.289,"w":3.376,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_5_","EN":0},"TI":1442,"AM":0,"x":64.824,"y":14.328,"w":10.271,"h":0.833,"TU":"ZIP"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_5_","EN":0},"TI":1443,"AM":0,"x":75.602,"y":14.326,"w":12.189,"h":0.833,"TU":"(c). EIN.","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_6_","EN":0},"TI":1444,"AM":0,"x":3.326,"y":15.097,"w":32.711,"h":0.833,"TU":"(a) FIRST NAME."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_6_","EN":0},"TI":1445,"AM":0,"x":42.252,"y":15.097,"w":32.917,"h":0.833,"TU":"(b). Address."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_6_","EN":0},"TI":1446,"AM":0,"x":75.485,"y":15.12,"w":12.189,"h":0.833,"TU":"(c) SSN."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_6_","EN":0},"TI":1447,"AM":0,"x":87.763,"y":15.104,"w":12.293,"h":0.833,"TU":"(d). Amount paid (see instructions)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_6_","EN":0},"TI":1448,"AM":0,"x":10.772,"y":15.847,"w":25.266,"h":0.833,"TU":"(a) Last name or Business name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_6_","EN":0},"TI":1449,"AM":0,"x":39.399,"y":15.862,"w":14.36,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_6_","EN":0},"TI":1450,"AM":0,"x":57.98,"y":15.749,"w":3.376,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_6_","EN":0},"TI":1451,"AM":0,"x":64.941,"y":15.86,"w":10.271,"h":0.833,"TU":"ZIP"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_6_","EN":0},"TI":1452,"AM":0,"x":75.485,"y":15.843,"w":12.189,"h":0.833,"TU":"(c). EIN.","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL2","EN":0},"TI":1453,"AM":1024,"x":88.112,"y":16.544,"w":12.292,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_1_","EN":0},"TI":1454,"AM":0,"x":0.041,"y":21.052,"w":24.667,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_1_","EN":0},"TI":1455,"AM":0,"x":24.894,"y":21.052,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_1_","EN":0},"TI":1456,"AM":0,"x":51.191,"y":21.052,"w":21.471,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_1_","EN":0},"TI":1457,"AM":0,"x":72.848,"y":21.052,"w":27.246,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_2_","EN":0},"TI":1458,"AM":0,"x":0.172,"y":21.798,"w":24.668,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_2_","EN":0},"TI":1459,"AM":0,"x":24.913,"y":21.798,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_2_","EN":0},"TI":1460,"AM":0,"x":51.21,"y":21.798,"w":21.47,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_2_","EN":0},"TI":1461,"AM":0,"x":72.867,"y":21.798,"w":27.245,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_3_","EN":0},"TI":1462,"AM":0,"x":0.051,"y":22.596,"w":24.667,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_3_","EN":0},"TI":1463,"AM":0,"x":24.904,"y":22.596,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_3_","EN":0},"TI":1464,"AM":0,"x":51.201,"y":22.596,"w":21.471,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_3_","EN":0},"TI":1465,"AM":0,"x":72.857,"y":22.596,"w":27.246,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_4_","EN":0},"TI":1466,"AM":0,"x":0.07,"y":23.342,"w":24.668,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_4_","EN":0},"TI":1467,"AM":0,"x":24.923,"y":23.342,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_4_","EN":0},"TI":1468,"AM":0,"x":51.22,"y":23.342,"w":21.471,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_4_","EN":0},"TI":1469,"AM":0,"x":72.876,"y":23.342,"w":27.246,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_5_","EN":0},"TI":1470,"AM":0,"x":0.172,"y":24.029,"w":24.668,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_5_","EN":0},"TI":1471,"AM":0,"x":25.025,"y":24.029,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_5_","EN":0},"TI":1472,"AM":0,"x":51.322,"y":24.029,"w":21.471,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_5_","EN":0},"TI":1473,"AM":0,"x":72.978,"y":24.029,"w":27.246,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_6_","EN":0},"TI":1474,"AM":0,"x":0.191,"y":24.775,"w":24.667,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_6_","EN":0},"TI":1475,"AM":0,"x":25.044,"y":24.775,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_6_","EN":0},"TI":1476,"AM":0,"x":51.341,"y":24.775,"w":21.47,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_6_","EN":0},"TI":1477,"AM":0,"x":72.997,"y":24.775,"w":27.245,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_7_","EN":0},"TI":1478,"AM":0,"x":0.245,"y":25.573,"w":24.667,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_7_","EN":0},"TI":1479,"AM":0,"x":25.034,"y":25.573,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_7_","EN":0},"TI":1480,"AM":0,"x":51.331,"y":25.573,"w":21.471,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_7_","EN":0},"TI":1481,"AM":0,"x":72.988,"y":25.573,"w":27.246,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_8_","EN":0},"TI":1482,"AM":0,"x":0.2,"y":26.319,"w":24.668,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_8_","EN":0},"TI":1483,"AM":0,"x":25.054,"y":26.319,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_8_","EN":0},"TI":1484,"AM":0,"x":51.35,"y":26.319,"w":21.471,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_8_","EN":0},"TI":1485,"AM":0,"x":73.007,"y":26.319,"w":27.246,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_9_","EN":0},"TI":1486,"AM":0,"x":0.172,"y":27.033,"w":24.668,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_9_","EN":0},"TI":1487,"AM":0,"x":24.853,"y":27.033,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_9_","EN":0},"TI":1488,"AM":0,"x":51.15,"y":27.033,"w":21.471,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_9_","EN":0},"TI":1489,"AM":0,"x":72.806,"y":27.033,"w":27.246,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_10_","EN":0},"TI":1490,"AM":0,"x":0.191,"y":27.779,"w":24.667,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_10_","EN":0},"TI":1491,"AM":0,"x":24.872,"y":27.779,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_10_","EN":0},"TI":1492,"AM":0,"x":51.169,"y":27.779,"w":21.47,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_10_","EN":0},"TI":1493,"AM":0,"x":72.825,"y":27.779,"w":27.245,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_11_","EN":0},"TI":1494,"AM":0,"x":0.181,"y":28.577,"w":24.667,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_11_","EN":0},"TI":1495,"AM":0,"x":24.863,"y":28.577,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_11_","EN":0},"TI":1496,"AM":0,"x":51.159,"y":28.577,"w":21.471,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_11_","EN":0},"TI":1497,"AM":0,"x":72.816,"y":28.577,"w":27.246,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_12_","EN":0},"TI":1498,"AM":0,"x":0.2,"y":29.322,"w":24.668,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_12_","EN":0},"TI":1499,"AM":0,"x":24.882,"y":29.322,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_12_","EN":0},"TI":1500,"AM":0,"x":51.179,"y":29.322,"w":21.471,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_12_","EN":0},"TI":1501,"AM":0,"x":72.835,"y":29.322,"w":27.246,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_13_","EN":0},"TI":1502,"AM":0,"x":0.238,"y":30.01,"w":24.667,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_13_","EN":0},"TI":1503,"AM":0,"x":24.984,"y":30.01,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_13_","EN":0},"TI":1504,"AM":0,"x":51.281,"y":30.01,"w":21.471,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_13_","EN":0},"TI":1505,"AM":0,"x":72.937,"y":30.01,"w":27.246,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_14_","EN":0},"TI":1506,"AM":0,"x":0.321,"y":30.756,"w":24.667,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_14_","EN":0},"TI":1507,"AM":0,"x":25.003,"y":30.756,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_14_","EN":0},"TI":1508,"AM":0,"x":51.364,"y":30.733,"w":21.471,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_14_","EN":0},"TI":1509,"AM":0,"x":72.892,"y":30.756,"w":27.245,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_15_","EN":0},"TI":1510,"AM":0,"x":0.312,"y":31.554,"w":24.667,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_15_","EN":0},"TI":1511,"AM":0,"x":24.993,"y":31.554,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_15_","EN":0},"TI":1512,"AM":0,"x":51.29,"y":31.554,"w":21.471,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_15_","EN":0},"TI":1513,"AM":0,"x":72.946,"y":31.554,"w":27.246,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_16_","EN":0},"TI":1514,"AM":0,"x":0.331,"y":32.299,"w":24.668,"h":0.833,"TU":"(a) Qualifying person's first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_16_","EN":0},"TI":1515,"AM":0,"x":25.012,"y":32.299,"w":26.111,"h":0.833,"TU":"(a) Qualifying person's last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_16_","EN":0},"TI":1516,"AM":0,"x":51.309,"y":32.299,"w":21.471,"h":0.833,"TU":"(b). Qualifying person's social security number."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_16_","EN":0},"TI":1517,"AM":0,"x":72.965,"y":32.299,"w":27.246,"h":0.833,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL","EN":0},"TI":1518,"AM":1024,"x":87.438,"y":33.042,"w":12.293,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Title":"fdidepcare.pfm : default (Read Only)","Author":"shan1","Creator":"PScript5.dll Version 5.2.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131004161250-07'00'","ModDate":"D:20140108144634-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[],"VLines":[],"Fills":[{"x":0,"y":1.5,"w":36.499,"h":0.124,"oc":"#000000"},{"x":0,"y":3,"w":36.499,"h":0.124,"oc":"#000000"},{"x":0,"y":4.5,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":7.5,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":8.25,"w":15.78,"h":0.03,"oc":"#000000"},{"x":27.375,"y":8.25,"w":9.03,"h":0.03,"oc":"#000000"},{"x":0,"y":9,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":9.75,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":10.5,"w":13.155,"h":0.03,"oc":"#000000"},{"x":23.625,"y":10.5,"w":12.78,"h":0.03,"oc":"#000000"},{"x":0,"y":11.25,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":12,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":12.75,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":13.5,"w":13.155,"h":0.03,"oc":"#000000"},{"x":23.625,"y":13.5,"w":12.78,"h":0.03,"oc":"#000000"},{"x":0,"y":14.25,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":15,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":15.75,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":16.5,"w":13.155,"h":0.03,"oc":"#000000"},{"x":23.625,"y":16.5,"w":12.78,"h":0.03,"oc":"#000000"},{"x":0,"y":17.25,"w":36.499,"h":0.124,"oc":"#000000"},{"x":0,"y":18.75,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":21,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":21.75,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":22.5,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":23.25,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":24,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":24.75,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":25.5,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":26.25,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":27,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":27.75,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":28.5,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":29.25,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":30,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":30.75,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":31.5,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":32.25,"w":36.405,"h":0.03,"oc":"#000000"},{"x":0,"y":33.75,"w":36.499,"h":0.124,"oc":"#000000"},{"x":29.625,"y":0,"w":0.03,"h":3.03,"oc":"#000000"},{"x":13.125,"y":4.5,"w":0.03,"h":12.03,"oc":"#000000"},{"x":27.375,"y":4.5,"w":0.03,"h":3.03,"oc":"#000000"},{"x":31.875,"y":4.5,"w":0.03,"h":3.03,"oc":"#000000"},{"x":31.875,"y":8.25,"w":0.03,"h":8.28,"oc":"#000000"},{"x":27.375,"y":9,"w":0.03,"h":2.28,"oc":"#000000"},{"x":27.375,"y":12,"w":0.03,"h":2.28,"oc":"#000000"},{"x":18.563,"y":18.75,"w":0.03,"h":13.53,"oc":"#000000"},{"x":26.438,"y":18.75,"w":0.03,"h":13.53,"oc":"#000000"},{"x":9,"y":21,"w":0.03,"h":11.28,"oc":"#000000"}],"Texts":[{"x":-0.126,"y":-0.124,"w":5.002,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Form 2441","S":-1,"TS":[2,13.941,1,0]}]},{"x":8.499,"y":-0.124,"w":21.059,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Additional Form 2441 Information Statement","S":-1,"TS":[2,15.9773,1,0]}]},{"x":33.25,"y":-0.124,"w":2.224,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"2013","S":-1,"TS":[2,15.9773,1,0]}]},{"x":0.624,"y":0.6259999999999999,"w":5.78,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Line 1 and 2","S":-1,"TS":[2,13.941,1,0]}]},{"x":12.999,"y":0.6259999999999999,"w":0.85,"clr":0,"sw":null,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,10.9648,0,0]}]},{"x":13.422,"y":0.6259999999999999,"w":17.146,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":" Attach to return (after all IRS forms)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":-0.126,"y":1.376,"w":11.798,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Name(s) shown on return","S":-1,"TS":[2,10.9648,0,0]}]},{"x":29.499,"y":1.376,"w":13.449,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Your social security number","S":-1,"TS":[2,10.9648,1,0]}]},{"x":0.624,"y":3.6260000000000003,"w":26.839,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Additional Persons or Organizations Who Provided Care","S":-1,"TS":[2,13.941,1,0]}]},{"x":4.374,"y":4.376,"w":1.222,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"(a)","S":-1,"TS":[2,11.9829,1,0]}]},{"x":5.06,"y":4.376,"w":7.694,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":" Care provider's ","S":-1,"TS":[2,11.9829,0,0]}]},{"x":18.249,"y":4.376,"w":1.555,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"(b) ","S":-1,"TS":[2,11.9829,1,0]}]},{"x":19.126,"y":4.376,"w":3.748,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":27.249,"y":4.376,"w":1.5,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"(c) ","S":-1,"TS":[2,11.9829,1,0]}]},{"x":28.093,"y":4.376,"w":5.121,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Identifying ","S":-1,"TS":[2,11.9829,0,0]}]},{"x":31.749,"y":4.376,"w":1.555,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"(d) ","S":-1,"TS":[2,11.9829,1,0]}]},{"x":32.626,"y":4.376,"w":5.885,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Amount paid","S":-1,"TS":[2,11.9829,0,0]}]},{"x":6.249,"y":5.126,"w":2.587,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"name","S":-1,"TS":[2,11.9829,0,0]}]},{"x":13.374,"y":5.126,"w":23.917,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"(number, street, apt. no., city, state, and ZIP Code)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":28.376,"y":5.126,"w":3.842,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"number ","S":-1,"TS":[2,11.9829,0,0]}]},{"x":31.750999999999998,"y":5.126,"w":8.025,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"(see instructions)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":27.999,"y":5.876,"w":5.553,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"(SSN above","S":-1,"TS":[2,11.9829,0,0]}]},{"x":27.999,"y":6.626,"w":6.325,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"or EIN below)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":-0.126,"y":8.126,"w":7.714,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Last or Business","S":-1,"TS":[2,10.9648,0,0]}]},{"x":-0.126,"y":8.876,"w":2.026,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"First","S":-1,"TS":[2,11.9829,0,0]}]},{"x":12.999,"y":8.876,"w":3.748,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":-0.126,"y":9.626,"w":7.714,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Last or Business","S":-1,"TS":[2,10.9648,0,0]}]},{"x":12.999,"y":9.626,"w":1.768,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"City","S":-1,"TS":[2,11.9829,0,0]}]},{"x":19.374,"y":9.626,"w":2.435,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"State","S":-1,"TS":[2,11.9829,0,0]}]},{"x":22.374,"y":9.626,"w":1.574,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,11.9829,0,0]}]},{"x":-0.126,"y":10.376,"w":2.026,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"First","S":-1,"TS":[2,11.9829,0,0]}]},{"x":12.999,"y":10.376,"w":3.748,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":-0.126,"y":11.126,"w":7.714,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Last or Business","S":-1,"TS":[2,10.9648,0,0]}]},{"x":12.999,"y":11.126,"w":1.768,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"City","S":-1,"TS":[2,11.9829,0,0]}]},{"x":19.374,"y":11.126,"w":2.435,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"State","S":-1,"TS":[2,11.9829,0,0]}]},{"x":22.374,"y":11.126,"w":1.574,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,11.9829,0,0]}]},{"x":-0.126,"y":11.876,"w":2.026,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"First","S":-1,"TS":[2,11.9829,0,0]}]},{"x":12.999,"y":11.876,"w":3.748,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":-0.126,"y":12.626,"w":7.714,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Last or Business","S":-1,"TS":[2,10.9648,0,0]}]},{"x":12.999,"y":12.626,"w":1.768,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"City","S":-1,"TS":[2,11.9829,0,0]}]},{"x":19.374,"y":12.626,"w":2.435,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"State","S":-1,"TS":[2,11.9829,0,0]}]},{"x":22.374,"y":12.626,"w":1.574,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,11.9829,0,0]}]},{"x":-0.126,"y":13.376,"w":2.026,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"First","S":-1,"TS":[2,11.9829,0,0]}]},{"x":12.999,"y":13.376,"w":3.748,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":-0.126,"y":14.126,"w":7.714,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Last or Business","S":-1,"TS":[2,10.9648,0,0]}]},{"x":12.999,"y":14.126,"w":1.768,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"City","S":-1,"TS":[2,11.9829,0,0]}]},{"x":19.374,"y":14.126,"w":2.435,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"State","S":-1,"TS":[2,11.9829,0,0]}]},{"x":22.374,"y":14.126,"w":1.574,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,11.9829,0,0]}]},{"x":-0.126,"y":14.876,"w":2.026,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"First","S":-1,"TS":[2,11.9829,0,0]}]},{"x":12.999,"y":14.876,"w":3.748,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":-0.126,"y":15.626000000000001,"w":7.714,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Last or Business","S":-1,"TS":[2,10.9648,0,0]}]},{"x":12.999,"y":15.626000000000001,"w":1.768,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"City","S":-1,"TS":[2,11.9829,0,0]}]},{"x":19.374,"y":15.626000000000001,"w":2.435,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"State","S":-1,"TS":[2,11.9829,0,0]}]},{"x":22.374,"y":15.626000000000001,"w":1.574,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.624,"y":16.376,"w":24.866,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Total. Enter on an available line on Form 2441 line 1.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":14.907,"y":16.376,"w":41.517,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ","S":-1,"TS":[2,8.9885,0,0]}]},{"x":0.624,"y":17.876,"w":21.284,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Additional Qualifying Persons and Expenses","S":-1,"TS":[2,13.941,1,0]}]},{"x":27.249,"y":18.626,"w":10.615,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"(c) Qualified expenses","S":-1,"TS":[2,11.9829,1,0]}]},{"x":33.219,"y":18.626,"w":0.34,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":" ","S":-1,"TS":[2,8.9885,0,0]}]},{"x":33.346,"y":18.626,"w":1.975,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"you ","S":-1,"TS":[2,11.9829,0,0]}]},{"x":5.499,"y":19.376,"w":1.222,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"(a)","S":-1,"TS":[2,11.9829,1,0]}]},{"x":6.185,"y":19.376,"w":12.479,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":" Qualifying person's name ","S":-1,"TS":[2,11.9829,0,0]}]},{"x":19.374,"y":19.376,"w":1.277,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"(b)","S":-1,"TS":[2,11.9829,1,0]}]},{"x":20.094,"y":19.376,"w":9.552,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":" Qualifying person's ","S":-1,"TS":[2,11.9829,0,0]}]},{"x":26.875,"y":19.376,"w":13.769,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"incurred and paid in 2013 for ","S":-1,"TS":[2,11.9829,0,0]}]},{"x":3.249,"y":20.126,"w":2.026,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"First","S":-1,"TS":[2,11.9829,0,0]}]},{"x":12.999,"y":20.126,"w":1.934,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Last","S":-1,"TS":[2,11.9829,0,0]}]},{"x":19.374,"y":20.126,"w":10.426,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"social security number","S":-1,"TS":[2,11.9829,0,0]}]},{"x":26.875,"y":20.126,"w":14.24,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"the person listed in column (a)","S":-1,"TS":[2,11.9829,0,0]}]},{"x":0.624,"y":32.876,"w":24.866,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Total. Enter on an available line on Form 2441 line 2.","S":-1,"TS":[2,11.9829,0,0]}]},{"x":14.765,"y":32.876,"w":36.904,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ","S":-1,"TS":[2,8.9885,0,0]}]},{"x":-0.126,"y":7.3759999999999994,"w":2.026,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"First","S":-1,"TS":[2,11.9829,0,0]}]},{"x":12.999,"y":7.3759999999999994,"w":3.748,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Address","S":-1,"TS":[2,11.9829,0,0]}]},{"x":12.999,"y":8.126,"w":1.768,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"City","S":-1,"TS":[2,11.9829,0,0]}]},{"x":19.374,"y":8.126,"w":2.435,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"State","S":-1,"TS":[2,11.9829,0,0]}]},{"x":22.374,"y":8.126,"w":1.574,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[2,11.9829,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1729,"AM":1024,"x":0.043,"y":2.291,"w":29.599,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1730,"AM":1024,"x":29.685,"y":2.297,"w":6.795,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_1_","EN":0},"TI":1731,"AM":0,"TU":"(a) FIRST NAME.","x":1.18,"y":7.552,"w":11.895,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_1_","EN":0},"TI":1732,"AM":0,"TU":"(b). Address.","x":15.335,"y":7.552,"w":11.97,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_1_","EN":0},"TI":1733,"AM":0,"TU":"(c) SSN.","x":27.419,"y":7.575,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_1_","EN":0},"TI":1734,"AM":0,"TU":"(d). Amount paid (see instructions).","x":31.884,"y":7.559,"w":4.47,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_1_","EN":0},"TI":1735,"AM":0,"TU":"(a) Last name or Business name.","x":3.887,"y":8.303,"w":9.188,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_1_","EN":0},"TI":1736,"AM":0,"TU":"CITY","x":14.297,"y":8.317,"w":5.222,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_1_","EN":0},"TI":1737,"AM":0,"TU":"State","x":21.172,"y":8.238,"w":0.909,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AL"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_1_","EN":0},"TI":1738,"AM":0,"TU":"ZIP","x":23.57,"y":8.335,"w":3.735,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_1_","EN":0},"TI":1739,"AM":0,"TU":"(c). EIN.","x":27.419,"y":8.298,"w":4.433,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_2_","EN":0},"TI":1740,"AM":0,"TU":"(a) FIRST NAME.","x":1.225,"y":9.061,"w":11.895,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_2_","EN":0},"TI":1741,"AM":0,"TU":"(b). Address.","x":15.38,"y":9.061,"w":11.97,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_2_","EN":0},"TI":1742,"AM":0,"TU":"(c) SSN.","x":27.465,"y":9.084,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_2_","EN":0},"TI":1743,"AM":0,"TU":"(d). Amount paid (see instructions).","x":31.929,"y":9.067,"w":4.47,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_2_","EN":0},"TI":1744,"AM":0,"TU":"(a) Last name or Business name.","x":3.932,"y":9.811,"w":9.188,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_2_","EN":0},"TI":1745,"AM":0,"TU":"CITY","x":14.342,"y":9.826,"w":5.222,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_2_","EN":0},"TI":1746,"AM":0,"TU":"State","x":21.017,"y":9.768,"w":0.909,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AL"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_2_","EN":0},"TI":1747,"AM":0,"TU":"ZIP","x":23.587,"y":9.843,"w":3.735,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_2_","EN":0},"TI":1748,"AM":0,"TU":"(c). EIN.","x":27.465,"y":9.806,"w":4.432,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_3_","EN":0},"TI":1749,"AM":0,"TU":"(a) FIRST NAME.","x":1.272,"y":10.578,"w":11.895,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_3_","EN":0},"TI":1750,"AM":0,"TU":"(b). Address.","x":15.427,"y":10.578,"w":11.97,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_3_","EN":0},"TI":1751,"AM":0,"TU":"(c) SSN.","x":27.512,"y":10.601,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_3_","EN":0},"TI":1752,"AM":0,"TU":"(d). Amount paid (see instructions).","x":31.976,"y":10.584,"w":4.47,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_3_","EN":0},"TI":1753,"AM":0,"TU":"(a) Last name or Business name.","x":3.98,"y":11.328,"w":9.187,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_3_","EN":0},"TI":1754,"AM":0,"TU":"CITY","x":14.39,"y":11.343,"w":5.222,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_3_","EN":0},"TI":1755,"AM":0,"TU":"State","x":21.142,"y":11.229,"w":0.909,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AL"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_3_","EN":0},"TI":1756,"AM":0,"TU":"ZIP","x":23.635,"y":11.306,"w":3.735,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_3_","EN":0},"TI":1757,"AM":0,"TU":"(c). EIN.","x":27.512,"y":11.324,"w":4.433,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_4_","EN":0},"TI":1758,"AM":0,"TU":"(a) FIRST NAME.","x":1.225,"y":12.056,"w":11.895,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_4_","EN":0},"TI":1759,"AM":0,"TU":"(b). Address.","x":15.38,"y":12.056,"w":11.97,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_4_","EN":0},"TI":1760,"AM":0,"TU":"(c) SSN.","x":27.465,"y":12.078,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_4_","EN":0},"TI":1761,"AM":0,"TU":"(d). Amount paid (see instructions).","x":31.929,"y":12.039,"w":4.47,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_4_","EN":0},"TI":1762,"AM":0,"TU":"(a) Last name or Business name.","x":3.932,"y":12.806,"w":9.188,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_4_","EN":0},"TI":1763,"AM":0,"TU":"CITY","x":14.342,"y":12.82,"w":5.222,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_4_","EN":0},"TI":1764,"AM":0,"TU":"State","x":21.111,"y":12.811,"w":0.909,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AL"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_4_","EN":0},"TI":1765,"AM":0,"TU":"ZIP","x":23.587,"y":12.838,"w":3.735,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_4_","EN":0},"TI":1766,"AM":0,"TU":"(c). EIN.","x":27.465,"y":12.801,"w":4.432,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_5_","EN":0},"TI":1767,"AM":0,"TU":"(a) FIRST NAME.","x":1.252,"y":13.58,"w":11.895,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_5_","EN":0},"TI":1768,"AM":0,"TU":"(b). Address.","x":15.407,"y":13.58,"w":11.97,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_5_","EN":0},"TI":1769,"AM":0,"TU":"(c) SSN.","x":27.492,"y":13.603,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_5_","EN":0},"TI":1770,"AM":0,"TU":"(d). Amount paid (see instructions).","x":31.957,"y":13.586,"w":4.47,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_5_","EN":0},"TI":1771,"AM":0,"TU":"(a) Last name or Business name.","x":3.96,"y":14.33,"w":9.188,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_5_","EN":0},"TI":1772,"AM":0,"TU":"CITY","x":14.37,"y":14.345,"w":5.222,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_5_","EN":0},"TI":1773,"AM":0,"TU":"State","x":21.098,"y":14.289,"w":0.909,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AL"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_5_","EN":0},"TI":1774,"AM":0,"TU":"ZIP","x":23.572,"y":14.328,"w":3.735,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_5_","EN":0},"TI":1775,"AM":0,"TU":"(c). EIN.","x":27.492,"y":14.326,"w":4.433,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A_6_","EN":0},"TI":1776,"AM":0,"TU":"(a) FIRST NAME.","x":1.21,"y":15.097,"w":11.895,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B_6_","EN":0},"TI":1777,"AM":0,"TU":"(b). Address.","x":15.364,"y":15.097,"w":11.97,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"PROV_L1C_6_","EN":0},"TI":1778,"AM":0,"TU":"(c) SSN.","x":27.449,"y":15.12,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"PROV_L1D_6_","EN":0},"TI":1779,"AM":0,"TU":"(d). Amount paid (see instructions).","x":31.914,"y":15.104,"w":4.47,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1A2_6_","EN":0},"TI":1780,"AM":0,"TU":"(a) Last name or Business name.","x":3.917,"y":15.847,"w":9.187,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_L1B2_6_","EN":0},"TI":1781,"AM":0,"TU":"CITY","x":14.327,"y":15.862,"w":5.222,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"PROV_ST_6_","EN":0},"TI":1782,"AM":0,"TU":"State","x":21.084,"y":15.749,"w":0.909,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AK"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"PROV_ZIP_6_","EN":0},"TI":1783,"AM":0,"TU":"ZIP","x":23.615,"y":15.86,"w":3.735,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PROV_L1C2_6_","EN":0},"TI":1784,"AM":0,"TU":"(c). EIN.","x":27.449,"y":15.843,"w":4.433,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL2","EN":0},"TI":1785,"AM":1024,"x":32.041,"y":16.544,"w":4.47,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_1_","EN":0},"TI":1786,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.015,"y":21.052,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_1_","EN":0},"TI":1787,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.053,"y":21.052,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_1_","EN":0},"TI":1788,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.615,"y":21.052,"w":7.808,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_1_","EN":0},"TI":1789,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a).","x":26.49,"y":21.052,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_2_","EN":0},"TI":1790,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.063,"y":21.798,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_2_","EN":0},"TI":1791,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.059,"y":21.798,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_2_","EN":0},"TI":1792,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.622,"y":21.798,"w":7.807,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_2_","EN":0},"TI":1793,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.497,"y":21.798,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_3_","EN":0},"TI":1794,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.018,"y":22.596,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_3_","EN":0},"TI":1795,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.056,"y":22.596,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_3_","EN":0},"TI":1796,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.618,"y":22.596,"w":7.808,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_3_","EN":0},"TI":1797,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.493,"y":22.596,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_4_","EN":0},"TI":1798,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.025,"y":23.342,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_4_","EN":0},"TI":1799,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.063,"y":23.342,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_4_","EN":0},"TI":1800,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.625,"y":23.342,"w":7.808,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_4_","EN":0},"TI":1801,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.5,"y":23.342,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_5_","EN":0},"TI":1802,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.063,"y":24.029,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_5_","EN":0},"TI":1803,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.1,"y":24.029,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_5_","EN":0},"TI":1804,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.663,"y":24.029,"w":7.807,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_5_","EN":0},"TI":1805,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.538,"y":24.029,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_6_","EN":0},"TI":1806,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.069,"y":24.775,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_6_","EN":0},"TI":1807,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.107,"y":24.775,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_6_","EN":0},"TI":1808,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.669,"y":24.775,"w":7.807,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_6_","EN":0},"TI":1809,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.544,"y":24.775,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_7_","EN":0},"TI":1810,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.089,"y":25.573,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_7_","EN":0},"TI":1811,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.103,"y":25.573,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_7_","EN":0},"TI":1812,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.666,"y":25.573,"w":7.808,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_7_","EN":0},"TI":1813,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.541,"y":25.573,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_8_","EN":0},"TI":1814,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.073,"y":26.319,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_8_","EN":0},"TI":1815,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.11,"y":26.319,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_8_","EN":0},"TI":1816,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.673,"y":26.319,"w":7.808,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_8_","EN":0},"TI":1817,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.548,"y":26.319,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_9_","EN":0},"TI":1818,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.063,"y":27.033,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_9_","EN":0},"TI":1819,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.037,"y":27.033,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_9_","EN":0},"TI":1820,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.6,"y":27.033,"w":7.807,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_9_","EN":0},"TI":1821,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.475,"y":27.033,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_10_","EN":0},"TI":1822,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.069,"y":27.779,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_10_","EN":0},"TI":1823,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.044,"y":27.779,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_10_","EN":0},"TI":1824,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.607,"y":27.779,"w":7.807,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_10_","EN":0},"TI":1825,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.482,"y":27.779,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_11_","EN":0},"TI":1826,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.066,"y":28.577,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_11_","EN":0},"TI":1827,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.041,"y":28.577,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_11_","EN":0},"TI":1828,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.603,"y":28.577,"w":7.808,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_11_","EN":0},"TI":1829,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.478,"y":28.577,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_12_","EN":0},"TI":1830,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.073,"y":29.322,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_12_","EN":0},"TI":1831,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.048,"y":29.322,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_12_","EN":0},"TI":1832,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.61,"y":29.322,"w":7.808,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_12_","EN":0},"TI":1833,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.485,"y":29.322,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_13_","EN":0},"TI":1834,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.087,"y":30.01,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_13_","EN":0},"TI":1835,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.085,"y":30.01,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_13_","EN":0},"TI":1836,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.648,"y":30.01,"w":7.807,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_13_","EN":0},"TI":1837,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.522,"y":30.01,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_14_","EN":0},"TI":1838,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.117,"y":30.756,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_14_","EN":0},"TI":1839,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.092,"y":30.756,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_14_","EN":0},"TI":1840,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.678,"y":30.733,"w":7.808,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_14_","EN":0},"TI":1841,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.506,"y":30.756,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_15_","EN":0},"TI":1842,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.113,"y":31.554,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_15_","EN":0},"TI":1843,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.088,"y":31.554,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_15_","EN":0},"TI":1844,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.651,"y":31.554,"w":7.807,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_15_","EN":0},"TI":1845,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.526,"y":31.554,"w":9.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2F_16_","EN":0},"TI":1846,"AM":0,"TU":"(a) Qualifying person's first name.","x":0.12,"y":32.299,"w":8.97,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"QUAL_L2L_16_","EN":0},"TI":1847,"AM":0,"TU":"(a) Qualifying person's last name.","x":9.095,"y":32.299,"w":9.495,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"QUAL_L2SSN_16_","EN":0},"TI":1848,"AM":0,"TU":"(b). Qualifying person's social security number.","x":18.658,"y":32.299,"w":7.808,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUAL_L2_16_","EN":0},"TI":1849,"AM":0,"TU":"(c). Qualifying expenses you incurred and paid in 2013 for the person listed in column (a)","x":26.533,"y":32.299,"w":9.908,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL","EN":0},"TI":1850,"AM":1024,"x":31.796,"y":33.042,"w":4.47,"h":0.833}],"Boxsets":[]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F2555EZ.json b/test/data/fd/form/F2555EZ.json index 309fbb56..21592b0e 100755 --- a/test/data/fd/form/F2555EZ.json +++ b/test/data/fd/form/F2555EZ.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":5.25,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.995,"y":5.25,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.064,"y":3,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.064,"y":5.25,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":6.75,"w":1.125,"l":74.336},{"oc":"#221f1f","x":80.395,"y":6.75,"w":1.125,"l":18.648},{"oc":"#221f1f","x":6.145,"y":12,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":14.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":45.745,"y":19.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":80.395,"y":19.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":58.12,"y":26.25,"w":0.75,"l":18.648},{"oc":"#221f1f","x":84.107,"y":26.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.145,"y":30,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":32.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":35.25,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.157,"y":35.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.402,"y":40.406,"w":0.75,"l":26.073},{"oc":"#221f1f","x":32.39,"y":40.406,"w":0.75,"l":33.498},{"oc":"#221f1f","x":65.803,"y":40.406,"w":0.75,"l":33.498},{"oc":"#221f1f","x":23.727,"y":43.406,"w":0.75,"l":70.624},{"oc":"#221f1f","x":70.753,"y":44.156,"w":0.75,"l":28.548},{"oc":"#221f1f","x":68.278,"y":46.406,"w":0.75,"l":31.023},{"oc":"#221f1f","x":53.428,"y":47.156,"w":0.75,"l":45.874},{"oc":"#221f1f","x":11.352,"y":47.906,"w":0.75,"l":87.949},{"oc":"#221f1f","x":6.402,"y":48.656,"w":1.5,"l":48.349},{"oc":"#221f1f","x":54.665,"y":48.656,"w":1.5,"l":28.548},{"oc":"#221f1f","x":83.128,"y":48.656,"w":1.5,"l":16.173},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":2.081},{"oc":"#221f1f","x":0.086,"y":48.801,"w":0.75,"l":2.081}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":1.531},{"oc":"#221f1f","x":21.038,"y":3.734,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.15,"y":2.984,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.15,"y":3.734,"w":1.5,"l":1.547},{"oc":"#221f1f","x":80.438,"y":5.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":32.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":32.098,"y":35.254,"w":0.75,"l":4.96},{"oc":"#221f1f","x":65.613,"y":35.232,"w":0.75,"l":5.098},{"oc":"#221f1f","x":2.167,"y":48.801,"w":0.75,"l":0.668},{"oc":"#221f1f","x":0.086,"y":48.801,"w":0.75,"l":0.668}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":12.688,"w":6.875,"h":0.938,"clr":-1},{"oc":"#221f1f","x":6.188,"y":30.688,"w":6.875,"h":0.938,"clr":-1},{"oc":"#221f1f","x":0.172,"y":48.832,"w":1.909,"h":0.605,"clr":-1}],"Texts":[{"x":32.158,"y":37.818,"w":23.35,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,13,0,0]}]},{"x":33.523,"y":34.328,"w":35.010000000000005,"clr":0,"A":"left","R":[{"T":"Country","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":2.491,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.415,"y":2.491,"w":3.835,"clr":-1,"A":"left","R":[{"T":"2555-EZ","S":-1,"TS":[0,22,1,0]}]},{"oc":"#221f1f","x":5.938,"y":3.5919999999999996,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.102,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":18.33,"y":4.102,"w":2.186,"clr":-1,"A":"left","R":[{"T":"%20(99)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":29.327,"y":2.446,"w":16.394000000000002,"clr":-1,"A":"left","R":[{"T":"Foreign%20Earned%20Income%20Exclusion%20","S":-1,"TS":[0,22,1,0]}]},{"oc":"#221f1f","x":44.81,"y":3.4640000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":46.227,"y":3.558,"w":10.169000000000004,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":21.553,"y":4.085,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":83.135,"y":4.178,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.741,"y":1.972,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.857,"y":3.393,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.565,"y":3.373,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.756,"y":3.875,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.756,"y":4.258,"w":6.891,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":93.734,"y":4.259,"w":2.112,"clr":-1,"A":"left","R":[{"T":"34A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":4.982,"w":12.671000000000005,"clr":-1,"A":"left","R":[{"T":"Name%20shown%20on%20Form%201040%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.875,"y":4.982,"w":13.727000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":-1,"TS":[0,10.6,1,0]}]},{"oc":"#221f1f","x":7.506,"y":7.885,"w":6.780000000000001,"clr":-1,"A":"left","R":[{"T":"You%20May%20Use%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":9.055,"y":8.785,"w":5.390000000000001,"clr":-1,"A":"left","R":[{"T":"This%20Form%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":10.829,"y":9.685,"w":3.389,"clr":-1,"A":"left","R":[{"T":"If%20You%3A%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":22.025,"y":7.339,"w":17.241000000000007,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Are%20a%20U.S.%20citizen%20or%20a%20resident%20alien.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.025,"y":8.089,"w":20.296000000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Earned%20wages%2Fsalaries%20in%20a%20foreign%20country.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.025,"y":8.902,"w":20.172999999999984,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Had%20total%20foreign%20earned%20income%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.4,"y":9.59,"w":8.262000000000002,"clr":-1,"A":"left","R":[{"T":"of%20%2497%2C600%20or%20less.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.025,"y":10.389,"w":20.52,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Are%20filing%20a%20calendar%20year%20return%20that%20%20covers%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.4,"y":11.014,"w":8.856000000000002,"clr":-1,"A":"left","R":[{"T":"a%2012-month%20period.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.031,"y":8.785,"w":4.7219999999999995,"clr":-1,"A":"left","R":[{"T":"And%20You%3A%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":69.05,"y":7.339,"w":18.061999999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Do%20not%20have%20self-employment%20income.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.05,"y":8.375,"w":19.153,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Do%20not%20have%20business%2Fmoving%20expenses.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.05,"y":9.406,"w":15.856,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Do%20not%20claim%20the%20foreign%20housing%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.425,"y":10.094,"w":10.724,"clr":-1,"A":"left","R":[{"T":"exclusion%20or%20deduction.%20","S":3,"TS":[0,12,0,0]}]},{"x":6.74,"y":12.661,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":16.25,"y":12.57,"w":32.39900000000001,"clr":-1,"A":"left","R":[{"T":"Tests%20To%20See%20If%20You%20Can%20Take%20the%20Foreign%20Earned%20Income%20Exclusion%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":7.552,"y":14.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":14.839,"w":12.726000000000003,"clr":-1,"A":"left","R":[{"T":"Bona%20Fide%20Residence%20Test%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.413,"y":15.651,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":15.651,"w":47.65399999999996,"clr":-1,"A":"left","R":[{"T":"Were%20you%20a%20bona%20fide%20resident%20of%20a%20foreign%20country%20or%20countries%20for%20a%20period%20that%20includes%20an%20entire%20tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.881,"y":16.339,"w":8.390000000000002,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.494,"y":16.339,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.675,"y":16.339,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.735,"y":16.339,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.089,"w":35.305,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20answered%20%E2%80%9CYes%2C%E2%80%9D%20you%20meet%20this%20test.%20Fill%20in%20line%201b%20and%20then%20go%20to%20line%203.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":18.558,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":18.527,"w":20.985999999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20date%20your%20bona%20fide%20residence%20began%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.35,"y":18.433,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":57.913,"y":18.527,"w":13.448000000000002,"clr":-1,"A":"left","R":[{"T":"%2C%20and%20ended%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.715,"y":18.433,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":95.21,"y":18.558,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":20.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":20.089,"w":11.395000000000003,"clr":-1,"A":"left","R":[{"T":"Physical%20Presence%20Test%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.414,"y":20.839,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":20.839,"w":42.357999999999976,"clr":-1,"A":"left","R":[{"T":"Were%20you%20physically%20present%20in%20a%20foreign%20country%20or%20countries%20for%20at%20least%20330%20full%20days%20during%E2%80%94%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":22.104,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7B","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":12.125,"y":22.339,"w":29.82300000000001,"clr":-1,"A":"left","R":[{"T":"any%20other%20period%20of%2012%20months%20in%20a%20row%20starting%20or%20ending%20in%202013%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.325,"y":22.104,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":59.563,"y":21.745,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.675,"y":21.569,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.862,"y":21.569,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.092,"w":35.305,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20answered%20%E2%80%9CYes%2C%E2%80%9D%20you%20meet%20this%20test.%20Fill%20in%20line%202b%20and%20then%20go%20to%20line%203.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.252,"y":24.592,"w":15.317000000000005,"clr":-1,"A":"left","R":[{"T":"Bona%20Fide%20Residence%20Test%20above.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.402,"y":25.308,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":25.277,"w":29.472000000000012,"clr":-1,"A":"left","R":[{"T":"The%20physical%20presence%20test%20is%20based%20on%20the%2012-month%20period%20from%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.476,"y":25.183,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.647,"y":25.277,"w":3.7420000000000004,"clr":-1,"A":"left","R":[{"T":"through%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.435,"y":25.183,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":95.21,"y":25.308,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.553,"y":26.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":26.902,"w":7.6690000000000005,"clr":-1,"A":"left","R":[{"T":"Tax%20Home%20Test.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.425,"y":26.902,"w":39.581,"clr":-1,"A":"left","R":[{"T":"Was%20your%20tax%20home%20in%20a%20foreign%20country%20or%20countries%20throughout%20your%20period%20of%20bona%20fide%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":27.589,"w":23.298000000000005,"clr":-1,"A":"left","R":[{"T":"residence%20or%20physical%20presence%2C%20whichever%20applies%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.199,"y":27.589,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.487,"y":27.589,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.862,"y":27.589,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.339,"w":44.636999999999965,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20answered%20%E2%80%9CYes%2C%E2%80%9D%20you%20can%20take%20the%20exclusion.%20Complete%20Part%20II%20below%20and%20then%20go%20to%20page%202.%20","S":3,"TS":[0,12,0,0]}]},{"x":6.436,"y":30.661,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":16.25,"y":30.57,"w":9.780000000000003,"clr":-1,"A":"left","R":[{"T":"General%20Information%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":7.484,"y":32.077,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.344,"y":32.077,"w":18.669000000000004,"clr":-1,"A":"left","R":[{"T":"%20%20Your%20foreign%20address%20(including%20country)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.638,"y":32.077,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.498,"y":32.077,"w":8.224000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20Your%20occupation%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.484,"y":35.05,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.344,"y":35.05,"w":8.596000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20Employer%E2%80%99s%20name%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.613,"y":35.077,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.333,"y":35.077,"w":20.225,"clr":-1,"A":"left","R":[{"T":"Employer%E2%80%99s%20U.S.%20address%20(including%20ZIP%20code)","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":66.025,"y":35.077,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.885,"y":35.077,"w":13.076000000000006,"clr":-1,"A":"left","R":[{"T":"%20%20Employer%E2%80%99s%20foreign%20address%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.811,"y":40.358,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.146,"y":40.245,"w":15.856000000000003,"clr":-1,"A":"left","R":[{"T":"Employer%20is%20(check%20any%20that%20apply)%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.671,"y":41.107,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.146,"y":40.995,"w":7.372,"clr":-1,"A":"left","R":[{"T":"A%20U.S.%20business%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.697,"y":40.995,"w":46.654999999999966,"clr":-1,"A":"left","R":[{"T":"...................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.67,"y":41.858,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.145,"y":41.745,"w":8.538,"clr":-1,"A":"left","R":[{"T":"A%20foreign%20business%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.758,"y":41.745,"w":45.32199999999997,"clr":-1,"A":"left","R":[{"T":"..................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.67,"y":42.464,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.145,"y":42.433,"w":6.760000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20(specify)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.602,"y":42.339,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.95,"y":43.214,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.67,"y":43.214,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.145,"y":43.183,"w":37.026999999999994,"clr":-1,"A":"left","R":[{"T":"If%20you%20previously%20filed%20Form%202555%20or%202555-EZ%2C%20enter%20the%20last%20year%20you%20filed%20the%20form.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.421,"y":43.089,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.67,"y":44.108,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.145,"y":43.995,"w":28.414999999999992,"clr":-1,"A":"left","R":[{"T":"If%20you%20did%20not%20previously%20file%20Form%202555%20or%202555-EZ%2C%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.099,"y":43.902,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.095,"y":43.995,"w":10.743000000000006,"clr":-1,"A":"left","R":[{"T":"and%20go%20to%20line%2011a%20now.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.671,"y":44.858,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.146,"y":44.745,"w":27.578000000000003,"clr":-1,"A":"left","R":[{"T":"Have%20you%20ever%20revoked%20the%20foreign%20earned%20income%20exclusion%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.696,"y":44.745,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.131,"y":44.745,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.623,"y":44.745,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.671,"y":45.464,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.145,"y":45.433,"w":35.98099999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20%E2%80%9CYes%2C%E2%80%9D%20enter%20the%20tax%20year%20for%20which%20the%20revocation%20was%20effective.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.803,"y":45.339,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.95,"y":46.214,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"11a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.145,"y":46.183,"w":26.100000000000005,"clr":-1,"A":"left","R":[{"T":"List%20your%20tax%20home(s)%20during%202013%20and%20date(s)%20established.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.518,"y":46.089,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.67,"y":47.745,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.145,"y":47.745,"w":19.390000000000008,"clr":-1,"A":"left","R":[{"T":"Of%20what%20country%20are%20you%20a%20citizen%2Fnational%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.139,"y":47.652,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.195,"y":48.513,"w":33.230999999999995,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20the%20Form%201040%20instructions.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":64.064,"y":48.531,"w":7.966000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013272W%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.67,"y":48.478,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.147,"y":48.478,"w":4.1129999999999995,"clr":-1,"A":"left","R":[{"T":"2555-EZ%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.375,"y":48.478,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":7.9030000000000005,"y":34.24,"w":17.22,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"x":59.434,"y":34.328,"w":61.69000000000001,"clr":0,"A":"left","R":[{"T":"Country%20Code","S":-1,"TS":[0,13,0,0]}]},{"x":7.717,"y":32.845,"w":36.68,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[0,13,0,0]}]},{"x":45.874,"y":33.08,"w":36.68,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[0,13,0,0]}]},{"x":65.599,"y":35.658,"w":21.119999999999997,"clr":0,"A":"left","R":[{"T":"Addr","S":-1,"TS":[0,13,0,0]}]},{"x":65.694,"y":36.362,"w":26.68,"clr":0,"A":"left","R":[{"T":"Addr2","S":-1,"TS":[0,13,0,0]}]},{"x":65.782,"y":37.053,"w":17.22,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"x":65.861,"y":37.627,"w":20.560000000000002,"clr":0,"A":"left","R":[{"T":"Prov","S":-1,"TS":[0,13,0,0]}]},{"x":65.805,"y":38.377,"w":27.79,"clr":0,"A":"left","R":[{"T":"Postal","S":-1,"TS":[0,13,0,0]}]},{"x":65.542,"y":39.303,"w":35.010000000000005,"clr":0,"A":"left","R":[{"T":"Country","S":-1,"TS":[0,13,0,0]}]},{"x":32.234,"y":36.307,"w":21.119999999999997,"clr":0,"A":"left","R":[{"T":"Addr","S":-1,"TS":[0,13,0,0]}]},{"x":32.266,"y":37.147,"w":17.22,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"x":32.441,"y":38.604,"w":15.56,"clr":0,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":22.584,"y":4.178,"w":43.78999999999997,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%202555-EZ%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform2555ez","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":17.839,"w":48.84299999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20answered%20%E2%80%9CNo%2C%E2%80%9D%20you%20do%20not%20meet%20this%20test.%20Go%20to%20line%202%20to%20see%20if%20you%20meet%20the%20Physical%20Presence%20Test.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":21.652,"w":3.3910000000000005,"clr":-1,"A":"left","R":[{"T":"2013%20or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.904,"w":45.58599999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20answered%20%E2%80%9CNo%2C%E2%80%9D%20you%20do%20not%20meet%20this%20test.%20You%20cannot%20take%20the%20exclusion%20unless%20you%20meet%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.998,"w":34.08,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20answered%20%E2%80%9CNo%2C%E2%80%9D%20you%20cannot%20take%20the%20exclusion.%20Do%20not%20file%20this%20form.%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1895,"AM":1024,"x":6.229,"y":5.813,"w":74.085,"h":0.914,"TU":"Name shown on Form 1040"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1896,"AM":1024,"x":80.582,"y":5.813,"w":18.397,"h":0.914,"TU":"Your social security number"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L1BBEG","EN":0},"TI":1899,"AM":0,"x":45.511,"y":18.78,"w":11.531,"h":0.833,"TU":"Line 1b. Enter the date your bona fide residence began.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L1BEND","EN":0},"TI":1900,"AM":0,"x":80.79,"y":18.84,"w":11.241,"h":0.833,"TU":"Line 1b. Enter date residence ended (see instructions)","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2BFROM","EN":0},"TI":1903,"AM":0,"x":58.121,"y":25.484,"w":15.679,"h":0.833,"TU":"Line 2b. The physical presence test is based on the 12-month period from","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2BTHRU","EN":0},"TI":1904,"AM":0,"x":84.109,"y":25.582,"w":11.241,"h":0.833,"TU":"Line 2b. Through,","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"H29","EN":0},"TI":1907,"AM":0,"x":15.48,"y":32.97,"w":24.454,"h":0.864,"TU":"Line 4. Your foreign address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L4ADDR1","EN":0},"TI":1908,"AM":0,"x":53.892,"y":33.006,"w":23.624,"h":0.854,"TU":"Line 4. Foreign address continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFCITY","EN":0},"TI":1909,"AM":0,"x":11.305,"y":34.293,"w":22.12,"h":0.868,"TU":"LIne 4. City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFCNTRY","EN":0},"TI":1910,"AM":0,"x":39.991,"y":34.252,"w":19.64,"h":0.84,"TU":"Line 4. Country."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"POD","EN":0},"TI":1911,"AM":0,"x":70.714,"y":34.313,"w":8.386,"h":0.84,"TU":"Line 4. Foreign country code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"YOCC","EN":0},"TI":1912,"AM":0,"x":80.545,"y":34.276,"w":15.945,"h":0.959,"TU":"Line 5. Your occupation."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6NAME1","EN":0},"TI":1913,"AM":0,"x":7.283,"y":36.058,"w":24.002,"h":0.91,"TU":"Line 6. Employer's name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7ADDR1","EN":0},"TI":1914,"AM":0,"x":37.226,"y":36.261,"w":23.453,"h":0.837,"TU":"Line 7. Employer's U.S. address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8ADDR1","EN":0},"TI":1915,"AM":0,"x":70.676,"y":35.915,"w":22.415,"h":0.833,"TU":"Line 8. Employer's foreign address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6NAME2","EN":0},"TI":1916,"AM":0,"x":7.189,"y":37.104,"w":23.964,"h":1.05,"TU":"Line 6. Employer's name continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8ADDR2","EN":0},"TI":1917,"AM":0,"x":70.764,"y":36.526,"w":22.273,"h":0.833,"TU":"Line 8. Employer's foreign address continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7ADDR3","EN":0},"TI":1918,"AM":0,"x":37.105,"y":37.186,"w":23.183,"h":0.862,"TU":"Line 7. City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LCITY","EN":0},"TI":1919,"AM":0,"x":70.832,"y":37.175,"w":22.232,"h":0.833,"TU":"Line 8. City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7ST","EN":0},"TI":1920,"AM":0,"x":37.24,"y":38.133,"w":3.376,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LPROV","EN":0},"TI":1921,"AM":0,"x":71.126,"y":37.885,"w":21.99,"h":0.833,"TU":"Line 8. Providence."},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"L7ZIP","EN":0},"TI":1922,"AM":0,"x":37.219,"y":38.936,"w":9.033,"h":0.833,"TU":"Line 7. Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LPOST","EN":0},"TI":1923,"AM":0,"x":72.239,"y":38.825,"w":12.405,"h":0.833,"TU":"Line 8. Foreign Postal code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LCOUNTRY","EN":0},"TI":1924,"AM":0,"x":72.019,"y":39.553,"w":12.716,"h":0.833,"TU":"Line 8. Country."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L9C","EN":0},"TI":1927,"AM":0,"x":23.638,"y":42.609,"w":53.22,"h":0.833,"TU":"Line 9c Other (specify)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":1929,"AM":0,"x":70.663,"y":43.419,"w":28.566,"h":0.833,"TU":"Line 10a. If you previously filed Form 2555 or 2555-EZ, enter the last year you filed the form.","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L10DTX","EN":0},"TI":1933,"AM":0,"x":68.68,"y":45.611,"w":12.409,"h":0.833,"PL":{"V":[" ","2012","2011","2010","2009","2008","2007","2006","2005","2004","2003","2002","2001","2000","1999","1998","1997","1996","1995","1994","1993","1992","1991","1990","1989","1988","1987","1986","1985","1984","1983","1982"],"D":["no entry","2012","2011","2010","2009","2008","2007","2006","2005","2004","2003","2002","2001","2000","1999","1998","1997","1996","1995","1994","1993","1992","1991","1990","1989","1988","1987","1986","1985","1984","1983","1982"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A115_L11A1_1_","EN":0},"TI":1934,"AM":0,"x":11.349,"y":47.097,"w":53.199,"h":0.833,"TU":"Line 11a. List your tax home(s) during 2013."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A115_L11A2_1_","EN":0},"TI":1935,"AM":0,"x":66.293,"y":47.169,"w":32.935,"h":0.833,"TU":"Line 11a. List date(s) established.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":1936,"AM":0,"x":42.926,"y":47.938,"w":12.204,"h":0.833,"TU":"Line 11b. Of what country are you a citizen/national?"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1AYES","EN":0},"TI":1897,"AM":0,"x":87.602,"y":16.346,"w":2.264,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1ANO","EN":0},"TI":1898,"AM":0,"x":93.741,"y":16.406,"w":1.767,"h":0.833,"checked":false}],"id":{"Id":"A6RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX2AYES","EN":0},"TI":1901,"AM":0,"x":87.447,"y":21.595,"w":2.253,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX2ANO","EN":0},"TI":1902,"AM":0,"x":93.715,"y":21.659,"w":2.098,"h":0.833,"checked":false}],"id":{"Id":"A12RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3YES","EN":0},"TI":1905,"AM":0,"x":87.564,"y":27.669,"w":1.932,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3NO","EN":0},"TI":1906,"AM":0,"x":94.073,"y":27.688,"w":1.932,"h":0.833,"checked":false}],"id":{"Id":"A16RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9A","EN":0},"TI":1925,"AM":0,"x":95.83,"y":41.125,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9B","EN":0},"TI":1926,"AM":0,"x":95.888,"y":41.847,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9C","EN":0},"TI":1928,"AM":0,"x":95.946,"y":42.627,"w":1.508,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX10B","EN":0},"TI":1930,"AM":0,"x":57.566,"y":44.033,"w":1.973,"h":0.87}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX10CYES","EN":0},"TI":1931,"AM":0,"x":86.819,"y":44.815,"w":1.789,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX10CNO","EN":0},"TI":1932,"AM":0,"x":92.932,"y":44.844,"w":1.646,"h":0.833,"checked":false}],"id":{"Id":"A50RB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":3,"w":1.5,"l":12.461},{"oc":"#221f1f","x":18.52,"y":3,"w":1.5,"l":80.524},{"oc":"#221f1f","x":6.145,"y":3,"w":1.5,"l":92.899},{"oc":"#221f1f","x":6.145,"y":5.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":6.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.657,"y":6.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.17,"y":6.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.445,"y":6.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":6.145,"y":8.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.657,"y":8.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.17,"y":8.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.445,"y":8.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.245,"y":8.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":9.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.657,"y":9.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.169,"y":9.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.444,"y":9.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.244,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":11.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.657,"y":11.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.169,"y":11.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.444,"y":11.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.244,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":12.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.657,"y":12.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.169,"y":12.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.444,"y":12.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.244,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":14.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.656,"y":14.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.169,"y":14.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.444,"y":14.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.244,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":15.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.656,"y":15.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.169,"y":15.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.444,"y":15.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.244,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":17.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.656,"y":17.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.169,"y":17.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.444,"y":17.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.244,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.143,"y":18.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.656,"y":18.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.168,"y":18.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.443,"y":18.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.243,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.143,"y":20.251,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.656,"y":20.251,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.168,"y":20.251,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.443,"y":20.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.243,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":20.25,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":22.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.395,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":24,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":26.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":80.395,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":29.25,"w":0.75,"l":7.511},{"oc":"#221f1f","x":91.532,"y":29.25,"w":0.75,"l":7.511},{"oc":"#221f1f","x":80.395,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":31.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":33.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":36.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":36.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":36.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":36.75,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":29.7,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.213,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.488,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.7,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.213,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.487,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.7,"y":8.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.212,"y":8.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.487,"y":8.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":8.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.7,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.212,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.487,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.699,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.212,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.487,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.699,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.212,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.487,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.699,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.212,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.487,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.699,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.211,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.486,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.286,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.699,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.211,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.486,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.286,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.699,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.211,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.486,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.286,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":22.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":22.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.113,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":23.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.438,"y":23.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.15,"y":26.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.438,"y":26.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":84.15,"y":29.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.438,"y":29.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":29.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":31.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.438,"y":31.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":31.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":33.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.438,"y":33.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":35.984,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":3.25,"w":7.219,"h":0.938,"clr":-1},{"oc":"#221f1f","x":6.188,"y":20.875,"w":7.219,"h":0.938,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":24,"w":3.712,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":16.25,"y":3.162,"w":15.949000000000005,"clr":-1,"A":"left","R":[{"T":"Days%20Present%20in%20the%20United%20States","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":16.25,"y":20.812,"w":22.28400000000001,"clr":-1,"A":"left","R":[{"T":"Figure%20Your%20Foreign%20Earned%20Income%20Exclusion%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":5.938,"y":1.9409999999999998,"w":9.745000000000003,"clr":-1,"A":"left","R":[{"T":"Form%202555-EZ%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.363,"y":1.9769999999999999,"w":2.8520000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.795,"y":1.9769999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.304,"y":3.223,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":57.786,"y":3.162,"w":16.169000000000004,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20were%20in%20the","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":16.25,"y":4.123,"w":20.579000000000004,"clr":-1,"A":"left","R":[{"T":"United%20States%20or%20its%20possessions%20during%202013.%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":6.625,"y":5.37,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"12%20%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.495,"y":5.37,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":12.481,"y":5.37,"w":8.964000000000002,"clr":-1,"A":"left","R":[{"T":"Date%20arrived%20in%20U.S.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.101,"y":5.361,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.138,"y":5.361,"w":6.223000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20left%20U.S.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":58.192,"y":5.061,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.177,"y":5.061,"w":7.150000000000001,"clr":-1,"A":"left","R":[{"T":"Number%20of%20days","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":58.166,"y":5.661,"w":8.910000000000002,"clr":-1,"A":"left","R":[{"T":"in%20U.S.%20on%20business%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.137,"y":4.999,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.174,"y":4.999,"w":9.947000000000001,"clr":-1,"A":"left","R":[{"T":"Income%20earned%20in%20U.S.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.767,"y":5.71,"w":15.153000000000004,"clr":-1,"A":"left","R":[{"T":"on%20business%20(attach%20computation)%20","S":-1,"TS":[0,11,0,0]}]},{"x":6.263,"y":20.848,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":6.692,"y":23.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.089,"w":19.48600000000001,"clr":-1,"A":"left","R":[{"T":"Maximum%20foreign%20earned%20income%20exclusion%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":23.089,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":23.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":25.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":25.339,"w":31.526000000000014,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20days%20in%20your%20qualifying%20period%20that%20fall%20within%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":25.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.858999999999995,"y":25.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.976,"y":25.339,"w":2.519,"clr":-1,"A":"left","R":[{"T":"days%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":26.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":26.839,"w":13.376000000000003,"clr":-1,"A":"left","R":[{"T":"Did%20you%20enter%20365%20on%20line%2014%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.08,"y":29.089,"w":19.856,"clr":-1,"A":"left","R":[{"T":"a%20decimal%20(rounded%20to%20at%20least%20three%20places).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.508,"y":28.631,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[2,21,0,0]}]},{"oc":"#221f1f","x":51.313,"y":28.12,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":28.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.756,"y":28.286,"w":0.6,"clr":-1,"A":"left","R":[{"T":"%C3%97","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":91.657,"y":28.286,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":6.692,"y":30.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.589,"w":11.560000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2013%20by%20line%2015%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":30.589,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":30.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":32.152,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.152,"w":40.915999999999976,"clr":-1,"A":"left","R":[{"T":"Enter%2C%20in%20U.S.%20dollars%2C%20the%20total%20foreign%20earned%20income%20you%20earned%20and%20received%20in%202013%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.884,"y":32.839,"w":29.362000000000013,"clr":-1,"A":"left","R":[{"T":"instructions).%20Be%20sure%20to%20include%20this%20amount%20on%20Form%201040%2C%20line%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.496,"y":32.839,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":32.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":34.417,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.875,"y":35.786,"w":29.250000000000007,"clr":-1,"A":"left","R":[{"T":"from%20your%20income%20to%20arrive%20at%20total%20income%20on%20Form%201040%2C%20line%2022%20.","S":-1,"TS":[0,11.9,0,0]}]},{"oc":"#221f1f","x":57.488,"y":35.786,"w":14.828000000000005,"clr":-1,"A":"left","R":[{"T":"..........%20","S":-1,"TS":[0,11.9,0,0]}]},{"oc":"#221f1f","x":77.556,"y":35.692,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.184,"y":35.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.413,"y":36.571,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.889,"y":36.571,"w":4.205,"clr":-1,"A":"left","R":[{"T":"2555-EZ%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.117,"y":36.571,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":87.872,"y":23.05,"w":3.9690000000000003,"clr":-1,"A":"left","R":[{"T":"%2497%2C600","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.403,"w":42.908999999999956,"clr":-1,"A":"left","R":[{"T":"Foreign%20earned%20income%20exclusion.%20Enter%20the%20smaller%20of%20line%2016%20or%20line%2017%20here%20and%20in%20parentheses%20","S":-1,"TS":[0,11.9,0,0]}]},{"oc":"#221f1f","x":10.883,"y":35.091,"w":43.203999999999965,"clr":-1,"A":"left","R":[{"T":"on%20Form%201040%2C%20line%2021.%20Next%20to%20the%20amount%20enter%20%E2%80%A22555-EZ.%C5%BD%20On%20Form%201040%2C%20subtract%20this%20amount%20","S":-1,"TS":[0,11.9,0,0]}]},{"oc":"#221f1f","x":12.95,"y":28.433,"w":21.692000000000007,"clr":-1,"A":"left","R":[{"T":"No.%20Divide%20line%2014%20by%20365%20and%20enter%20the%20result%20as%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.798,"y":27.589,"w":8.781,"clr":-1,"A":"left","R":[{"T":"Yes.%20Enter%20%E2%80%9C1.000.%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"x":37.537,"y":25.222,"w":15.195620000000002,"clr":0,"A":"left","R":[{"T":"0%25","S":-1,"TS":[0,97.644,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":1937,"AM":1024,"x":18.758,"y":2.008,"w":56.745,"h":0.914,"TU":"Name shown on Form 1040"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":1938,"AM":1024,"x":75.771,"y":2.008,"w":18.397,"h":0.914,"TU":"Your social security number"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_1_","EN":0},"TI":1939,"AM":0,"x":6.349,"y":7.102,"w":23.43,"h":1.149,"TU":"Line 12(a.) Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_1_","EN":0},"TI":1940,"AM":0,"x":29.965,"y":7.102,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_1_","EN":0},"TI":1941,"AM":0,"x":53.477,"y":7.102,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_1_","EN":0},"TI":1942,"AM":0,"x":75.89,"y":7.218,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_2_","EN":0},"TI":1943,"AM":0,"x":6.519,"y":8.571,"w":23.43,"h":1.149,"TU":"Line 12(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_2_","EN":0},"TI":1944,"AM":0,"x":30.135,"y":8.571,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_2_","EN":0},"TI":1945,"AM":0,"x":53.648,"y":8.571,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_2_","EN":0},"TI":1946,"AM":0,"x":76.06,"y":8.663,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_3_","EN":0},"TI":1947,"AM":0,"x":6.123,"y":10.086,"w":23.43,"h":1.149,"TU":"Line 12(a.) Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_3_","EN":0},"TI":1948,"AM":0,"x":29.803,"y":10.086,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_3_","EN":0},"TI":1949,"AM":0,"x":53.316,"y":10.086,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_3_","EN":0},"TI":1950,"AM":0,"x":75.728,"y":10.202,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_4_","EN":0},"TI":1951,"AM":0,"x":6.324,"y":11.527,"w":23.43,"h":1.149,"TU":"Line 12(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_4_","EN":0},"TI":1952,"AM":0,"x":29.876,"y":11.551,"w":23.327,"h":1.149,"TU":"Line 12(b.) Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_4_","EN":0},"TI":1953,"AM":0,"x":53.388,"y":11.551,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_4_","EN":0},"TI":1954,"AM":0,"x":75.801,"y":11.667,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_5_","EN":0},"TI":1955,"AM":0,"x":6.206,"y":13.042,"w":23.43,"h":1.149,"TU":"Line 12a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_5_","EN":0},"TI":1956,"AM":0,"x":29.821,"y":13.042,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_5_","EN":0},"TI":1957,"AM":0,"x":53.477,"y":12.938,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_5_","EN":0},"TI":1958,"AM":0,"x":75.747,"y":13.159,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_6_","EN":0},"TI":1959,"AM":0,"x":6.206,"y":14.606,"w":23.43,"h":1.149,"TU":"Line 12(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_6_","EN":0},"TI":1960,"AM":0,"x":29.821,"y":14.606,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_6_","EN":0},"TI":1961,"AM":0,"x":53.334,"y":14.606,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_6_","EN":0},"TI":1962,"AM":0,"x":75.747,"y":14.722,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_7_","EN":0},"TI":1963,"AM":0,"x":6.233,"y":15.97,"w":23.43,"h":1.149,"TU":"Line 12(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_7_","EN":0},"TI":1964,"AM":0,"x":29.849,"y":15.999,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_7_","EN":0},"TI":1965,"AM":0,"x":53.361,"y":16.046,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_7_","EN":0},"TI":1966,"AM":0,"x":76.06,"y":16.139,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_8_","EN":0},"TI":1967,"AM":0,"x":6.26,"y":17.492,"w":23.43,"h":1.149,"TU":"Line 12(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_8_","EN":0},"TI":1968,"AM":0,"x":29.94,"y":17.492,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_8_","EN":0},"TI":1969,"AM":0,"x":53.388,"y":17.492,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_8_","EN":0},"TI":1970,"AM":0,"x":75.801,"y":17.608,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_9_","EN":0},"TI":1971,"AM":0,"x":6.206,"y":19.035,"w":23.43,"h":1.149,"TU":"Line 12(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_9_","EN":0},"TI":1972,"AM":0,"x":29.821,"y":19.035,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_9_","EN":0},"TI":1973,"AM":0,"x":53.334,"y":19.035,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_9_","EN":0},"TI":1974,"AM":0,"x":75.747,"y":19.151,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":1975,"AM":0,"x":67.36,"y":25.317,"w":8.11,"h":0.93,"TU":"Line 14. Enter the number of days in your qualifying period that fall within 2013."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":1978,"AM":1024,"x":87.303,"y":28.349,"w":8.023,"h":0.884,"TU":"Line 15 Enter decimal amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":1979,"AM":0,"x":84.356,"y":30.288,"w":10.746,"h":1.209,"TU":"Line 16. Multiply line 13 by line 15."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":1980,"AM":0,"x":84.356,"y":32.642,"w":10.746,"h":1.058,"TU":"Line 17. Enter, in U.S. dollars, the total foreign earned income you earned and received in 2013 (see instructions). Be sure to include this amount on Form 1040, line 7. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":1981,"AM":0,"x":84.398,"y":35.695,"w":10.663,"h":1.025,"TU":"Line 18. Foreign earned income exclusion. Enter the smaller of line 16 or line 17 here and in parentheses on Form 1040, line 21. Next to the amount enter \"2555-EZ\". On Form 1040, subtract this amount from your income to arrive at total income on Form 1040, line 22. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX15YES","EN":0},"TI":1976,"AM":0,"x":11.035,"y":27.651,"w":1.804,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX15NO","EN":0},"TI":1977,"AM":0,"x":11.05,"y":28.549,"w":1.695,"h":0.833,"checked":false}],"id":{"Id":"A111RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Foreign Earned Income Exclusion","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131119090719-08'00'","ModDate":"D:20140114203137-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":5.25,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":7.634,"y":5.25,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.569,"y":3,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.569,"y":5.25,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.234,"y":6.75,"w":1.125,"l":27.031,"oc":"#221f1f"},{"x":29.234,"y":6.75,"w":1.125,"l":6.781,"oc":"#221f1f"},{"x":2.234,"y":12,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":14.25,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":16.634,"y":19.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":29.234,"y":19.5,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":21.134,"y":26.25,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":30.584,"y":26.25,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":2.234,"y":30,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":32.25,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":35.25,"w":0.75,"l":26.581,"oc":"#221f1f"},{"x":28.784,"y":35.25,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":2.328,"y":40.406,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":11.778,"y":40.406,"w":0.75,"l":12.181,"oc":"#221f1f"},{"x":23.928,"y":40.406,"w":0.75,"l":12.181,"oc":"#221f1f"},{"x":8.628,"y":43.406,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":25.728,"y":44.156,"w":0.75,"l":10.381,"oc":"#221f1f"},{"x":24.828,"y":46.406,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":19.428,"y":47.156,"w":0.75,"l":16.681,"oc":"#221f1f"},{"x":4.128,"y":47.906,"w":0.75,"l":31.981,"oc":"#221f1f"},{"x":2.328,"y":48.656,"w":1.5,"l":17.581,"oc":"#221f1f"},{"x":19.878,"y":48.656,"w":1.5,"l":10.381,"oc":"#221f1f"},{"x":30.228,"y":48.656,"w":1.5,"l":5.881,"oc":"#221f1f"}],"VLines":[{"x":7.65,"y":2.234,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":7.65,"y":3.734,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":30.6,"y":2.234,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":2.984,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":30.6,"y":3.734,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":29.25,"y":5.234,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.8,"y":32.234,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":11.672,"y":35.254,"w":0.75,"l":4.96,"oc":"#221f1f"},{"x":23.859,"y":35.232,"w":0.75,"l":5.098,"oc":"#221f1f"}],"Fills":[{"x":2.25,"y":12.688,"w":2.5,"h":0.938,"oc":"#221f1f"},{"x":2.25,"y":30.688,"w":2.5,"h":0.938,"oc":"#221f1f"}],"Texts":[{"x":11.535,"y":37.818,"w":23.35,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"State","S":-1,"TS":[0,13,0,0]}]},{"x":12.031,"y":34.328,"w":35.01,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Country","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":2.491,"w":2.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":3.264,"y":2.491,"w":3.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2555-EZ","S":-1,"TS":[0,22,1,0]}]},{"x":2,"y":3.5919999999999996,"w":12.54,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.5,0,0]}]},{"x":2,"y":4.102,"w":11.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service","S":-1,"TS":[0,9.5,0,0]}]},{"x":6.506,"y":4.102,"w":2.186,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (99) ","S":2,"TS":[0,10,0,0]}]},{"x":10.505,"y":2.446,"w":16.394,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Foreign Earned Income Exclusion ","S":-1,"TS":[0,22,1,0]}]},{"x":16.136,"y":3.4640000000000004,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":16.511,"y":3.558,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,0,0]}]},{"x":16.651,"y":3.558,"w":10.169,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach to Form 1040. ","S":-1,"TS":[0,11,1,0]}]},{"x":21.754,"y":3.4640000000000004,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,9,0,0]}]},{"x":7.539,"y":4.178,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":7.678,"y":4.085,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":30.072,"y":4.178,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":-1,"TS":[0,11,0,0]}]},{"x":31.019,"y":1.972,"w":9.561,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074 ","S":2,"TS":[0,10,0,0]}]},{"x":31.425,"y":3.393,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.41,"y":3.373,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":31.025,"y":3.875,"w":5.447,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.025,"y":4.258,"w":6.891,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Sequence No. ","S":8,"TS":[0,10,1,0]}]},{"x":33.926,"y":4.259,"w":2.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"34A ","S":10,"TS":[0,14,1,0]}]},{"x":2,"y":4.982,"w":12.671,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name shown on Form 1040 ","S":-1,"TS":[0,11,0,0]}]},{"x":29.25,"y":4.982,"w":13.727,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Your social security number ","S":-1,"TS":[0,10.6,1,0]}]},{"x":2.57,"y":7.885,"w":6.78,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You May Use ","S":-1,"TS":[0,16,1,0]}]},{"x":3.134,"y":8.785,"w":5.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"This Form ","S":-1,"TS":[0,16,1,0]}]},{"x":3.779,"y":9.685,"w":3.389,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If You: ","S":-1,"TS":[0,16,1,0]}]},{"x":7.85,"y":7.339,"w":17.241,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Are a U.S. citizen or a resident alien. ","S":3,"TS":[0,12,0,0]}]},{"x":7.85,"y":8.089,"w":20.296,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Earned wages/salaries in a foreign country. ","S":3,"TS":[0,12,0,0]}]},{"x":7.85,"y":8.902,"w":20.173,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Had total foreign earned income ","S":3,"TS":[0,12,0,0]}]},{"x":8.35,"y":9.59,"w":8.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of $97,600 or less.","S":3,"TS":[0,12,0,0]}]},{"x":7.85,"y":10.389,"w":20.52,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Are filing a calendar year return that covers ","S":3,"TS":[0,12,0,0]}]},{"x":8.35,"y":11.014,"w":8.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a 12-month period. ","S":3,"TS":[0,12,0,0]}]},{"x":21.307,"y":8.785,"w":4.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"And You: ","S":-1,"TS":[0,16,1,0]}]},{"x":24.95,"y":7.339,"w":18.062,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Do not have self-employment income. ","S":3,"TS":[0,12,0,0]}]},{"x":24.95,"y":8.375,"w":19.153,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Do not have business/moving expenses. ","S":3,"TS":[0,12,0,0]}]},{"x":24.95,"y":9.406,"w":15.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Do not claim the foreign housing ","S":3,"TS":[0,12,0,0]}]},{"x":25.45,"y":10.094,"w":10.724,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"exclusion or deduction. ","S":3,"TS":[0,12,0,0]}]},{"x":2.292,"y":12.661,"w":2.833,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I ","S":-1,"TS":[0,15,0,0]}]},{"x":5.75,"y":12.57,"w":32.399,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Tests To See If You Can Take the Foreign Earned Income Exclusion ","S":11,"TS":[0,18,1,0]}]},{"x":2.587,"y":14.839,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":14.839,"w":12.726,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Bona Fide Residence Test ","S":9,"TS":[0,12,1,0]}]},{"x":2.9,"y":15.651,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":15.651,"w":47.654,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Were you a bona fide resident of a foreign country or countries for a period that includes an entire tax year ","S":3,"TS":[0,12,0,0]}]},{"x":3.798,"y":16.339,"w":8.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions)? ","S":3,"TS":[0,12,0,0]}]},{"x":8.748,"y":16.339,"w":39.99,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"x":32.45,"y":16.339,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"x":34.653,"y":16.339,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":17.089,"w":35.305,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you answered “Yes,” you meet this test. Fill in line 1b and then go to line 3. ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":18.558,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"b ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":18.527,"w":20.986,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the date your bona fide residence began ","S":3,"TS":[0,12,0,0]}]},{"x":15.604,"y":18.433,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":20.9,"y":18.527,"w":13.448,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":", and ended (see instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":28.464,"y":18.433,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":28.902,"y":18.527,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":34.463,"y":18.558,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":20.089,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":20.089,"w":11.395,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Physical Presence Test ","S":9,"TS":[0,12,1,0]}]},{"x":2.9,"y":20.839,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":20.839,"w":42.358,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Were you physically present in a foreign country or countries for at least 330 full days during— ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":22.104,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"{","S":-1,"TS":[2,13,0,0]}]},{"x":6.22,"y":21.652,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":22.339,"w":29.823,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"any other period of 12 months in a row starting or ending in 2013? ","S":3,"TS":[0,12,0,0]}]},{"x":21.05,"y":22.104,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[2,13,0,0]}]},{"x":21.5,"y":21.745,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":32.45,"y":21.569,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"x":34.7,"y":21.569,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":23.092,"w":35.305,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you answered “Yes,” you meet this test. Fill in line 2b and then go to line 3. ","S":3,"TS":[0,12,0,0]}]},{"x":4.296,"y":24.592,"w":15.317,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Bona Fide Residence Test above. ","S":3,"TS":[0,12,0,0]}]},{"x":2.896,"y":25.308,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"b ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":25.277,"w":29.472,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"The physical presence test is based on the 12-month period from ","S":3,"TS":[0,12,0,0]}]},{"x":20.378,"y":25.183,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":27.713,"y":25.277,"w":3.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"through ","S":3,"TS":[0,12,0,0]}]},{"x":29.817,"y":25.183,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":34.463,"y":25.308,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":26.902,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":26.902,"w":7.669,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Tax Home Test. ","S":9,"TS":[0,12,1,0]}]},{"x":7.632,"y":26.902,"w":39.581,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Was your tax home in a foreign country or countries throughout your period of bona fide ","S":3,"TS":[0,12,0,0]}]},{"x":3.8040000000000003,"y":27.589,"w":23.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"residence or physical presence, whichever applies? ","S":3,"TS":[0,12,0,0]}]},{"x":17.004,"y":27.589,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":32.382,"y":27.589,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"x":34.7,"y":27.589,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":28.339,"w":44.637,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you answered “Yes,” you can take the exclusion. Complete Part II below and then go to page 2. ","S":3,"TS":[0,12,0,0]}]},{"x":2.181,"y":30.661,"w":3.128,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II ","S":-1,"TS":[0,15,0,0]}]},{"x":5.75,"y":30.57,"w":9.78,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"General Information ","S":11,"TS":[0,18,1,0]}]},{"x":2.563,"y":32.077,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"x":2.875,"y":32.077,"w":18.669,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Your foreign address (including country) ","S":3,"TS":[0,12,0,0]}]},{"x":28.8,"y":32.077,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"x":29.113,"y":32.077,"w":8.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Your occupation ","S":3,"TS":[0,12,0,0]}]},{"x":2.563,"y":35.05,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"x":2.875,"y":35.05,"w":8.596,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Employer’s name ","S":3,"TS":[0,12,0,0]}]},{"x":11.7,"y":35.077,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"x":12.013,"y":35.077,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":12.326,"y":35.077,"w":20.225,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Employer’s U.S. address (including ZIP code)","S":-1,"TS":[0,11.82,0,0]}]},{"x":23.474,"y":35.077,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":23.85,"y":35.077,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"x":24.163,"y":35.077,"w":13.076,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Employer’s foreign address ","S":3,"TS":[0,12,0,0]}]},{"x":2.681,"y":40.358,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9 ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":40.245,"w":15.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Employer is (check any that apply): ","S":3,"TS":[0,12,0,0]}]},{"x":2.994,"y":41.107,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":40.995,"w":7.372,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"A U.S. business ","S":3,"TS":[0,12,0,0]}]},{"x":8.094,"y":40.995,"w":46.655,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................................","S":3,"TS":[0,12,0,0]}]},{"x":2.994,"y":41.858,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"b ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":41.745,"w":8.538,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"A foreign business ","S":3,"TS":[0,12,0,0]}]},{"x":8.844,"y":41.745,"w":45.322,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................................","S":3,"TS":[0,12,0,0]}]},{"x":2.994,"y":42.464,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"c ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":42.433,"w":6.76,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other (specify) ","S":3,"TS":[0,12,0,0]}]},{"x":7.696,"y":42.339,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2.368,"y":43.214,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10 ","S":3,"TS":[0,12,0,0]}]},{"x":2.994,"y":43.214,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":43.183,"w":37.027,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you previously filed Form 2555 or 2555-EZ, enter the last year you filed the form. ","S":3,"TS":[0,12,0,0]}]},{"x":24.721,"y":43.089,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2.994,"y":44.108,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"b ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":43.995,"w":28.415,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you did not previously file Form 2555 or 2555-EZ, check here ","S":3,"TS":[0,12,0,0]}]},{"x":19.877,"y":43.902,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":21.694,"y":43.995,"w":10.743,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and go to line 11a now. ","S":3,"TS":[0,12,0,0]}]},{"x":2.994,"y":44.858,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"c ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":44.745,"w":27.578,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Have you ever revoked the foreign earned income exclusion? ","S":3,"TS":[0,12,0,0]}]},{"x":20.094,"y":44.745,"w":19.995,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"x":32.252,"y":44.745,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"x":34.249,"y":44.745,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":2.994,"y":45.464,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"d ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":45.433,"w":35.981,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you answered “Yes,” enter the tax year for which the revocation was effective. ","S":3,"TS":[0,12,0,0]}]},{"x":24.133,"y":45.339,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2.368,"y":46.214,"w":1.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11a ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":46.183,"w":26.1,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"List your tax home(s) during 2013 and date(s) established. ","S":3,"TS":[0,12,0,0]}]},{"x":18.575,"y":46.089,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2.994,"y":47.745,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"b ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":47.745,"w":19.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Of what country are you a citizen/national? ","S":3,"TS":[0,12,0,0]}]},{"x":14.8,"y":47.652,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2.094,"y":48.513,"w":33.231,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see the Form 1040 instructions. ","S":-1,"TS":[0,11,1,0]}]},{"x":23.137,"y":48.531,"w":7.966,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 13272W ","S":2,"TS":[0,10,0,0]}]},{"x":30.63,"y":48.478,"w":2.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":31.894,"y":48.478,"w":4.113,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2555-EZ ","S":10,"TS":[0,14,1,0]}]},{"x":34.523,"y":48.478,"w":3.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":2.715,"y":34.24,"w":17.22,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"x":21.453,"y":34.328,"w":61.69,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Country Code","S":-1,"TS":[0,13,0,0]}]},{"x":2.647,"y":32.845,"w":36.68,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Address","S":-1,"TS":[0,13,0,0]}]},{"x":16.522,"y":33.08,"w":36.68,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Address","S":-1,"TS":[0,13,0,0]}]},{"x":23.695,"y":35.658,"w":21.12,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Addr","S":-1,"TS":[0,13,0,0]}]},{"x":23.73,"y":36.362,"w":26.68,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Addr2","S":-1,"TS":[0,13,0,0]}]},{"x":23.762,"y":37.053,"w":17.22,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"x":23.79,"y":37.627,"w":20.56,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Prov","S":-1,"TS":[0,13,0,0]}]},{"x":23.77,"y":38.377,"w":27.79,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Postal","S":-1,"TS":[0,13,0,0]}]},{"x":23.674,"y":39.303,"w":35.01,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Country","S":-1,"TS":[0,13,0,0]}]},{"x":11.562,"y":36.307,"w":21.12,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Addr","S":-1,"TS":[0,13,0,0]}]},{"x":11.574,"y":37.147,"w":17.22,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"x":11.637,"y":38.604,"w":15.56,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[0,13,0,0]}]},{"x":8.053,"y":4.178,"w":43.79,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Information about Form 2555-EZ and its separate instructions is at www.irs.gov/form2555ez","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":17.839,"w":48.843,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you answered “No,” you do not meet this test. Go to line 2 to see if you meet the Physical Presence Test. ","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":21.652,"w":3.391,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2013 or","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":23.904,"w":45.586,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you answered “No,” you do not meet this test. You cannot take the exclusion unless you meet the ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":28.998,"w":34.08,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you answered “No,” you cannot take the exclusion. Do not file this form. ","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":2529,"AM":1024,"TU":"Name shown on Form 1040","x":2.265,"y":5.813,"w":26.94,"h":0.914},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":2530,"AM":1024,"TU":"Your social security number","x":29.302,"y":5.813,"w":6.69,"h":0.914},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L1BBEG","EN":0},"TI":2533,"AM":0,"TU":"Line 1b. Enter the date your bona fide residence began.","x":16.55,"y":18.78,"w":4.193,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L1BEND","EN":0},"TI":2534,"AM":0,"TU":"Line 1b. Enter date residence ended (see instructions)","x":29.378,"y":18.84,"w":4.088,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2BFROM","EN":0},"TI":2537,"AM":0,"TU":"Line 2b. The physical presence test is based on the 12-month period from","x":21.135,"y":25.484,"w":5.702,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2BTHRU","EN":0},"TI":2538,"AM":0,"TU":"Line 2b. Through,","x":30.585,"y":25.582,"w":4.088,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"H29","EN":0},"TI":2541,"AM":0,"TU":"Line 4. Your foreign address.","x":5.629,"y":32.97,"w":8.892,"h":0.864},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L4ADDR1","EN":0},"TI":2542,"AM":0,"TU":"Line 4. Foreign address continued.","x":19.597,"y":33.006,"w":8.591,"h":0.854},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFCITY","EN":0},"TI":2543,"AM":0,"TU":"LIne 4. City","x":4.111,"y":34.293,"w":8.044,"h":0.868},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFCNTRY","EN":0},"TI":2544,"AM":0,"TU":"Line 4. Country.","x":14.542,"y":34.252,"w":7.142,"h":0.84},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"POD","EN":0},"TI":2545,"AM":0,"TU":"Line 4. Foreign country code.","x":25.714,"y":34.313,"w":3.049,"h":0.84},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"YOCC","EN":0},"TI":2546,"AM":0,"TU":"Line 5. Your occupation.","x":29.289,"y":34.276,"w":5.798,"h":0.959},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6NAME1","EN":0},"TI":2547,"AM":0,"TU":"Line 6. Employer's name.","x":2.648,"y":36.058,"w":8.728,"h":0.91},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7ADDR1","EN":0},"TI":2548,"AM":0,"TU":"Line 7. Employer's U.S. address","x":13.537,"y":36.261,"w":8.528,"h":0.837},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8ADDR1","EN":0},"TI":2549,"AM":0,"TU":"Line 8. Employer's foreign address.","x":25.7,"y":35.915,"w":8.151,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6NAME2","EN":0},"TI":2550,"AM":0,"TU":"Line 6. Employer's name continued.","x":2.614,"y":37.104,"w":8.714,"h":1.05},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8ADDR2","EN":0},"TI":2551,"AM":0,"TU":"Line 8. Employer's foreign address continued.","x":25.733,"y":36.526,"w":8.099,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7ADDR3","EN":0},"TI":2552,"AM":0,"TU":"Line 7. City.","x":13.493,"y":37.186,"w":8.43,"h":0.862},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LCITY","EN":0},"TI":2553,"AM":0,"TU":"Line 8. City.","x":25.757,"y":37.175,"w":8.084,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7ST","EN":0},"TI":2554,"AM":0,"TU":"State","x":13.542,"y":38.133,"w":0.909,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AL"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LPROV","EN":0},"TI":2555,"AM":0,"TU":"Line 8. Providence.","x":25.864,"y":37.885,"w":7.996,"h":0.833},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"L7ZIP","EN":0},"TI":2556,"AM":0,"TU":"Line 7. Zip code.","x":13.534,"y":38.936,"w":3.285,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LPOST","EN":0},"TI":2557,"AM":0,"TU":"Line 8. Foreign Postal code.","x":26.269,"y":38.825,"w":4.511,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LCOUNTRY","EN":0},"TI":2558,"AM":0,"TU":"Line 8. Country.","x":26.189,"y":39.553,"w":4.624,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L9C","EN":0},"TI":2561,"AM":0,"TU":"Line 9c Other (specify)","x":8.596,"y":42.609,"w":19.353,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":2563,"AM":0,"TU":"Line 10a. If you previously filed Form 2555 or 2555-EZ, enter the last year you filed the form.","x":25.696,"y":43.419,"w":10.387,"h":0.833,"MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L10DTX","EN":0},"TI":2567,"AM":0,"TU":"Line 10d. If you answered \"Yes\", enter the tax year for which the revocation was effective.","x":24.975,"y":45.611,"w":4.194,"h":0.833,"PL":{"V":[" ","2012","2011","2010","2009","2008","2007","2006","2005","2004","2003","2002","2001","2000","1999","1998","1997","1996","1995","1994","1993","1992","1991","1990","1989","1988","1987","1986","1985","1984","1983","1982"],"D":["no entry","2012","2011","2010","2009","2008","2007","2006","2005","2004","2003","2002","2001","2000","1999","1998","1997","1996","1995","1994","1993","1992","1991","1990","1989","1988","1987","1986","1985","1984","1983","1982"]},"V":"no entry"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A115_L11A1_1_","EN":0},"TI":2568,"AM":0,"TU":"Line 11a. List your tax home(s) during 2013.","x":4.127,"y":47.097,"w":19.345,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A115_L11A2_1_","EN":0},"TI":2569,"AM":0,"TU":"Line 11a. List date(s) established.","x":24.107,"y":47.169,"w":11.976,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":2570,"AM":0,"TU":"Line 11b. Of what country are you a citizen/national?","x":15.61,"y":47.938,"w":4.438,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1AYES","EN":0},"TI":2531,"AM":0,"TU":"Line 1a Checkboxes. Bona Fide Residence Test.","x":31.855,"y":16.346,"w":0.823,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1ANO","EN":0},"TI":2532,"AM":0,"TU":"Line 1a Checkboxes. Bona Fide Residence Test.","x":34.088,"y":16.406,"w":0.642,"h":0.833,"checked":false}],"id":{"Id":"A6RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX2AYES","EN":0},"TI":2535,"AM":0,"TU":"Line 2a Checkboxes. Physical Presence Test.","x":31.799,"y":21.595,"w":0.819,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX2ANO","EN":0},"TI":2536,"AM":0,"TU":"Line 2a Checkboxes. Physical Presence Test.","x":34.078,"y":21.659,"w":0.763,"h":0.833,"checked":false}],"id":{"Id":"A12RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3YES","EN":0},"TI":2539,"AM":0,"TU":"Line 3 Checkboxes. Tax Home Test.","x":31.842,"y":27.669,"w":0.703,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3NO","EN":0},"TI":2540,"AM":0,"TU":"Line 3 Checkboxes. Tax Home Test.","x":34.208,"y":27.688,"w":0.703,"h":0.833,"checked":false}],"id":{"Id":"A16RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9A","EN":0},"TI":2559,"AM":0,"TU":"Line 9a. Checkbox. A U.S. business","x":34.847,"y":41.125,"w":0.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9B","EN":0},"TI":2560,"AM":0,"TU":"Line 9b. Checkbox. A foreign business","x":34.868,"y":41.847,"w":0.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9C","EN":0},"TI":2562,"AM":0,"TU":"Line 9c. Checkbox. Other.","x":34.889,"y":42.627,"w":0.548,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX10B","EN":0},"TI":2564,"AM":0,"x":20.933,"y":44.033,"w":0.717,"h":0.87}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX10CYES","EN":0},"TI":2565,"AM":0,"TU":"Line 10c. Checkboxes.","x":31.571,"y":44.815,"w":0.651,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX10CNO","EN":0},"TI":2566,"AM":0,"TU":"Line 10c. Checkboxes.","x":33.794,"y":44.844,"w":0.598,"h":0.833,"checked":false}],"id":{"Id":"A50RB","EN":0}}]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":3,"w":1.5,"l":4.531,"oc":"#221f1f"},{"x":6.734,"y":3,"w":1.5,"l":29.281,"oc":"#221f1f"},{"x":2.234,"y":3,"w":1.5,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":5.25,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":6.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":6.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":6.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":6.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":2.234,"y":8.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":8.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":8.25,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":8.25,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":8.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":9.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":9.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":9.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":9.75,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":9.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":11.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":11.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":11.25,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":11.25,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":11.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":12.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":12.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":12.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":12.75,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":12.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":14.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":14.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":14.25,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":14.25,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":14.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":15.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":15.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":15.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":15.75,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":15.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":17.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":17.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":17.25,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":17.25,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":17.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":18.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":18.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":18.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":18.75,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":18.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":20.251,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":20.251,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":20.251,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":20.251,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":20.25,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":22.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":29.234,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":24,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.634,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":24.284,"y":26.25,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":29.234,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":29.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":29.25,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":33.284,"y":29.25,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":29.234,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":31.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.634,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":33.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":33.75,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.634,"y":33.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":36.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":36.75,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.634,"y":36.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":36.75,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":10.8,"y":5.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":5.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":5.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":6.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":6.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":6.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":6.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":8.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":8.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":8.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":8.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":9.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":9.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":9.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":9.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":11.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":11.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":11.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":11.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":17.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":17.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":17.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":17.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.349,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.6,"y":22.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.25,"y":22.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.3,"y":24.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.95,"y":24.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.6,"y":23.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.25,"y":23.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.6,"y":26.235,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":29.25,"y":26.235,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":30.6,"y":29.234,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.25,"y":29.234,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.65,"y":29.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":31.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.25,"y":31.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.65,"y":31.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":33.734,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":29.25,"y":33.734,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":34.65,"y":33.734,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.65,"y":35.984,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.25,"y":3.25,"w":2.625,"h":0.938,"oc":"#221f1f"},{"x":2.25,"y":20.875,"w":2.625,"h":0.938,"oc":"#221f1f"},{"x":29.25,"y":24,"w":1.35,"h":2.25,"oc":"#bebfc1"}],"Texts":[{"x":5.75,"y":3.162,"w":15.949,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Days Present in the United States","S":11,"TS":[0,18,1,0]}]},{"x":5.75,"y":20.812,"w":22.284,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Figure Your Foreign Earned Income Exclusion ","S":11,"TS":[0,18,1,0]}]},{"x":2,"y":1.9409999999999998,"w":9.745,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 2555-EZ (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":34.155,"y":1.9769999999999999,"w":2.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":1.9769999999999999,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.133,"y":3.223,"w":3.423,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III ","S":-1,"TS":[0,15,0,0]}]},{"x":20.854,"y":3.162,"w":16.169,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete this part if you were in the","S":-1,"TS":[0,15,0,0]}]},{"x":32.981,"y":3.162,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,17,0,0]}]},{"x":5.75,"y":4.123,"w":20.579,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"United States or its possessions during 2013. ","S":-1,"TS":[0,15,0,0]}]},{"x":2.25,"y":5.37,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12 ","S":3,"TS":[0,12,0,0]}]},{"x":3.657,"y":5.37,"w":1.444,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(a) ","S":-1,"TS":[0,11,0,0]}]},{"x":4.379,"y":5.37,"w":8.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date arrived in U.S. ","S":-1,"TS":[0,11,0,0]}]},{"x":12.969,"y":5.361,"w":1.481,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(b) ","S":-1,"TS":[0,11,0,0]}]},{"x":13.709,"y":5.361,"w":6.223,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date left U.S. ","S":-1,"TS":[0,11,0,0]}]},{"x":21.002,"y":5.061,"w":1.444,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(c) ","S":-1,"TS":[0,11,0,0]}]},{"x":21.724,"y":5.061,"w":7.15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Number of days","S":-1,"TS":[0,11,0,0]}]},{"x":25.299,"y":5.061,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":20.992,"y":5.661,"w":8.91,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"in U.S. on business ","S":-1,"TS":[0,11,0,0]}]},{"x":28.618,"y":4.999,"w":1.481,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(d) ","S":-1,"TS":[0,11,0,0]}]},{"x":29.359,"y":4.999,"w":9.947,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Income earned in U.S.","S":-1,"TS":[0,11,0,0]}]},{"x":34.332,"y":4.999,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.756,"y":5.71,"w":15.153,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on business (attach computation) ","S":-1,"TS":[0,11,0,0]}]},{"x":35.333,"y":5.71,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":35.472,"y":5.71,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":35.611,"y":5.71,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":35.75,"y":5.71,"w":0.212,"oc":"#221f1f","sw":0.27603125,"A":"left","R":[{"T":" ","S":-1,"TS":[3,13,0,0]}]},{"x":2.089,"y":5.734,"w":1.39,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":10.639,"y":5.734,"w":1.39,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":19.189,"y":5.734,"w":1.39,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":27.289,"y":5.734,"w":1.39,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":34.489,"y":5.734,"w":1.39,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":2.118,"y":20.848,"w":3.463,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part IV ","S":-1,"TS":[0,15,0,0]}]},{"x":2.275,"y":23.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13 ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":23.089,"w":19.486,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Maximum foreign earned income exclusion ","S":3,"TS":[0,12,0,0]}]},{"x":15.5,"y":23.089,"w":23.994,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":29.362,"y":23.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":25.339,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14 ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":25.339,"w":31.526,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the number of days in your qualifying period that fall within 2013 ","S":3,"TS":[0,12,0,0]}]},{"x":22.251,"y":25.339,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":23.062,"y":25.339,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14 ","S":3,"TS":[0,12,0,0]}]},{"x":27.468,"y":25.339,"w":2.519,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"days ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":26.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15 ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":26.839,"w":13.376,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you enter 365 on line 14? ","S":3,"TS":[0,12,0,0]}]},{"x":6.052,"y":29.089,"w":19.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a decimal (rounded to at least three places). ","S":3,"TS":[0,12,0,0]}]},{"x":17.48,"y":28.631,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[2,21,0,0]}]},{"x":18.5,"y":28.12,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":29.362,"y":28.339,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15 ","S":3,"TS":[0,12,0,0]}]},{"x":31.025,"y":28.286,"w":0.6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"×","S":-1,"TS":[0,15,0,0]}]},{"x":33.171,"y":28.286,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":-1,"TS":[0,15,0,0]}]},{"x":2.275,"y":30.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16 ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":30.589,"w":11.56,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 13 by line 15 ","S":3,"TS":[0,12,0,0]}]},{"x":11,"y":30.589,"w":31.992,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"x":29.362,"y":30.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":32.152,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17 ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":32.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":32.152,"w":40.916,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter, in U.S. dollars, the total foreign earned income you earned and received in 2013 (see ","S":3,"TS":[0,12,0,0]}]},{"x":3.7990000000000004,"y":32.839,"w":29.362,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions). Be sure to include this amount on Form 1040, line 7 ","S":3,"TS":[0,12,0,0]}]},{"x":20.749,"y":32.839,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":29.362,"y":32.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":34.417,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18 ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":35.12,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":35.824,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.7960000000000003,"y":35.786,"w":29.25,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from your income to arrive at total income on Form 1040, line 22 .","S":-1,"TS":[0,11.9,0,0]}]},{"x":20.746,"y":35.786,"w":13.48,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11.9,0,0]}]},{"x":27.882,"y":35.786,"w":1.348,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.9,0,0]}]},{"x":28.043,"y":35.692,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.362,"y":35.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18 ","S":3,"TS":[0,12,0,0]}]},{"x":30.536,"y":36.571,"w":2.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":31.801000000000002,"y":36.571,"w":4.205,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2555-EZ ","S":-1,"TS":[0,13,0,0]}]},{"x":34.429,"y":36.571,"w":3.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":31.793999999999997,"y":23.05,"w":3.969,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"$97,600","S":-1,"TS":[2,13,0,0]}]},{"x":3.8,"y":34.403,"w":42.909,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Foreign earned income exclusion. Enter the smaller of line 16 or line 17 here and in parentheses ","S":-1,"TS":[0,11.9,0,0]}]},{"x":3.798,"y":35.091,"w":43.204,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"on Form 1040, line 21. Next to the amount enter •2555-EZ.Ž On Form 1040, subtract this amount ","S":-1,"TS":[0,11.9,0,0]}]},{"x":4.55,"y":28.433,"w":21.692,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No. Divide line 14 by 365 and enter the result as ","S":3,"TS":[0,12,0,0]}]},{"x":4.495,"y":27.589,"w":8.781,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes. Enter “1.000.” ","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":2672,"AM":1024,"TU":"Name shown on Form 1040","x":6.821,"y":2.008,"w":20.634,"h":0.914},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2673,"AM":1024,"TU":"Your social security number","x":27.553,"y":2.008,"w":6.69,"h":0.914},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_1_","EN":0},"TI":2674,"AM":0,"TU":"Line 12(a.) Date arrived in U.S.","x":2.309,"y":7.102,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_1_","EN":0},"TI":2675,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.896,"y":7.102,"w":8.483,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_1_","EN":0},"TI":2676,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.446,"y":7.102,"w":8.033,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_1_","EN":0},"TI":2677,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.596,"y":7.218,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_2_","EN":0},"TI":2678,"AM":0,"TU":"Line 12(a). Date arrived in U.S.","x":2.371,"y":8.571,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_2_","EN":0},"TI":2679,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.958,"y":8.571,"w":8.483,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_2_","EN":0},"TI":2680,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.508,"y":8.571,"w":8.033,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_2_","EN":0},"TI":2681,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.658,"y":8.663,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_3_","EN":0},"TI":2682,"AM":0,"TU":"Line 12(a.) Date arrived in U.S.","x":2.227,"y":10.086,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_3_","EN":0},"TI":2683,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.838,"y":10.086,"w":8.482,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_3_","EN":0},"TI":2684,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.387,"y":10.086,"w":8.033,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_3_","EN":0},"TI":2685,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.538,"y":10.202,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_4_","EN":0},"TI":2686,"AM":0,"TU":"Line 12(a). Date arrived in U.S.","x":2.3,"y":11.527,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_4_","EN":0},"TI":2687,"AM":0,"TU":"Line 12(b.) Date arrived in U.S.","x":10.864,"y":11.551,"w":8.482,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_4_","EN":0},"TI":2688,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.414,"y":11.551,"w":8.032,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_4_","EN":0},"TI":2689,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.564,"y":11.667,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_5_","EN":0},"TI":2690,"AM":0,"TU":"Line 12a). Date arrived in U.S.","x":2.257,"y":13.042,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_5_","EN":0},"TI":2691,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.844,"y":13.042,"w":8.482,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_5_","EN":0},"TI":2692,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.446,"y":12.938,"w":8.033,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_5_","EN":0},"TI":2693,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.544,"y":13.159,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_6_","EN":0},"TI":2694,"AM":0,"TU":"Line 12(a). Date arrived in U.S.","x":2.257,"y":14.606,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_6_","EN":0},"TI":2695,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.844,"y":14.606,"w":8.482,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_6_","EN":0},"TI":2696,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.394,"y":14.606,"w":8.033,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_6_","EN":0},"TI":2697,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.544,"y":14.722,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_7_","EN":0},"TI":2698,"AM":0,"TU":"Line 12(a). Date arrived in U.S.","x":2.266,"y":15.97,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_7_","EN":0},"TI":2699,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.854,"y":15.999,"w":8.483,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_7_","EN":0},"TI":2700,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.404,"y":16.046,"w":8.032,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_7_","EN":0},"TI":2701,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.658,"y":16.139,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_8_","EN":0},"TI":2702,"AM":0,"TU":"Line 12(a). Date arrived in U.S.","x":2.276,"y":17.492,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_8_","EN":0},"TI":2703,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.887,"y":17.492,"w":8.483,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_8_","EN":0},"TI":2704,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.414,"y":17.492,"w":8.032,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_8_","EN":0},"TI":2705,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.564,"y":17.608,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_9_","EN":0},"TI":2706,"AM":0,"TU":"Line 12(a). Date arrived in U.S.","x":2.257,"y":19.035,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_9_","EN":0},"TI":2707,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.844,"y":19.035,"w":8.482,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_9_","EN":0},"TI":2708,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.394,"y":19.035,"w":8.033,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_9_","EN":0},"TI":2709,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.544,"y":19.151,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":2710,"AM":0,"TU":"Line 14. Enter the number of days in your qualifying period that fall within 2013.","x":24.494,"y":25.317,"w":2.949,"h":0.93},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":2713,"AM":1024,"TU":"Line 15 Enter decimal amount.","x":31.747,"y":28.349,"w":2.917,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":2714,"AM":0,"TU":"Line 16. Multiply line 13 by line 15.","x":30.675,"y":30.288,"w":3.907,"h":1.209},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":2715,"AM":0,"TU":"Line 17. Enter, in U.S. dollars, the total foreign earned income you earned and received in 2013 (see instructions). Be sure to include this amount on Form 1040, line 7. Dollars.","x":30.675,"y":32.642,"w":3.907,"h":1.058},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":2716,"AM":0,"TU":"Line 18. Foreign earned income exclusion. Enter the smaller of line 16 or line 17 here and in parentheses on Form 1040, line 21. Next to the amount enter \"2555-EZ\". On Form 1040, subtract this amount from your income to arrive at total income on Form 1040, line 22. Dollars.","x":30.69,"y":35.695,"w":3.878,"h":1.025}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX15YES","EN":0},"TI":2711,"AM":0,"TU":"Line 15. Checkboxes","x":4.013,"y":27.651,"w":0.656,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX15NO","EN":0},"TI":2712,"AM":0,"TU":"Line 15. Checkboxes","x":4.018,"y":28.549,"w":0.616,"h":0.833,"checked":false}],"id":{"Id":"A111RB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F2555EZS.json b/test/data/fd/form/F2555EZS.json index 5922d049..a2e03365 100755 --- a/test/data/fd/form/F2555EZS.json +++ b/test/data/fd/form/F2555EZS.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":5.25,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.995,"y":5.25,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.064,"y":3,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.064,"y":5.25,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":6.75,"w":1.125,"l":74.336},{"oc":"#221f1f","x":80.395,"y":6.75,"w":1.125,"l":18.648},{"oc":"#221f1f","x":6.145,"y":12,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":14.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":45.745,"y":19.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":80.395,"y":19.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":58.12,"y":26.25,"w":0.75,"l":18.648},{"oc":"#221f1f","x":84.107,"y":26.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":6.145,"y":30,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":32.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":35.25,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.157,"y":35.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.402,"y":40.406,"w":0.75,"l":26.073},{"oc":"#221f1f","x":32.39,"y":40.406,"w":0.75,"l":33.498},{"oc":"#221f1f","x":65.803,"y":40.406,"w":0.75,"l":33.498},{"oc":"#221f1f","x":23.727,"y":43.406,"w":0.75,"l":70.624},{"oc":"#221f1f","x":70.753,"y":44.156,"w":0.75,"l":28.548},{"oc":"#221f1f","x":68.278,"y":46.406,"w":0.75,"l":31.023},{"oc":"#221f1f","x":53.428,"y":47.156,"w":0.75,"l":45.874},{"oc":"#221f1f","x":11.352,"y":47.906,"w":0.75,"l":87.949},{"oc":"#221f1f","x":6.402,"y":48.656,"w":1.5,"l":48.349},{"oc":"#221f1f","x":54.665,"y":48.656,"w":1.5,"l":28.548},{"oc":"#221f1f","x":83.128,"y":48.656,"w":1.5,"l":16.173},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":2.081},{"oc":"#221f1f","x":0.086,"y":48.801,"w":0.75,"l":2.081}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":1.531},{"oc":"#221f1f","x":21.038,"y":3.734,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.15,"y":2.984,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.15,"y":3.734,"w":1.5,"l":1.547},{"oc":"#221f1f","x":80.438,"y":5.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":32.234,"w":0.75,"l":3.031},{"oc":"#221f1f","x":32.098,"y":35.254,"w":0.75,"l":4.96},{"oc":"#221f1f","x":65.613,"y":35.232,"w":0.75,"l":5.098},{"oc":"#221f1f","x":2.167,"y":48.801,"w":0.75,"l":0.668},{"oc":"#221f1f","x":0.086,"y":48.801,"w":0.75,"l":0.668}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":12.688,"w":6.875,"h":0.938,"clr":-1},{"oc":"#221f1f","x":6.188,"y":30.688,"w":6.875,"h":0.938,"clr":-1},{"oc":"#221f1f","x":0.172,"y":48.832,"w":1.909,"h":0.605,"clr":-1}],"Texts":[{"x":32.158,"y":37.818,"w":23.35,"clr":0,"A":"left","R":[{"T":"State","S":-1,"TS":[0,13,0,0]}]},{"x":33.523,"y":34.328,"w":35.010000000000005,"clr":0,"A":"left","R":[{"T":"Country","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":2.491,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.415,"y":2.491,"w":3.835,"clr":-1,"A":"left","R":[{"T":"2555-EZ","S":-1,"TS":[0,22,1,0]}]},{"oc":"#221f1f","x":5.938,"y":3.5919999999999996,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.102,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":18.33,"y":4.102,"w":2.186,"clr":-1,"A":"left","R":[{"T":"%20(99)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":29.327,"y":2.446,"w":16.394000000000002,"clr":-1,"A":"left","R":[{"T":"Foreign%20Earned%20Income%20Exclusion%20","S":-1,"TS":[0,22,1,0]}]},{"oc":"#221f1f","x":44.81,"y":3.4640000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":46.227,"y":3.558,"w":10.169000000000004,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":21.553,"y":4.085,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":83.135,"y":4.178,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.741,"y":1.972,"w":9.561000000000002,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.857,"y":3.393,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.565,"y":3.373,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.756,"y":3.875,"w":5.447000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.756,"y":4.258,"w":6.891,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":93.734,"y":4.259,"w":2.112,"clr":-1,"A":"left","R":[{"T":"34A%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":4.982,"w":12.671000000000005,"clr":-1,"A":"left","R":[{"T":"Name%20shown%20on%20Form%201040%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.875,"y":4.982,"w":13.727000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":-1,"TS":[0,10.6,1,0]}]},{"oc":"#221f1f","x":7.506,"y":7.885,"w":6.780000000000001,"clr":-1,"A":"left","R":[{"T":"You%20May%20Use%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":9.055,"y":8.785,"w":5.390000000000001,"clr":-1,"A":"left","R":[{"T":"This%20Form%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":10.829,"y":9.685,"w":3.389,"clr":-1,"A":"left","R":[{"T":"If%20You%3A%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":22.025,"y":7.339,"w":17.241000000000007,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Are%20a%20U.S.%20citizen%20or%20a%20resident%20alien.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.025,"y":8.089,"w":20.296000000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Earned%20wages%2Fsalaries%20in%20a%20foreign%20country.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.025,"y":8.902,"w":20.172999999999984,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Had%20total%20foreign%20earned%20income%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.4,"y":9.59,"w":8.262000000000002,"clr":-1,"A":"left","R":[{"T":"of%20%2497%2C600%20or%20less.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.025,"y":10.389,"w":20.52,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Are%20filing%20a%20calendar%20year%20return%20that%20%20covers%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.4,"y":11.014,"w":8.856000000000002,"clr":-1,"A":"left","R":[{"T":"a%2012-month%20period.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.031,"y":8.785,"w":4.7219999999999995,"clr":-1,"A":"left","R":[{"T":"And%20You%3A%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":69.05,"y":7.339,"w":18.061999999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Do%20not%20have%20self-employment%20income.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.05,"y":8.375,"w":19.153,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Do%20not%20have%20business%2Fmoving%20expenses.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.05,"y":9.406,"w":15.856,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Do%20not%20claim%20the%20foreign%20housing%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.425,"y":10.094,"w":10.724,"clr":-1,"A":"left","R":[{"T":"exclusion%20or%20deduction.%20","S":3,"TS":[0,12,0,0]}]},{"x":6.74,"y":12.661,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":16.25,"y":12.57,"w":32.39900000000001,"clr":-1,"A":"left","R":[{"T":"Tests%20To%20See%20If%20You%20Can%20Take%20the%20Foreign%20Earned%20Income%20Exclusion%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":7.552,"y":14.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":14.839,"w":12.726000000000003,"clr":-1,"A":"left","R":[{"T":"Bona%20Fide%20Residence%20Test%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.413,"y":15.651,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":15.651,"w":47.65399999999996,"clr":-1,"A":"left","R":[{"T":"Were%20you%20a%20bona%20fide%20resident%20of%20a%20foreign%20country%20or%20countries%20for%20a%20period%20that%20includes%20an%20entire%20tax%20year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.881,"y":16.339,"w":8.390000000000002,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.494,"y":16.339,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.675,"y":16.339,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.735,"y":16.339,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.089,"w":35.305,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20answered%20%E2%80%9CYes%2C%E2%80%9D%20you%20meet%20this%20test.%20Fill%20in%20line%201b%20and%20then%20go%20to%20line%203.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.413,"y":18.558,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":18.527,"w":20.985999999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20date%20your%20bona%20fide%20residence%20began%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.35,"y":18.433,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":57.913,"y":18.527,"w":13.448000000000002,"clr":-1,"A":"left","R":[{"T":"%2C%20and%20ended%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.715,"y":18.433,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":95.21,"y":18.558,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.554,"y":20.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.889,"y":20.089,"w":11.395000000000003,"clr":-1,"A":"left","R":[{"T":"Physical%20Presence%20Test%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.414,"y":20.839,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.889,"y":20.839,"w":42.357999999999976,"clr":-1,"A":"left","R":[{"T":"Were%20you%20physically%20present%20in%20a%20foreign%20country%20or%20countries%20for%20at%20least%20330%20full%20days%20during%E2%80%94%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":22.104,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7B","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":12.125,"y":22.339,"w":29.82300000000001,"clr":-1,"A":"left","R":[{"T":"any%20other%20period%20of%2012%20months%20in%20a%20row%20starting%20or%20ending%20in%202013%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.325,"y":22.104,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":59.563,"y":21.745,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.675,"y":21.569,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.862,"y":21.569,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.092,"w":35.305,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20answered%20%E2%80%9CYes%2C%E2%80%9D%20you%20meet%20this%20test.%20Fill%20in%20line%202b%20and%20then%20go%20to%20line%203.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.252,"y":24.592,"w":15.317000000000005,"clr":-1,"A":"left","R":[{"T":"Bona%20Fide%20Residence%20Test%20above.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.402,"y":25.308,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":25.277,"w":29.472000000000012,"clr":-1,"A":"left","R":[{"T":"The%20physical%20presence%20test%20is%20based%20on%20the%2012-month%20period%20from%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.476,"y":25.183,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.647,"y":25.277,"w":3.7420000000000004,"clr":-1,"A":"left","R":[{"T":"through%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.435,"y":25.183,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":95.21,"y":25.308,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.553,"y":26.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":26.902,"w":7.6690000000000005,"clr":-1,"A":"left","R":[{"T":"Tax%20Home%20Test.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.425,"y":26.902,"w":39.581,"clr":-1,"A":"left","R":[{"T":"Was%20your%20tax%20home%20in%20a%20foreign%20country%20or%20countries%20throughout%20your%20period%20of%20bona%20fide%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":27.589,"w":23.298000000000005,"clr":-1,"A":"left","R":[{"T":"residence%20or%20physical%20presence%2C%20whichever%20applies%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.199,"y":27.589,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.487,"y":27.589,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.862,"y":27.589,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.339,"w":44.636999999999965,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20answered%20%E2%80%9CYes%2C%E2%80%9D%20you%20can%20take%20the%20exclusion.%20Complete%20Part%20II%20below%20and%20then%20go%20to%20page%202.%20","S":3,"TS":[0,12,0,0]}]},{"x":6.436,"y":30.661,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":16.25,"y":30.57,"w":9.780000000000003,"clr":-1,"A":"left","R":[{"T":"General%20Information%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":7.484,"y":32.077,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.344,"y":32.077,"w":18.669000000000004,"clr":-1,"A":"left","R":[{"T":"%20%20Your%20foreign%20address%20(including%20country)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.638,"y":32.077,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.498,"y":32.077,"w":8.224000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20Your%20occupation%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.484,"y":35.05,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.344,"y":35.05,"w":8.596000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20Employer%E2%80%99s%20name%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.613,"y":35.077,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.333,"y":35.077,"w":20.225,"clr":-1,"A":"left","R":[{"T":"Employer%E2%80%99s%20U.S.%20address%20(including%20ZIP%20code)","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":66.025,"y":35.077,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.885,"y":35.077,"w":13.076000000000006,"clr":-1,"A":"left","R":[{"T":"%20%20Employer%E2%80%99s%20foreign%20address%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.811,"y":40.358,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.146,"y":40.245,"w":15.856000000000003,"clr":-1,"A":"left","R":[{"T":"Employer%20is%20(check%20any%20that%20apply)%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.671,"y":41.107,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.146,"y":40.995,"w":7.372,"clr":-1,"A":"left","R":[{"T":"A%20U.S.%20business%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.697,"y":40.995,"w":46.654999999999966,"clr":-1,"A":"left","R":[{"T":"...................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.67,"y":41.858,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.145,"y":41.745,"w":8.538,"clr":-1,"A":"left","R":[{"T":"A%20foreign%20business%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.758,"y":41.745,"w":45.32199999999997,"clr":-1,"A":"left","R":[{"T":"..................................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.67,"y":42.464,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.145,"y":42.433,"w":6.760000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20(specify)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.602,"y":42.339,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.95,"y":43.214,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.67,"y":43.214,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.145,"y":43.183,"w":37.026999999999994,"clr":-1,"A":"left","R":[{"T":"If%20you%20previously%20filed%20Form%202555%20or%202555-EZ%2C%20enter%20the%20last%20year%20you%20filed%20the%20form.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.421,"y":43.089,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.67,"y":44.108,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.145,"y":43.995,"w":28.414999999999992,"clr":-1,"A":"left","R":[{"T":"If%20you%20did%20not%20previously%20file%20Form%202555%20or%202555-EZ%2C%20check%20here%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.099,"y":43.902,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.095,"y":43.995,"w":10.743000000000006,"clr":-1,"A":"left","R":[{"T":"and%20go%20to%20line%2011a%20now.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.671,"y":44.858,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.146,"y":44.745,"w":27.578000000000003,"clr":-1,"A":"left","R":[{"T":"Have%20you%20ever%20revoked%20the%20foreign%20earned%20income%20exclusion%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.696,"y":44.745,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":89.131,"y":44.745,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.623,"y":44.745,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.671,"y":45.464,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.145,"y":45.433,"w":35.98099999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20answered%20%E2%80%9CYes%2C%E2%80%9D%20enter%20the%20tax%20year%20for%20which%20the%20revocation%20was%20effective.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.803,"y":45.339,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.95,"y":46.214,"w":1.9640000000000002,"clr":-1,"A":"left","R":[{"T":"11a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.145,"y":46.183,"w":26.100000000000005,"clr":-1,"A":"left","R":[{"T":"List%20your%20tax%20home(s)%20during%202013%20and%20date(s)%20established.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.518,"y":46.089,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":8.67,"y":47.745,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.145,"y":47.745,"w":19.390000000000008,"clr":-1,"A":"left","R":[{"T":"Of%20what%20country%20are%20you%20a%20citizen%2Fnational%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.139,"y":47.652,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.195,"y":48.513,"w":33.230999999999995,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20the%20Form%201040%20instructions.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":64.064,"y":48.531,"w":7.966000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013272W%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.67,"y":48.478,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.147,"y":48.478,"w":4.1129999999999995,"clr":-1,"A":"left","R":[{"T":"2555-EZ%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":95.375,"y":48.478,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"x":7.9030000000000005,"y":34.24,"w":17.22,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"x":59.434,"y":34.328,"w":61.69000000000001,"clr":0,"A":"left","R":[{"T":"Country%20Code","S":-1,"TS":[0,13,0,0]}]},{"x":7.717,"y":32.845,"w":36.68,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[0,13,0,0]}]},{"x":45.874,"y":33.08,"w":36.68,"clr":0,"A":"left","R":[{"T":"Address","S":-1,"TS":[0,13,0,0]}]},{"x":65.599,"y":35.658,"w":21.119999999999997,"clr":0,"A":"left","R":[{"T":"Addr","S":-1,"TS":[0,13,0,0]}]},{"x":65.694,"y":36.362,"w":26.68,"clr":0,"A":"left","R":[{"T":"Addr2","S":-1,"TS":[0,13,0,0]}]},{"x":65.782,"y":37.053,"w":17.22,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"x":65.861,"y":37.627,"w":20.560000000000002,"clr":0,"A":"left","R":[{"T":"Prov","S":-1,"TS":[0,13,0,0]}]},{"x":65.805,"y":38.377,"w":27.79,"clr":0,"A":"left","R":[{"T":"Postal","S":-1,"TS":[0,13,0,0]}]},{"x":65.542,"y":39.303,"w":35.010000000000005,"clr":0,"A":"left","R":[{"T":"Country","S":-1,"TS":[0,13,0,0]}]},{"x":32.234,"y":36.307,"w":21.119999999999997,"clr":0,"A":"left","R":[{"T":"Addr","S":-1,"TS":[0,13,0,0]}]},{"x":32.266,"y":37.147,"w":17.22,"clr":0,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"x":32.441,"y":38.604,"w":15.56,"clr":0,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":22.584,"y":4.178,"w":43.78999999999997,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%202555-EZ%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fform2555ez","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":17.839,"w":48.84299999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20answered%20%E2%80%9CNo%2C%E2%80%9D%20you%20do%20not%20meet%20this%20test.%20Go%20to%20line%202%20to%20see%20if%20you%20meet%20the%20Physical%20Presence%20Test.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":21.652,"w":3.3910000000000005,"clr":-1,"A":"left","R":[{"T":"2013%20or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.904,"w":45.58599999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20answered%20%E2%80%9CNo%2C%E2%80%9D%20you%20do%20not%20meet%20this%20test.%20You%20cannot%20take%20the%20exclusion%20unless%20you%20meet%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.998,"w":34.08,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20answered%20%E2%80%9CNo%2C%E2%80%9D%20you%20cannot%20take%20the%20exclusion.%20Do%20not%20file%20this%20form.%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1982,"AM":1024,"x":6.229,"y":5.813,"w":74.085,"h":0.914,"TU":"Name shown on Form 1040"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1983,"AM":1024,"x":80.582,"y":5.813,"w":18.397,"h":0.914,"TU":"Your social security number"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L1BBEG","EN":0},"TI":1986,"AM":0,"x":45.511,"y":18.78,"w":11.531,"h":0.833,"TU":"Line 1b. Enter the date your bona fide residence began.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L1BEND","EN":0},"TI":1987,"AM":0,"x":80.79,"y":18.84,"w":11.241,"h":0.833,"TU":"Line 1b. Enter date residence ended (see instructions)","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2BFROM","EN":0},"TI":1990,"AM":0,"x":58.121,"y":25.484,"w":15.679,"h":0.833,"TU":"Line 2b. The physical presence test is based on the 12-month period from","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2BTHRU","EN":0},"TI":1991,"AM":0,"x":84.109,"y":25.582,"w":11.241,"h":0.833,"TU":"Line 2b. Through,","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"H29","EN":0},"TI":1994,"AM":0,"x":15.48,"y":32.97,"w":24.454,"h":0.864,"TU":"Line 4. Your foreign address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L4ADDR1","EN":0},"TI":1995,"AM":0,"x":53.892,"y":33.006,"w":23.624,"h":0.854,"TU":"Line 4. Foreign address continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFCITY","EN":0},"TI":1996,"AM":0,"x":11.305,"y":34.293,"w":22.12,"h":0.868,"TU":"LIne 4. City"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFCNTRY","EN":0},"TI":1997,"AM":0,"x":39.991,"y":34.252,"w":19.64,"h":0.84,"TU":"Line 4. Country."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"POD","EN":0},"TI":1998,"AM":0,"x":70.714,"y":34.313,"w":8.386,"h":0.84,"TU":"Line 4. Foreign country code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"YOCC","EN":0},"TI":1999,"AM":0,"x":80.545,"y":34.276,"w":15.945,"h":0.959,"TU":"Line 5. Your occupation."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6NAME1","EN":0},"TI":2000,"AM":0,"x":7.283,"y":36.058,"w":24.002,"h":0.91,"TU":"Line 6. Employer's name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7ADDR1","EN":0},"TI":2001,"AM":0,"x":37.226,"y":36.261,"w":23.453,"h":0.837,"TU":"Line 7. Employer's U.S. address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8ADDR1","EN":0},"TI":2002,"AM":0,"x":70.676,"y":35.915,"w":22.415,"h":0.833,"TU":"Line 8. Employer's foreign address."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6NAME2","EN":0},"TI":2003,"AM":0,"x":7.189,"y":37.104,"w":23.964,"h":1.05,"TU":"Line 6. Employer's name continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8ADDR2","EN":0},"TI":2004,"AM":0,"x":70.764,"y":36.526,"w":22.273,"h":0.833,"TU":"Line 8. Employer's foreign address continued."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7ADDR3","EN":0},"TI":2005,"AM":0,"x":37.105,"y":37.186,"w":23.183,"h":0.862,"TU":"Line 7. City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LCITY","EN":0},"TI":2006,"AM":0,"x":70.832,"y":37.175,"w":22.232,"h":0.833,"TU":"Line 8. City."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7ST","EN":0},"TI":2007,"AM":0,"x":37.24,"y":38.133,"w":3.376,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LPROV","EN":0},"TI":2008,"AM":0,"x":71.126,"y":37.885,"w":21.99,"h":0.833,"TU":"Line 8. Providence."},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"L7ZIP","EN":0},"TI":2009,"AM":0,"x":37.219,"y":38.936,"w":9.033,"h":0.833,"TU":"Line 7. Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LPOST","EN":0},"TI":2010,"AM":0,"x":72.239,"y":38.825,"w":12.405,"h":0.833,"TU":"Line 8. Foreign Postal code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LCOUNTRY","EN":0},"TI":2011,"AM":0,"x":72.019,"y":39.553,"w":12.716,"h":0.833,"TU":"Line 8. Country."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L9C","EN":0},"TI":2014,"AM":0,"x":23.638,"y":42.609,"w":53.22,"h":0.833,"TU":"Line 9c Other (specify)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":2016,"AM":0,"x":70.663,"y":43.419,"w":28.566,"h":0.833,"TU":"Line 10a. If you previously filed Form 2555 or 2555-EZ, enter the last year you filed the form.","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L10DTX","EN":0},"TI":2020,"AM":0,"x":68.68,"y":45.611,"w":12.409,"h":0.833,"PL":{"V":[" ","2012","2011","2010","2009","2008","2007","2006","2005","2004","2003","2002","2001","2000","1999","1998","1997","1996","1995","1994","1993","1992","1991","1990","1989","1988","1987","1986","1985","1984","1983","1982"],"D":["no entry","2012","2011","2010","2009","2008","2007","2006","2005","2004","2003","2002","2001","2000","1999","1998","1997","1996","1995","1994","1993","1992","1991","1990","1989","1988","1987","1986","1985","1984","1983","1982"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A115_L11A1_1_","EN":0},"TI":2021,"AM":0,"x":11.349,"y":47.097,"w":53.199,"h":0.833,"TU":"Line 11a. List your tax home(s) during 2013."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A115_L11A2_1_","EN":0},"TI":2022,"AM":0,"x":66.293,"y":47.169,"w":32.935,"h":0.833,"TU":"Line 11a. List date(s) established.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":2023,"AM":0,"x":42.926,"y":47.938,"w":12.204,"h":0.833,"TU":"Line 11b. Of what country are you a citizen/national?"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1AYES","EN":0},"TI":1984,"AM":0,"x":87.602,"y":16.346,"w":2.264,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1ANO","EN":0},"TI":1985,"AM":0,"x":93.741,"y":16.406,"w":1.767,"h":0.833,"checked":false}],"id":{"Id":"A6RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX2AYES","EN":0},"TI":1988,"AM":0,"x":87.447,"y":21.595,"w":2.253,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX2ANO","EN":0},"TI":1989,"AM":0,"x":93.715,"y":21.659,"w":2.098,"h":0.833,"checked":false}],"id":{"Id":"A12RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3YES","EN":0},"TI":1992,"AM":0,"x":87.564,"y":27.669,"w":1.932,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3NO","EN":0},"TI":1993,"AM":0,"x":94.073,"y":27.688,"w":1.932,"h":0.833,"checked":false}],"id":{"Id":"A16RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9A","EN":0},"TI":2012,"AM":0,"x":95.83,"y":41.125,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9B","EN":0},"TI":2013,"AM":0,"x":95.888,"y":41.847,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9C","EN":0},"TI":2015,"AM":0,"x":95.946,"y":42.627,"w":1.508,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX10B","EN":0},"TI":2017,"AM":0,"x":57.566,"y":44.033,"w":1.973,"h":0.87}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX10CYES","EN":0},"TI":2018,"AM":0,"x":86.819,"y":44.815,"w":1.789,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX10CNO","EN":0},"TI":2019,"AM":0,"x":92.932,"y":44.844,"w":1.646,"h":0.833,"checked":false}],"id":{"Id":"A50RB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":3,"w":1.5,"l":12.461},{"oc":"#221f1f","x":18.52,"y":3,"w":1.5,"l":80.524},{"oc":"#221f1f","x":6.145,"y":3,"w":1.5,"l":92.899},{"oc":"#221f1f","x":6.145,"y":5.25,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":6.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.657,"y":6.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.17,"y":6.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.445,"y":6.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":6.145,"y":8.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.657,"y":8.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.17,"y":8.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.445,"y":8.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.245,"y":8.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":9.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.657,"y":9.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.169,"y":9.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.444,"y":9.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.244,"y":9.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":11.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.657,"y":11.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.169,"y":11.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.444,"y":11.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.244,"y":11.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":12.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.657,"y":12.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.169,"y":12.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.444,"y":12.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.244,"y":12.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":14.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.656,"y":14.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.169,"y":14.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.444,"y":14.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.244,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":15.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.656,"y":15.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.169,"y":15.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.444,"y":15.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.244,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.144,"y":17.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.656,"y":17.25,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.169,"y":17.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.444,"y":17.25,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.244,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.143,"y":18.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.656,"y":18.75,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.168,"y":18.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.443,"y":18.75,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.243,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.143,"y":20.251,"w":0.75,"l":23.598},{"oc":"#221f1f","x":29.656,"y":20.251,"w":0.75,"l":23.598},{"oc":"#221f1f","x":53.168,"y":20.251,"w":0.75,"l":22.361},{"oc":"#221f1f","x":75.443,"y":20.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":95.243,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":20.25,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":22.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.395,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":24,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.07,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":66.782,"y":26.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":80.395,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":29.25,"w":0.75,"l":7.511},{"oc":"#221f1f","x":91.532,"y":29.25,"w":0.75,"l":7.511},{"oc":"#221f1f","x":80.395,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":31.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":33.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":36.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":36.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.245,"y":36.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":36.75,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":29.7,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.213,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.488,"y":5.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.7,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.213,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.487,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":6.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.7,"y":8.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.212,"y":8.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.487,"y":8.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":8.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.7,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.212,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.487,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":9.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.699,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.212,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.487,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.699,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.212,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.487,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.699,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.212,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.487,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.287,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.699,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.211,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.486,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.286,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.699,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.211,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.486,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.286,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.699,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":53.211,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.486,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.286,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":22.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":22.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.113,"y":24.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":23.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.438,"y":23.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.15,"y":26.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.438,"y":26.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":84.15,"y":29.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.438,"y":29.234,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":29.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":31.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.438,"y":31.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":31.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":33.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":80.438,"y":33.734,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":35.984,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":3.25,"w":7.219,"h":0.938,"clr":-1},{"oc":"#221f1f","x":6.188,"y":20.875,"w":7.219,"h":0.938,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":24,"w":3.712,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":16.25,"y":3.162,"w":15.949000000000005,"clr":-1,"A":"left","R":[{"T":"Days%20Present%20in%20the%20United%20States","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":16.25,"y":20.812,"w":22.28400000000001,"clr":-1,"A":"left","R":[{"T":"Figure%20Your%20Foreign%20Earned%20Income%20Exclusion%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":5.938,"y":1.9409999999999998,"w":9.745000000000003,"clr":-1,"A":"left","R":[{"T":"Form%202555-EZ%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.363,"y":1.9769999999999999,"w":2.8520000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.795,"y":1.9769999999999999,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.304,"y":3.223,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":57.786,"y":3.162,"w":16.169000000000004,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20if%20you%20were%20in%20the","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":16.25,"y":4.123,"w":20.579000000000004,"clr":-1,"A":"left","R":[{"T":"United%20States%20or%20its%20possessions%20during%202013.%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":6.625,"y":5.37,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"12%20%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.495,"y":5.37,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":12.481,"y":5.37,"w":8.964000000000002,"clr":-1,"A":"left","R":[{"T":"Date%20arrived%20in%20U.S.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.101,"y":5.361,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":38.138,"y":5.361,"w":6.223000000000001,"clr":-1,"A":"left","R":[{"T":"Date%20left%20U.S.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":58.192,"y":5.061,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.177,"y":5.061,"w":7.150000000000001,"clr":-1,"A":"left","R":[{"T":"Number%20of%20days","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":58.166,"y":5.661,"w":8.910000000000002,"clr":-1,"A":"left","R":[{"T":"in%20U.S.%20on%20business%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.137,"y":4.999,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.174,"y":4.999,"w":9.947000000000001,"clr":-1,"A":"left","R":[{"T":"Income%20earned%20in%20U.S.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.767,"y":5.71,"w":15.153000000000004,"clr":-1,"A":"left","R":[{"T":"on%20business%20(attach%20computation)%20","S":-1,"TS":[0,11,0,0]}]},{"x":6.263,"y":20.848,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":6.692,"y":23.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":23.089,"w":19.48600000000001,"clr":-1,"A":"left","R":[{"T":"Maximum%20foreign%20earned%20income%20exclusion%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":23.089,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":23.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":25.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":25.339,"w":31.526000000000014,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20number%20of%20days%20in%20your%20qualifying%20period%20that%20fall%20within%202013%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":25.339,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.858999999999995,"y":25.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.976,"y":25.339,"w":2.519,"clr":-1,"A":"left","R":[{"T":"days%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":26.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":26.839,"w":13.376000000000003,"clr":-1,"A":"left","R":[{"T":"Did%20you%20enter%20365%20on%20line%2014%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.08,"y":29.089,"w":19.856,"clr":-1,"A":"left","R":[{"T":"a%20decimal%20(rounded%20to%20at%20least%20three%20places).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.508,"y":28.631,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[2,21,0,0]}]},{"oc":"#221f1f","x":51.313,"y":28.12,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":28.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":85.756,"y":28.286,"w":0.6,"clr":-1,"A":"left","R":[{"T":"%C3%97","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":91.657,"y":28.286,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":6.692,"y":30.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":30.589,"w":11.560000000000004,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2013%20by%20line%2015%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.688,"y":30.589,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":30.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":32.152,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":32.152,"w":40.915999999999976,"clr":-1,"A":"left","R":[{"T":"Enter%2C%20in%20U.S.%20dollars%2C%20the%20total%20foreign%20earned%20income%20you%20earned%20and%20received%20in%202013%20(see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.884,"y":32.839,"w":29.362000000000013,"clr":-1,"A":"left","R":[{"T":"instructions).%20Be%20sure%20to%20include%20this%20amount%20on%20Form%201040%2C%20line%207%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.496,"y":32.839,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":32.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":34.417,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.875,"y":35.786,"w":29.250000000000007,"clr":-1,"A":"left","R":[{"T":"from%20your%20income%20to%20arrive%20at%20total%20income%20on%20Form%201040%2C%20line%2022%20.","S":-1,"TS":[0,11.9,0,0]}]},{"oc":"#221f1f","x":57.488,"y":35.786,"w":14.828000000000005,"clr":-1,"A":"left","R":[{"T":"..........%20","S":-1,"TS":[0,11.9,0,0]}]},{"oc":"#221f1f","x":77.556,"y":35.692,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.184,"y":35.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.413,"y":36.571,"w":2.89,"clr":-1,"A":"left","R":[{"T":"Form%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":87.889,"y":36.571,"w":4.205,"clr":-1,"A":"left","R":[{"T":"2555-EZ%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":95.117,"y":36.571,"w":3.298,"clr":-1,"A":"left","R":[{"T":"%20(2013)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#231f20","x":87.872,"y":23.05,"w":3.9690000000000003,"clr":-1,"A":"left","R":[{"T":"%2497%2C600","S":-1,"TS":[2,13,0,0]}]},{"oc":"#221f1f","x":10.888,"y":34.403,"w":42.908999999999956,"clr":-1,"A":"left","R":[{"T":"Foreign%20earned%20income%20exclusion.%20Enter%20the%20smaller%20of%20line%2016%20or%20line%2017%20here%20and%20in%20parentheses%20","S":-1,"TS":[0,11.9,0,0]}]},{"oc":"#221f1f","x":10.883,"y":35.091,"w":43.203999999999965,"clr":-1,"A":"left","R":[{"T":"on%20Form%201040%2C%20line%2021.%20Next%20to%20the%20amount%20enter%20%E2%80%A22555-EZ.%C5%BD%20On%20Form%201040%2C%20subtract%20this%20amount%20","S":-1,"TS":[0,11.9,0,0]}]},{"oc":"#221f1f","x":12.95,"y":28.433,"w":21.692000000000007,"clr":-1,"A":"left","R":[{"T":"No.%20Divide%20line%2014%20by%20365%20and%20enter%20the%20result%20as%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.798,"y":27.589,"w":8.781,"clr":-1,"A":"left","R":[{"T":"Yes.%20Enter%20%E2%80%9C1.000.%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"x":37.537,"y":25.222,"w":15.195620000000002,"clr":0,"A":"left","R":[{"T":"0%25","S":-1,"TS":[0,97.644,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":2024,"AM":1024,"x":18.758,"y":2.008,"w":56.745,"h":0.914,"TU":"Name shown on Form 1040"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2025,"AM":1024,"x":75.771,"y":2.008,"w":18.397,"h":0.914,"TU":"Your social security number"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_1_","EN":0},"TI":2026,"AM":0,"x":6.349,"y":7.102,"w":23.43,"h":1.149,"TU":"Line 12(a.) Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_1_","EN":0},"TI":2027,"AM":0,"x":29.965,"y":7.102,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_1_","EN":0},"TI":2028,"AM":0,"x":53.477,"y":7.102,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_1_","EN":0},"TI":2029,"AM":0,"x":75.89,"y":7.218,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_2_","EN":0},"TI":2030,"AM":0,"x":6.519,"y":8.571,"w":23.43,"h":1.149,"TU":"Line 12(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_2_","EN":0},"TI":2031,"AM":0,"x":30.135,"y":8.571,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_2_","EN":0},"TI":2032,"AM":0,"x":53.648,"y":8.571,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_2_","EN":0},"TI":2033,"AM":0,"x":76.06,"y":8.663,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_3_","EN":0},"TI":2034,"AM":0,"x":6.123,"y":10.086,"w":23.43,"h":1.149,"TU":"Line 12(a.) Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_3_","EN":0},"TI":2035,"AM":0,"x":29.803,"y":10.086,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_3_","EN":0},"TI":2036,"AM":0,"x":53.316,"y":10.086,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_3_","EN":0},"TI":2037,"AM":0,"x":75.728,"y":10.202,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_4_","EN":0},"TI":2038,"AM":0,"x":6.324,"y":11.527,"w":23.43,"h":1.149,"TU":"Line 12(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_4_","EN":0},"TI":2039,"AM":0,"x":29.876,"y":11.551,"w":23.327,"h":1.149,"TU":"Line 12(b.) Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_4_","EN":0},"TI":2040,"AM":0,"x":53.388,"y":11.551,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_4_","EN":0},"TI":2041,"AM":0,"x":75.801,"y":11.667,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_5_","EN":0},"TI":2042,"AM":0,"x":6.206,"y":13.042,"w":23.43,"h":1.149,"TU":"Line 12a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_5_","EN":0},"TI":2043,"AM":0,"x":29.821,"y":13.042,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_5_","EN":0},"TI":2044,"AM":0,"x":53.477,"y":12.938,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_5_","EN":0},"TI":2045,"AM":0,"x":75.747,"y":13.159,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_6_","EN":0},"TI":2046,"AM":0,"x":6.206,"y":14.606,"w":23.43,"h":1.149,"TU":"Line 12(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_6_","EN":0},"TI":2047,"AM":0,"x":29.821,"y":14.606,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_6_","EN":0},"TI":2048,"AM":0,"x":53.334,"y":14.606,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_6_","EN":0},"TI":2049,"AM":0,"x":75.747,"y":14.722,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_7_","EN":0},"TI":2050,"AM":0,"x":6.233,"y":15.97,"w":23.43,"h":1.149,"TU":"Line 12(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_7_","EN":0},"TI":2051,"AM":0,"x":29.849,"y":15.999,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_7_","EN":0},"TI":2052,"AM":0,"x":53.361,"y":16.046,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_7_","EN":0},"TI":2053,"AM":0,"x":76.06,"y":16.139,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_8_","EN":0},"TI":2054,"AM":0,"x":6.26,"y":17.492,"w":23.43,"h":1.149,"TU":"Line 12(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_8_","EN":0},"TI":2055,"AM":0,"x":29.94,"y":17.492,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_8_","EN":0},"TI":2056,"AM":0,"x":53.388,"y":17.492,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_8_","EN":0},"TI":2057,"AM":0,"x":75.801,"y":17.608,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_9_","EN":0},"TI":2058,"AM":0,"x":6.206,"y":19.035,"w":23.43,"h":1.149,"TU":"Line 12(a). Date arrived in U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_9_","EN":0},"TI":2059,"AM":0,"x":29.821,"y":19.035,"w":23.327,"h":1.149,"TU":"Line 12(b). Date left U.S.","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_9_","EN":0},"TI":2060,"AM":0,"x":53.334,"y":19.035,"w":22.089,"h":1.149,"TU":"Line 12(c). Number of days in U.S. on business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_9_","EN":0},"TI":2061,"AM":0,"x":75.747,"y":19.151,"w":19.367,"h":0.993,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)"},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":2062,"AM":0,"x":67.36,"y":25.317,"w":8.11,"h":0.93,"TU":"Line 14. Enter the number of days in your qualifying period that fall within 2013."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":2065,"AM":1024,"x":87.303,"y":28.349,"w":8.023,"h":0.884,"TU":"Line 15 Enter decimal amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":2066,"AM":0,"x":84.356,"y":30.288,"w":10.746,"h":1.209,"TU":"Line 16. Multiply line 13 by line 15."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":2067,"AM":0,"x":84.356,"y":32.642,"w":10.746,"h":1.058,"TU":"Line 17. Enter, in U.S. dollars, the total foreign earned income you earned and received in 2013 (see instructions). Be sure to include this amount on Form 1040, line 7. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":2068,"AM":0,"x":84.398,"y":35.695,"w":10.663,"h":1.025,"TU":"Line 18. Foreign earned income exclusion. Enter the smaller of line 16 or line 17 here and in parentheses on Form 1040, line 21. Next to the amount enter \"2555-EZ\". On Form 1040, subtract this amount from your income to arrive at total income on Form 1040, line 22. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX15YES","EN":0},"TI":2063,"AM":0,"x":11.035,"y":27.651,"w":1.804,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX15NO","EN":0},"TI":2064,"AM":0,"x":11.05,"y":28.549,"w":1.695,"h":0.833,"checked":false}],"id":{"Id":"A111RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Foreign Earned Income Exclusion","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131119090719-08'00'","ModDate":"D:20140114203149-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":5.25,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":7.634,"y":5.25,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.569,"y":3,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.569,"y":5.25,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.234,"y":6.75,"w":1.125,"l":27.031,"oc":"#221f1f"},{"x":29.234,"y":6.75,"w":1.125,"l":6.781,"oc":"#221f1f"},{"x":2.234,"y":12,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":14.25,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":16.634,"y":19.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":29.234,"y":19.5,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":21.134,"y":26.25,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":30.584,"y":26.25,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":2.234,"y":30,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":32.25,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":35.25,"w":0.75,"l":26.581,"oc":"#221f1f"},{"x":28.784,"y":35.25,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":2.328,"y":40.406,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":11.778,"y":40.406,"w":0.75,"l":12.181,"oc":"#221f1f"},{"x":23.928,"y":40.406,"w":0.75,"l":12.181,"oc":"#221f1f"},{"x":8.628,"y":43.406,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":25.728,"y":44.156,"w":0.75,"l":10.381,"oc":"#221f1f"},{"x":24.828,"y":46.406,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":19.428,"y":47.156,"w":0.75,"l":16.681,"oc":"#221f1f"},{"x":4.128,"y":47.906,"w":0.75,"l":31.981,"oc":"#221f1f"},{"x":2.328,"y":48.656,"w":1.5,"l":17.581,"oc":"#221f1f"},{"x":19.878,"y":48.656,"w":1.5,"l":10.381,"oc":"#221f1f"},{"x":30.228,"y":48.656,"w":1.5,"l":5.881,"oc":"#221f1f"}],"VLines":[{"x":7.65,"y":2.234,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":7.65,"y":3.734,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":30.6,"y":2.234,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":2.984,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":30.6,"y":3.734,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":29.25,"y":5.234,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.8,"y":32.234,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":11.672,"y":35.254,"w":0.75,"l":4.96,"oc":"#221f1f"},{"x":23.859,"y":35.232,"w":0.75,"l":5.098,"oc":"#221f1f"}],"Fills":[{"x":2.25,"y":12.688,"w":2.5,"h":0.938,"oc":"#221f1f"},{"x":2.25,"y":30.688,"w":2.5,"h":0.938,"oc":"#221f1f"}],"Texts":[{"x":11.535,"y":37.818,"w":23.35,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"State","S":-1,"TS":[0,13,0,0]}]},{"x":12.031,"y":34.328,"w":35.01,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Country","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":2.491,"w":2.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":3.264,"y":2.491,"w":3.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2555-EZ","S":-1,"TS":[0,22,1,0]}]},{"x":2,"y":3.5919999999999996,"w":12.54,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.5,0,0]}]},{"x":2,"y":4.102,"w":11.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service","S":-1,"TS":[0,9.5,0,0]}]},{"x":6.506,"y":4.102,"w":2.186,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (99) ","S":2,"TS":[0,10,0,0]}]},{"x":10.505,"y":2.446,"w":16.394,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Foreign Earned Income Exclusion ","S":-1,"TS":[0,22,1,0]}]},{"x":16.136,"y":3.4640000000000004,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":16.511,"y":3.558,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,0,0]}]},{"x":16.651,"y":3.558,"w":10.169,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach to Form 1040. ","S":-1,"TS":[0,11,1,0]}]},{"x":21.754,"y":3.4640000000000004,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,9,0,0]}]},{"x":7.539,"y":4.178,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":7.678,"y":4.085,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":30.072,"y":4.178,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":-1,"TS":[0,11,0,0]}]},{"x":31.019,"y":1.972,"w":9.561,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074 ","S":2,"TS":[0,10,0,0]}]},{"x":31.425,"y":3.393,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.41,"y":3.373,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":31.025,"y":3.875,"w":5.447,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.025,"y":4.258,"w":6.891,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Sequence No. ","S":8,"TS":[0,10,1,0]}]},{"x":33.926,"y":4.259,"w":2.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"34A ","S":10,"TS":[0,14,1,0]}]},{"x":2,"y":4.982,"w":12.671,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name shown on Form 1040 ","S":-1,"TS":[0,11,0,0]}]},{"x":29.25,"y":4.982,"w":13.727,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Your social security number ","S":-1,"TS":[0,10.6,1,0]}]},{"x":2.57,"y":7.885,"w":6.78,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You May Use ","S":-1,"TS":[0,16,1,0]}]},{"x":3.134,"y":8.785,"w":5.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"This Form ","S":-1,"TS":[0,16,1,0]}]},{"x":3.779,"y":9.685,"w":3.389,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If You: ","S":-1,"TS":[0,16,1,0]}]},{"x":7.85,"y":7.339,"w":17.241,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Are a U.S. citizen or a resident alien. ","S":3,"TS":[0,12,0,0]}]},{"x":7.85,"y":8.089,"w":20.296,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Earned wages/salaries in a foreign country. ","S":3,"TS":[0,12,0,0]}]},{"x":7.85,"y":8.902,"w":20.173,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Had total foreign earned income ","S":3,"TS":[0,12,0,0]}]},{"x":8.35,"y":9.59,"w":8.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of $97,600 or less.","S":3,"TS":[0,12,0,0]}]},{"x":7.85,"y":10.389,"w":20.52,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Are filing a calendar year return that covers ","S":3,"TS":[0,12,0,0]}]},{"x":8.35,"y":11.014,"w":8.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a 12-month period. ","S":3,"TS":[0,12,0,0]}]},{"x":21.307,"y":8.785,"w":4.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"And You: ","S":-1,"TS":[0,16,1,0]}]},{"x":24.95,"y":7.339,"w":18.062,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Do not have self-employment income. ","S":3,"TS":[0,12,0,0]}]},{"x":24.95,"y":8.375,"w":19.153,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Do not have business/moving expenses. ","S":3,"TS":[0,12,0,0]}]},{"x":24.95,"y":9.406,"w":15.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Do not claim the foreign housing ","S":3,"TS":[0,12,0,0]}]},{"x":25.45,"y":10.094,"w":10.724,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"exclusion or deduction. ","S":3,"TS":[0,12,0,0]}]},{"x":2.292,"y":12.661,"w":2.833,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I ","S":-1,"TS":[0,15,0,0]}]},{"x":5.75,"y":12.57,"w":32.399,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Tests To See If You Can Take the Foreign Earned Income Exclusion ","S":11,"TS":[0,18,1,0]}]},{"x":2.587,"y":14.839,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":14.839,"w":12.726,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Bona Fide Residence Test ","S":9,"TS":[0,12,1,0]}]},{"x":2.9,"y":15.651,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":15.651,"w":47.654,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Were you a bona fide resident of a foreign country or countries for a period that includes an entire tax year ","S":3,"TS":[0,12,0,0]}]},{"x":3.798,"y":16.339,"w":8.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions)? ","S":3,"TS":[0,12,0,0]}]},{"x":8.748,"y":16.339,"w":39.99,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"x":32.45,"y":16.339,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"x":34.653,"y":16.339,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":17.089,"w":35.305,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you answered “Yes,” you meet this test. Fill in line 1b and then go to line 3. ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":18.558,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"b ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":18.527,"w":20.986,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the date your bona fide residence began ","S":3,"TS":[0,12,0,0]}]},{"x":15.604,"y":18.433,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":20.9,"y":18.527,"w":13.448,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":", and ended (see instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":28.464,"y":18.433,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":28.902,"y":18.527,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":34.463,"y":18.558,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":20.089,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":20.089,"w":11.395,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Physical Presence Test ","S":9,"TS":[0,12,1,0]}]},{"x":2.9,"y":20.839,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":20.839,"w":42.358,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Were you physically present in a foreign country or countries for at least 330 full days during— ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":22.104,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"{","S":-1,"TS":[2,13,0,0]}]},{"x":6.22,"y":21.652,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":22.339,"w":29.823,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"any other period of 12 months in a row starting or ending in 2013? ","S":3,"TS":[0,12,0,0]}]},{"x":21.05,"y":22.104,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[2,13,0,0]}]},{"x":21.5,"y":21.745,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":32.45,"y":21.569,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"x":34.7,"y":21.569,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":23.092,"w":35.305,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you answered “Yes,” you meet this test. Fill in line 2b and then go to line 3. ","S":3,"TS":[0,12,0,0]}]},{"x":4.296,"y":24.592,"w":15.317,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Bona Fide Residence Test above. ","S":3,"TS":[0,12,0,0]}]},{"x":2.896,"y":25.308,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"b ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":25.277,"w":29.472,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"The physical presence test is based on the 12-month period from ","S":3,"TS":[0,12,0,0]}]},{"x":20.378,"y":25.183,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":27.713,"y":25.277,"w":3.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"through ","S":3,"TS":[0,12,0,0]}]},{"x":29.817,"y":25.183,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":34.463,"y":25.308,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":26.902,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":26.902,"w":7.669,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Tax Home Test. ","S":9,"TS":[0,12,1,0]}]},{"x":7.632,"y":26.902,"w":39.581,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Was your tax home in a foreign country or countries throughout your period of bona fide ","S":3,"TS":[0,12,0,0]}]},{"x":3.8040000000000003,"y":27.589,"w":23.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"residence or physical presence, whichever applies? ","S":3,"TS":[0,12,0,0]}]},{"x":17.004,"y":27.589,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":32.382,"y":27.589,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"x":34.7,"y":27.589,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":28.339,"w":44.637,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you answered “Yes,” you can take the exclusion. Complete Part II below and then go to page 2. ","S":3,"TS":[0,12,0,0]}]},{"x":2.181,"y":30.661,"w":3.128,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II ","S":-1,"TS":[0,15,0,0]}]},{"x":5.75,"y":30.57,"w":9.78,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"General Information ","S":11,"TS":[0,18,1,0]}]},{"x":2.563,"y":32.077,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4","S":3,"TS":[0,12,0,0]}]},{"x":2.875,"y":32.077,"w":18.669,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Your foreign address (including country) ","S":3,"TS":[0,12,0,0]}]},{"x":28.8,"y":32.077,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"x":29.113,"y":32.077,"w":8.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Your occupation ","S":3,"TS":[0,12,0,0]}]},{"x":2.563,"y":35.05,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"x":2.875,"y":35.05,"w":8.596,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Employer’s name ","S":3,"TS":[0,12,0,0]}]},{"x":11.7,"y":35.077,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"x":12.013,"y":35.077,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":12.326,"y":35.077,"w":20.225,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Employer’s U.S. address (including ZIP code)","S":-1,"TS":[0,11.82,0,0]}]},{"x":23.474,"y":35.077,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":23.85,"y":35.077,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"x":24.163,"y":35.077,"w":13.076,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Employer’s foreign address ","S":3,"TS":[0,12,0,0]}]},{"x":2.681,"y":40.358,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9 ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":40.245,"w":15.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Employer is (check any that apply): ","S":3,"TS":[0,12,0,0]}]},{"x":2.994,"y":41.107,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":40.995,"w":7.372,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"A U.S. business ","S":3,"TS":[0,12,0,0]}]},{"x":8.094,"y":40.995,"w":46.655,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................................","S":3,"TS":[0,12,0,0]}]},{"x":2.994,"y":41.858,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"b ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":41.745,"w":8.538,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"A foreign business ","S":3,"TS":[0,12,0,0]}]},{"x":8.844,"y":41.745,"w":45.322,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................................","S":3,"TS":[0,12,0,0]}]},{"x":2.994,"y":42.464,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"c ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":42.433,"w":6.76,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other (specify) ","S":3,"TS":[0,12,0,0]}]},{"x":7.696,"y":42.339,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2.368,"y":43.214,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10 ","S":3,"TS":[0,12,0,0]}]},{"x":2.994,"y":43.214,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":43.183,"w":37.027,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you previously filed Form 2555 or 2555-EZ, enter the last year you filed the form. ","S":3,"TS":[0,12,0,0]}]},{"x":24.721,"y":43.089,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2.994,"y":44.108,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"b ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":43.995,"w":28.415,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you did not previously file Form 2555 or 2555-EZ, check here ","S":3,"TS":[0,12,0,0]}]},{"x":19.877,"y":43.902,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":21.694,"y":43.995,"w":10.743,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and go to line 11a now. ","S":3,"TS":[0,12,0,0]}]},{"x":2.994,"y":44.858,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"c ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":44.745,"w":27.578,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Have you ever revoked the foreign earned income exclusion? ","S":3,"TS":[0,12,0,0]}]},{"x":20.094,"y":44.745,"w":19.995,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"x":32.252,"y":44.745,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"x":34.249,"y":44.745,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":2.994,"y":45.464,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"d ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":45.433,"w":35.981,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you answered “Yes,” enter the tax year for which the revocation was effective. ","S":3,"TS":[0,12,0,0]}]},{"x":24.133,"y":45.339,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2.368,"y":46.214,"w":1.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11a ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":46.183,"w":26.1,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"List your tax home(s) during 2013 and date(s) established. ","S":3,"TS":[0,12,0,0]}]},{"x":18.575,"y":46.089,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2.994,"y":47.745,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"b ","S":3,"TS":[0,12,0,0]}]},{"x":3.894,"y":47.745,"w":19.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Of what country are you a citizen/national? ","S":3,"TS":[0,12,0,0]}]},{"x":14.8,"y":47.652,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2.094,"y":48.513,"w":33.231,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see the Form 1040 instructions. ","S":-1,"TS":[0,11,1,0]}]},{"x":23.137,"y":48.531,"w":7.966,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 13272W ","S":2,"TS":[0,10,0,0]}]},{"x":30.63,"y":48.478,"w":2.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":31.894,"y":48.478,"w":4.113,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2555-EZ ","S":10,"TS":[0,14,1,0]}]},{"x":34.523,"y":48.478,"w":3.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":2.715,"y":34.24,"w":17.22,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"x":21.453,"y":34.328,"w":61.69,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Country Code","S":-1,"TS":[0,13,0,0]}]},{"x":2.647,"y":32.845,"w":36.68,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Address","S":-1,"TS":[0,13,0,0]}]},{"x":16.522,"y":33.08,"w":36.68,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Address","S":-1,"TS":[0,13,0,0]}]},{"x":23.695,"y":35.658,"w":21.12,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Addr","S":-1,"TS":[0,13,0,0]}]},{"x":23.73,"y":36.362,"w":26.68,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Addr2","S":-1,"TS":[0,13,0,0]}]},{"x":23.762,"y":37.053,"w":17.22,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"x":23.79,"y":37.627,"w":20.56,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Prov","S":-1,"TS":[0,13,0,0]}]},{"x":23.77,"y":38.377,"w":27.79,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Postal","S":-1,"TS":[0,13,0,0]}]},{"x":23.674,"y":39.303,"w":35.01,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Country","S":-1,"TS":[0,13,0,0]}]},{"x":11.562,"y":36.307,"w":21.12,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Addr","S":-1,"TS":[0,13,0,0]}]},{"x":11.574,"y":37.147,"w":17.22,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"City","S":-1,"TS":[0,13,0,0]}]},{"x":11.637,"y":38.604,"w":15.56,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"ZIP","S":-1,"TS":[0,13,0,0]}]},{"x":8.053,"y":4.178,"w":43.79,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Information about Form 2555-EZ and its separate instructions is at www.irs.gov/form2555ez","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":17.839,"w":48.843,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you answered “No,” you do not meet this test. Go to line 2 to see if you meet the Physical Presence Test. ","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":21.652,"w":3.391,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2013 or","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":23.904,"w":45.586,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you answered “No,” you do not meet this test. You cannot take the exclusion unless you meet the ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":28.998,"w":34.08,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you answered “No,” you cannot take the exclusion. Do not file this form. ","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":2571,"AM":1024,"TU":"Name shown on Form 1040","x":2.265,"y":5.813,"w":26.94,"h":0.914},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":2572,"AM":1024,"TU":"Your social security number","x":29.302,"y":5.813,"w":6.69,"h":0.914},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L1BBEG","EN":0},"TI":2575,"AM":0,"TU":"Line 1b. Enter the date your bona fide residence began.","x":16.55,"y":18.78,"w":4.193,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L1BEND","EN":0},"TI":2576,"AM":0,"TU":"Line 1b. Enter date residence ended (see instructions)","x":29.378,"y":18.84,"w":4.088,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2BFROM","EN":0},"TI":2579,"AM":0,"TU":"Line 2b. The physical presence test is based on the 12-month period from","x":21.135,"y":25.484,"w":5.702,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L2BTHRU","EN":0},"TI":2580,"AM":0,"TU":"Line 2b. Through,","x":30.585,"y":25.582,"w":4.088,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"H29","EN":0},"TI":2583,"AM":0,"TU":"Line 4. Your foreign address.","x":5.629,"y":32.97,"w":8.892,"h":0.864},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L4ADDR1","EN":0},"TI":2584,"AM":0,"TU":"Line 4. Foreign address continued.","x":19.597,"y":33.006,"w":8.591,"h":0.854},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFCITY","EN":0},"TI":2585,"AM":0,"TU":"LIne 4. City","x":4.111,"y":34.293,"w":8.044,"h":0.868},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TPFCNTRY","EN":0},"TI":2586,"AM":0,"TU":"Line 4. Country.","x":14.542,"y":34.252,"w":7.142,"h":0.84},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"POD","EN":0},"TI":2587,"AM":0,"TU":"Line 4. Foreign country code.","x":25.714,"y":34.313,"w":3.049,"h":0.84},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"YOCC","EN":0},"TI":2588,"AM":0,"TU":"Line 5. Your occupation.","x":29.289,"y":34.276,"w":5.798,"h":0.959},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6NAME1","EN":0},"TI":2589,"AM":0,"TU":"Line 6. Employer's name.","x":2.648,"y":36.058,"w":8.728,"h":0.91},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7ADDR1","EN":0},"TI":2590,"AM":0,"TU":"Line 7. Employer's U.S. address","x":13.537,"y":36.261,"w":8.528,"h":0.837},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8ADDR1","EN":0},"TI":2591,"AM":0,"TU":"Line 8. Employer's foreign address.","x":25.7,"y":35.915,"w":8.151,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L6NAME2","EN":0},"TI":2592,"AM":0,"TU":"Line 6. Employer's name continued.","x":2.614,"y":37.104,"w":8.714,"h":1.05},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8ADDR2","EN":0},"TI":2593,"AM":0,"TU":"Line 8. Employer's foreign address continued.","x":25.733,"y":36.526,"w":8.099,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7ADDR3","EN":0},"TI":2594,"AM":0,"TU":"Line 7. City.","x":13.493,"y":37.186,"w":8.43,"h":0.862},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LCITY","EN":0},"TI":2595,"AM":0,"TU":"Line 8. City.","x":25.757,"y":37.175,"w":8.084,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L7ST","EN":0},"TI":2596,"AM":0,"TU":"State","x":13.542,"y":38.133,"w":0.909,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AL"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LPROV","EN":0},"TI":2597,"AM":0,"TU":"Line 8. Providence.","x":25.864,"y":37.885,"w":7.996,"h":0.833},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"L7ZIP","EN":0},"TI":2598,"AM":0,"TU":"Line 7. Zip code.","x":13.534,"y":38.936,"w":3.285,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LPOST","EN":0},"TI":2599,"AM":0,"TU":"Line 8. Foreign Postal code.","x":26.269,"y":38.825,"w":4.511,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LCOUNTRY","EN":0},"TI":2600,"AM":0,"TU":"Line 8. Country.","x":26.189,"y":39.553,"w":4.624,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L9C","EN":0},"TI":2603,"AM":0,"TU":"Line 9c Other (specify)","x":8.596,"y":42.609,"w":19.353,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L10A","EN":0},"TI":2605,"AM":0,"TU":"Line 10a. If you previously filed Form 2555 or 2555-EZ, enter the last year you filed the form.","x":25.696,"y":43.419,"w":10.387,"h":0.833,"MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L10DTX","EN":0},"TI":2609,"AM":0,"TU":"Line 10d. If you answered \"Yes\", enter the tax year for which the revocation was effective.","x":24.975,"y":45.611,"w":4.194,"h":0.833,"PL":{"V":[" ","2012","2011","2010","2009","2008","2007","2006","2005","2004","2003","2002","2001","2000","1999","1998","1997","1996","1995","1994","1993","1992","1991","1990","1989","1988","1987","1986","1985","1984","1983","1982"],"D":["no entry","2012","2011","2010","2009","2008","2007","2006","2005","2004","2003","2002","2001","2000","1999","1998","1997","1996","1995","1994","1993","1992","1991","1990","1989","1988","1987","1986","1985","1984","1983","1982"]},"V":"no entry"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A115_L11A1_1_","EN":0},"TI":2610,"AM":0,"TU":"Line 11a. List your tax home(s) during 2013.","x":4.127,"y":47.097,"w":19.345,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A115_L11A2_1_","EN":0},"TI":2611,"AM":0,"TU":"Line 11a. List date(s) established.","x":24.107,"y":47.169,"w":11.976,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":2612,"AM":0,"TU":"Line 11b. Of what country are you a citizen/national?","x":15.61,"y":47.938,"w":4.438,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1AYES","EN":0},"TI":2573,"AM":0,"TU":"Line 1a Checkboxes. Bona Fide Residence Test.","x":31.855,"y":16.346,"w":0.823,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1ANO","EN":0},"TI":2574,"AM":0,"TU":"Line 1a Checkboxes. Bona Fide Residence Test.","x":34.088,"y":16.406,"w":0.642,"h":0.833,"checked":false}],"id":{"Id":"A6RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX2AYES","EN":0},"TI":2577,"AM":0,"TU":"Line 2a Checkboxes. Physical Presence Test.","x":31.799,"y":21.595,"w":0.819,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX2ANO","EN":0},"TI":2578,"AM":0,"TU":"Line 2a Checkboxes. Physical Presence Test.","x":34.078,"y":21.659,"w":0.763,"h":0.833,"checked":false}],"id":{"Id":"A12RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3YES","EN":0},"TI":2581,"AM":0,"TU":"Line 3 Checkboxes. Tax Home Test.","x":31.842,"y":27.669,"w":0.703,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3NO","EN":0},"TI":2582,"AM":0,"TU":"Line 3 Checkboxes. Tax Home Test.","x":34.208,"y":27.688,"w":0.703,"h":0.833,"checked":false}],"id":{"Id":"A16RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9A","EN":0},"TI":2601,"AM":0,"TU":"Line 9a. Checkbox. A U.S. business","x":34.847,"y":41.125,"w":0.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9B","EN":0},"TI":2602,"AM":0,"TU":"Line 9b. Checkbox. A foreign business","x":34.868,"y":41.847,"w":0.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX9C","EN":0},"TI":2604,"AM":0,"TU":"Line 9c. Checkbox. Other.","x":34.889,"y":42.627,"w":0.548,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX10B","EN":0},"TI":2606,"AM":0,"x":20.933,"y":44.033,"w":0.717,"h":0.87}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX10CYES","EN":0},"TI":2607,"AM":0,"TU":"Line 10c. Checkboxes.","x":31.571,"y":44.815,"w":0.651,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX10CNO","EN":0},"TI":2608,"AM":0,"TU":"Line 10c. Checkboxes.","x":33.794,"y":44.844,"w":0.598,"h":0.833,"checked":false}],"id":{"Id":"A50RB","EN":0}}]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":3,"w":1.5,"l":4.531,"oc":"#221f1f"},{"x":6.734,"y":3,"w":1.5,"l":29.281,"oc":"#221f1f"},{"x":2.234,"y":3,"w":1.5,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":5.25,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":6.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":6.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":6.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":6.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":2.234,"y":8.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":8.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":8.25,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":8.25,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":8.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":9.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":9.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":9.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":9.75,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":9.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":11.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":11.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":11.25,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":11.25,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":11.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":12.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":12.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":12.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":12.75,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":12.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":14.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":14.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":14.25,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":14.25,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":14.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":15.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":15.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":15.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":15.75,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":15.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":17.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":17.25,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":17.25,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":17.25,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":17.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":18.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":18.75,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":18.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":18.75,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":18.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":20.251,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":10.784,"y":20.251,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":19.334,"y":20.251,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.434,"y":20.251,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":34.634,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":20.25,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":22.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":29.234,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":24,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.634,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.934,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":24.284,"y":26.25,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":29.234,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":29.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":29.25,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":33.284,"y":29.25,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":29.234,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":31.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.634,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":33.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":33.75,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.634,"y":33.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":36.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":36.75,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.634,"y":36.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":36.75,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":10.8,"y":5.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":5.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":5.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":6.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":6.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":6.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":6.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":8.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":8.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":8.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":8.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":9.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":9.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":9.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":9.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":11.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":11.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":11.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":11.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":17.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.35,"y":17.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":17.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":17.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":19.349,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.45,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.6,"y":22.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.25,"y":22.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.3,"y":24.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.95,"y":24.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.6,"y":23.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.25,"y":23.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.6,"y":26.235,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":29.25,"y":26.235,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":30.6,"y":29.234,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.25,"y":29.234,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.65,"y":29.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":31.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.25,"y":31.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.65,"y":31.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":33.734,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":29.25,"y":33.734,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":34.65,"y":33.734,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.65,"y":35.984,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.25,"y":3.25,"w":2.625,"h":0.938,"oc":"#221f1f"},{"x":2.25,"y":20.875,"w":2.625,"h":0.938,"oc":"#221f1f"},{"x":29.25,"y":24,"w":1.35,"h":2.25,"oc":"#bebfc1"}],"Texts":[{"x":5.75,"y":3.162,"w":15.949,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Days Present in the United States","S":11,"TS":[0,18,1,0]}]},{"x":5.75,"y":20.812,"w":22.284,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Figure Your Foreign Earned Income Exclusion ","S":11,"TS":[0,18,1,0]}]},{"x":2,"y":1.9409999999999998,"w":9.745,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 2555-EZ (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":34.155,"y":1.9769999999999999,"w":2.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":1.9769999999999999,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.133,"y":3.223,"w":3.423,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III ","S":-1,"TS":[0,15,0,0]}]},{"x":20.854,"y":3.162,"w":16.169,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete this part if you were in the","S":-1,"TS":[0,15,0,0]}]},{"x":32.981,"y":3.162,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,17,0,0]}]},{"x":5.75,"y":4.123,"w":20.579,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"United States or its possessions during 2013. ","S":-1,"TS":[0,15,0,0]}]},{"x":2.25,"y":5.37,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12 ","S":3,"TS":[0,12,0,0]}]},{"x":3.657,"y":5.37,"w":1.444,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(a) ","S":-1,"TS":[0,11,0,0]}]},{"x":4.379,"y":5.37,"w":8.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date arrived in U.S. ","S":-1,"TS":[0,11,0,0]}]},{"x":12.969,"y":5.361,"w":1.481,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(b) ","S":-1,"TS":[0,11,0,0]}]},{"x":13.709,"y":5.361,"w":6.223,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date left U.S. ","S":-1,"TS":[0,11,0,0]}]},{"x":21.002,"y":5.061,"w":1.444,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(c) ","S":-1,"TS":[0,11,0,0]}]},{"x":21.724,"y":5.061,"w":7.15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Number of days","S":-1,"TS":[0,11,0,0]}]},{"x":25.299,"y":5.061,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":20.992,"y":5.661,"w":8.91,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"in U.S. on business ","S":-1,"TS":[0,11,0,0]}]},{"x":28.618,"y":4.999,"w":1.481,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(d) ","S":-1,"TS":[0,11,0,0]}]},{"x":29.359,"y":4.999,"w":9.947,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Income earned in U.S.","S":-1,"TS":[0,11,0,0]}]},{"x":34.332,"y":4.999,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":27.756,"y":5.71,"w":15.153,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on business (attach computation) ","S":-1,"TS":[0,11,0,0]}]},{"x":35.333,"y":5.71,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":35.472,"y":5.71,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":35.611,"y":5.71,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":35.75,"y":5.71,"w":0.212,"oc":"#221f1f","sw":0.27603125,"A":"left","R":[{"T":" ","S":-1,"TS":[3,13,0,0]}]},{"x":2.089,"y":5.734,"w":1.39,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":10.639,"y":5.734,"w":1.39,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":19.189,"y":5.734,"w":1.39,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":27.289,"y":5.734,"w":1.39,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":34.489,"y":5.734,"w":1.39,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":2.118,"y":20.848,"w":3.463,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part IV ","S":-1,"TS":[0,15,0,0]}]},{"x":2.275,"y":23.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13 ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":23.089,"w":19.486,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Maximum foreign earned income exclusion ","S":3,"TS":[0,12,0,0]}]},{"x":15.5,"y":23.089,"w":23.994,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":29.362,"y":23.089,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":25.339,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14 ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":25.339,"w":31.526,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the number of days in your qualifying period that fall within 2013 ","S":3,"TS":[0,12,0,0]}]},{"x":22.251,"y":25.339,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":23.062,"y":25.339,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14 ","S":3,"TS":[0,12,0,0]}]},{"x":27.468,"y":25.339,"w":2.519,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"days ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":26.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15 ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":26.839,"w":13.376,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you enter 365 on line 14? ","S":3,"TS":[0,12,0,0]}]},{"x":6.052,"y":29.089,"w":19.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a decimal (rounded to at least three places). ","S":3,"TS":[0,12,0,0]}]},{"x":17.48,"y":28.631,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[2,21,0,0]}]},{"x":18.5,"y":28.12,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":29.362,"y":28.339,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15 ","S":3,"TS":[0,12,0,0]}]},{"x":31.025,"y":28.286,"w":0.6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"×","S":-1,"TS":[0,15,0,0]}]},{"x":33.171,"y":28.286,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":-1,"TS":[0,15,0,0]}]},{"x":2.275,"y":30.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16 ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":30.589,"w":11.56,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 13 by line 15 ","S":3,"TS":[0,12,0,0]}]},{"x":11,"y":30.589,"w":31.992,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"x":29.362,"y":30.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":32.152,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17 ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":32.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":32.152,"w":40.916,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter, in U.S. dollars, the total foreign earned income you earned and received in 2013 (see ","S":3,"TS":[0,12,0,0]}]},{"x":3.7990000000000004,"y":32.839,"w":29.362,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions). Be sure to include this amount on Form 1040, line 7 ","S":3,"TS":[0,12,0,0]}]},{"x":20.749,"y":32.839,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":29.362,"y":32.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":34.417,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18 ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":35.12,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":35.824,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.7960000000000003,"y":35.786,"w":29.25,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from your income to arrive at total income on Form 1040, line 22 .","S":-1,"TS":[0,11.9,0,0]}]},{"x":20.746,"y":35.786,"w":13.48,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,11.9,0,0]}]},{"x":27.882,"y":35.786,"w":1.348,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11.9,0,0]}]},{"x":28.043,"y":35.692,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.362,"y":35.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18 ","S":3,"TS":[0,12,0,0]}]},{"x":30.536,"y":36.571,"w":2.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":31.801000000000002,"y":36.571,"w":4.205,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2555-EZ ","S":-1,"TS":[0,13,0,0]}]},{"x":34.429,"y":36.571,"w":3.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (2013) ","S":2,"TS":[0,10,0,0]}]},{"x":31.793999999999997,"y":23.05,"w":3.969,"oc":"#231f20","sw":0.32553125,"A":"left","R":[{"T":"$97,600","S":-1,"TS":[2,13,0,0]}]},{"x":3.8,"y":34.403,"w":42.909,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Foreign earned income exclusion. Enter the smaller of line 16 or line 17 here and in parentheses ","S":-1,"TS":[0,11.9,0,0]}]},{"x":3.798,"y":35.091,"w":43.204,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"on Form 1040, line 21. Next to the amount enter •2555-EZ.Ž On Form 1040, subtract this amount ","S":-1,"TS":[0,11.9,0,0]}]},{"x":4.55,"y":28.433,"w":21.692,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No. Divide line 14 by 365 and enter the result as ","S":3,"TS":[0,12,0,0]}]},{"x":4.495,"y":27.589,"w":8.781,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes. Enter “1.000.” ","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":2717,"AM":1024,"TU":"Name shown on Form 1040","x":6.821,"y":2.008,"w":20.634,"h":0.914},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2718,"AM":1024,"TU":"Your social security number","x":27.553,"y":2.008,"w":6.69,"h":0.914},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_1_","EN":0},"TI":2719,"AM":0,"TU":"Line 12(a.) Date arrived in U.S.","x":2.309,"y":7.102,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_1_","EN":0},"TI":2720,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.896,"y":7.102,"w":8.483,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_1_","EN":0},"TI":2721,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.446,"y":7.102,"w":8.033,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_1_","EN":0},"TI":2722,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.596,"y":7.218,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_2_","EN":0},"TI":2723,"AM":0,"TU":"Line 12(a). Date arrived in U.S.","x":2.371,"y":8.571,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_2_","EN":0},"TI":2724,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.958,"y":8.571,"w":8.483,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_2_","EN":0},"TI":2725,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.508,"y":8.571,"w":8.033,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_2_","EN":0},"TI":2726,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.658,"y":8.663,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_3_","EN":0},"TI":2727,"AM":0,"TU":"Line 12(a.) Date arrived in U.S.","x":2.227,"y":10.086,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_3_","EN":0},"TI":2728,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.838,"y":10.086,"w":8.482,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_3_","EN":0},"TI":2729,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.387,"y":10.086,"w":8.033,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_3_","EN":0},"TI":2730,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.538,"y":10.202,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_4_","EN":0},"TI":2731,"AM":0,"TU":"Line 12(a). Date arrived in U.S.","x":2.3,"y":11.527,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_4_","EN":0},"TI":2732,"AM":0,"TU":"Line 12(b.) Date arrived in U.S.","x":10.864,"y":11.551,"w":8.482,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_4_","EN":0},"TI":2733,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.414,"y":11.551,"w":8.032,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_4_","EN":0},"TI":2734,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.564,"y":11.667,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_5_","EN":0},"TI":2735,"AM":0,"TU":"Line 12a). Date arrived in U.S.","x":2.257,"y":13.042,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_5_","EN":0},"TI":2736,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.844,"y":13.042,"w":8.482,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_5_","EN":0},"TI":2737,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.446,"y":12.938,"w":8.033,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_5_","EN":0},"TI":2738,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.544,"y":13.159,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_6_","EN":0},"TI":2739,"AM":0,"TU":"Line 12(a). Date arrived in U.S.","x":2.257,"y":14.606,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_6_","EN":0},"TI":2740,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.844,"y":14.606,"w":8.482,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_6_","EN":0},"TI":2741,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.394,"y":14.606,"w":8.033,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_6_","EN":0},"TI":2742,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.544,"y":14.722,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_7_","EN":0},"TI":2743,"AM":0,"TU":"Line 12(a). Date arrived in U.S.","x":2.266,"y":15.97,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_7_","EN":0},"TI":2744,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.854,"y":15.999,"w":8.483,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_7_","EN":0},"TI":2745,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.404,"y":16.046,"w":8.032,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_7_","EN":0},"TI":2746,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.658,"y":16.139,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_8_","EN":0},"TI":2747,"AM":0,"TU":"Line 12(a). Date arrived in U.S.","x":2.276,"y":17.492,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_8_","EN":0},"TI":2748,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.887,"y":17.492,"w":8.483,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_8_","EN":0},"TI":2749,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.414,"y":17.492,"w":8.032,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_8_","EN":0},"TI":2750,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.564,"y":17.608,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_ARR1_9_","EN":0},"TI":2751,"AM":0,"TU":"Line 12(a). Date arrived in U.S.","x":2.257,"y":19.035,"w":8.52,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"L14ONE_LFT1_9_","EN":0},"TI":2752,"AM":0,"TU":"Line 12(b). Date left U.S.","x":10.844,"y":19.035,"w":8.482,"h":1.149,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_NUM1_9_","EN":0},"TI":2753,"AM":0,"TU":"Line 12(c). Number of days in U.S. on business.","x":19.394,"y":19.035,"w":8.033,"h":1.149},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14ONE_INC1_9_","EN":0},"TI":2754,"AM":0,"TU":"Line 12(d). Income earned in U.S. on business (attach computation)","x":27.544,"y":19.151,"w":7.042,"h":0.993},{"style":48,"T":{"Name":"percent","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":2755,"AM":0,"TU":"Line 14. Enter the number of days in your qualifying period that fall within 2013.","x":24.494,"y":25.317,"w":2.949,"h":0.93},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":2758,"AM":1024,"TU":"Line 15 Enter decimal amount.","x":31.747,"y":28.349,"w":2.917,"h":0.884},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":2759,"AM":0,"TU":"Line 16. Multiply line 13 by line 15.","x":30.675,"y":30.288,"w":3.907,"h":1.209},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":2760,"AM":0,"TU":"Line 17. Enter, in U.S. dollars, the total foreign earned income you earned and received in 2013 (see instructions). Be sure to include this amount on Form 1040, line 7. Dollars.","x":30.675,"y":32.642,"w":3.907,"h":1.058},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":2761,"AM":0,"TU":"Line 18. Foreign earned income exclusion. Enter the smaller of line 16 or line 17 here and in parentheses on Form 1040, line 21. Next to the amount enter \"2555-EZ\". On Form 1040, subtract this amount from your income to arrive at total income on Form 1040, line 22. Dollars.","x":30.69,"y":35.695,"w":3.878,"h":1.025}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX15YES","EN":0},"TI":2756,"AM":0,"TU":"Line 15. Checkboxes","x":4.013,"y":27.651,"w":0.656,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX15NO","EN":0},"TI":2757,"AM":0,"TU":"Line 15. Checkboxes","x":4.018,"y":28.549,"w":0.616,"h":0.833,"checked":false}],"id":{"Id":"A111RB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/F982.json b/test/data/fd/form/F982.json index 257ef872..14442c01 100755 --- a/test/data/fd/form/F982.json +++ b/test/data/fd/form/F982.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"Form 982 (Rev. July 2013)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":14.936},{"oc":"#221f1f","x":84.066,"y":3.751,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":5.251,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":69.386},{"oc":"#221f1f","x":75.447,"y":6.751,"w":1.125,"l":23.598},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":13.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":15.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":17.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":19.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":22.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":24.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":25.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":27.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":28.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":30.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":32.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":33.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":35.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":36.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.397,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":38.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.147,"y":38.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":39.751,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":54.409,"y":41.251,"w":0.75,"l":27.311},{"dsh":1,"oc":"#221f1f","x":25.947,"y":42.001,"w":0.75,"l":29.786},{"dsh":1,"oc":"#221f1f","x":68.022,"y":42.001,"w":0.75,"l":29.786},{"dsh":1,"oc":"#221f1f","x":8.622,"y":44.251,"w":0.75,"l":65.674},{"oc":"#221f1f","x":6.147,"y":45.001,"w":1.5,"l":92.899},{"oc":"#221f1f","x":6.147,"y":46.501,"w":1.5,"l":40.923},{"oc":"#221f1f","x":46.984,"y":46.501,"w":1.5,"l":37.211},{"oc":"#221f1f","x":84.109,"y":46.501,"w":1.5,"l":14.936},{"oc":"#221f1f","x":20.997,"y":5.251,"w":1.5,"l":63.199}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.152,"y":3.735,"w":1.5,"l":1.547},{"oc":"#221f1f","x":75.49,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":17.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":17.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.152,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":20.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":20.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":25.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":25.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":29.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.44,"y":29.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.152,"y":32.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":32.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":36.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":36.736,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":7.086,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":15.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":38.612,"w":6.188,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.572,"w":3.168,"clr":-1,"A":"left","R":[{"T":"Form%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":9.751,"y":2.572,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"982","S":-1,"TS":[0,28,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.287,"w":7.095000000000001,"clr":-1,"A":"left","R":[{"T":"(Rev.%20July%202013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":3.8369999999999997,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.275,"w":11.371000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":26.383,"y":2.101,"w":23.114000000000004,"clr":-1,"A":"left","R":[{"T":"Reduction%20of%20Tax%20Attributes%20Due%20to%20Discharge%20of%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":24.338,"y":2.914,"w":24.284000000000006,"clr":-1,"A":"left","R":[{"T":"Indebtedness%20(and%20Section%201082%20Basis%20Adjustment)","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":37.699,"y":3.606,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":38.73,"y":3.699,"w":20.559000000000005,"clr":-1,"A":"left","R":[{"T":"%20Attach%20this%20form%20to%20your%20income%20tax%20return.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.743,"y":2.348,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0046","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.6879999999999997,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":4.197,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.942,"y":4.197,"w":1.112,"clr":-1,"A":"left","R":[{"T":"94","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":10.187000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.927,"y":4.938,"w":9.000999999999998,"clr":-1,"A":"left","R":[{"T":"Identifying%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.838,"y":6.908,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":6.947,"w":9.780000000000003,"clr":-1,"A":"left","R":[{"T":"General%20Information%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":31.363,"y":6.947,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":24.153000000000006,"clr":-1,"A":"left","R":[{"T":"Amount%20excluded%20is%20due%20to%20(check%20applicable%20box(es))%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":8.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.84,"w":19.781999999999996,"clr":-1,"A":"left","R":[{"T":"Discharge%20of%20indebtedness%20in%20a%20title%2011%20case%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.065,"y":8.84,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":9.59,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":32.192000000000014,"clr":-1,"A":"left","R":[{"T":"Discharge%20of%20indebtedness%20to%20the%20extent%20insolvent%20(not%20in%20a%20title%2011%20case)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":9.59,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":10.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":10.34,"w":18.596,"clr":-1,"A":"left","R":[{"T":"Discharge%20of%20qualified%20farm%20indebtedness%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":10.34,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":11.09,"w":0.889,"clr":-1,"A":"left","R":[{"T":"d%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.09,"w":26.504000000000005,"clr":-1,"A":"left","R":[{"T":"Discharge%20of%20qualified%20real%20property%20business%20indebtedness%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":11.09,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":11.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"e%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.84,"w":25.022,"clr":-1,"A":"left","R":[{"T":"Discharge%20of%20qualified%20principal%20residence%20indebtedness%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.314,"y":11.84,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":12.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":12.59,"w":31.915000000000003,"clr":-1,"A":"left","R":[{"T":"Total%20amount%20of%20discharged%20indebtedness%20excluded%20from%20gross%20income%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":12.59,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":12.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":13.246,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":13.29,"w":46.50599999999997,"clr":-1,"A":"left","R":[{"T":"Do%20you%20elect%20to%20treat%20all%20real%20property%20described%20in%20section%201221(a)(1)%2C%20relating%20to%20property%20held%20for%20sale%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":13.978,"w":40.726999999999975,"clr":-1,"A":"left","R":[{"T":"customers%20in%20the%20ordinary%20course%20of%20a%20trade%20or%20business%2C%20as%20if%20it%20were%20depreciable%20property%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.991,"y":13.978,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.628,"y":14.09,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":94.642,"y":14.09,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":14.822,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":14.854,"w":13.668000000000003,"clr":-1,"A":"left","R":[{"T":"Reduction%20of%20Tax%20Attributes.%20","S":-1,"TS":[0,13.7,1,0]}]},{"oc":"#221f1f","x":38.232,"y":14.854,"w":34.879,"clr":-1,"A":"left","R":[{"T":"You%20must%20attach%20a%20description%20of%20any%20transactions%20resulting%20in%20the%20reduction%20in%20","S":-1,"TS":[0,12.7,0,0]}]},{"oc":"#221f1f","x":14.54,"y":15.541,"w":50.64099999999999,"clr":-1,"A":"left","R":[{"T":"basis%20under%20section%201017.%20See%20Regulations%20section%201.1017-1%20for%20basis%20reduction%20ordering%20rules%2C%20and%2C%20if%20applicable%2C%20","S":-1,"TS":[0,12.7,0,0]}]},{"oc":"#221f1f","x":14.535,"y":16.229,"w":44.61899999999998,"clr":-1,"A":"left","R":[{"T":"required%20partnership%20consent%20statements.%20(For%20additional%20information%2C%20see%20the%20instructions%20for%20Part%20II.)","S":-1,"TS":[0,12.7,0,0]}]},{"oc":"#221f1f","x":5.94,"y":17.09,"w":20.671,"clr":-1,"A":"left","R":[{"T":"Enter%20amount%20excluded%20from%20gross%20income%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":17.747,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.79,"w":42.26599999999996,"clr":-1,"A":"left","R":[{"T":"For%20a%20discharge%20of%20qualified%20real%20property%20business%20indebtedness%20applied%20to%20reduce%20the%20basis%20of","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.893,"y":18.478,"w":11.482000000000001,"clr":-1,"A":"left","R":[{"T":"depreciable%20real%20property%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.693,"y":18.478,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":18.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":19.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.29,"w":42.04699999999997,"clr":-1,"A":"left","R":[{"T":"That%20you%20elect%20under%20section%20108(b)(5)%20to%20apply%20first%20to%20reduce%20the%20basis%20(under%20section%201017)%20of","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":19.977,"w":9.575000000000001,"clr":-1,"A":"left","R":[{"T":"depreciable%20property%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.563,"y":19.977,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":20.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":20.747,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.79,"w":43.00599999999997,"clr":-1,"A":"left","R":[{"T":"Applied%20to%20reduce%20any%20net%20operating%20loss%20that%20occurred%20in%20the%20tax%20year%20of%20the%20discharge%20or%20carried","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.885,"y":21.478,"w":16.409000000000002,"clr":-1,"A":"left","R":[{"T":"over%20to%20the%20tax%20year%20of%20the%20discharge%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.872,"y":21.478,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":21.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.09,"w":42.89399999999997,"clr":-1,"A":"left","R":[{"T":"Applied%20to%20reduce%20any%20general%20business%20credit%20carryover%20to%20or%20from%20the%20tax%20year%20of%20the%20discharge%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.13,"y":23.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":23.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.746,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.79,"w":43.80799999999998,"clr":-1,"A":"left","R":[{"T":"Applied%20to%20reduce%20any%20minimum%20tax%20credit%20as%20of%20the%20beginning%20of%20the%20tax%20year%20immediately%20after%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":24.478,"w":11.334000000000001,"clr":-1,"A":"left","R":[{"T":"tax%20year%20of%20the%20discharge%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.62,"y":24.478,"w":33.32499999999998,"clr":-1,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":24.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":25.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.29,"w":43.37699999999997,"clr":-1,"A":"left","R":[{"T":"Applied%20to%20reduce%20any%20net%20capital%20loss%20for%20the%20tax%20year%20of%20the%20discharge%2C%20including%20any%20capital%20loss%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.978,"w":19.149,"clr":-1,"A":"left","R":[{"T":"carryovers%20to%20the%20tax%20year%20of%20the%20discharge%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.003,"y":25.978,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":26.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.746,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"10a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.79,"w":43.24999999999996,"clr":-1,"A":"left","R":[{"T":"Applied%20to%20reduce%20the%20basis%20of%20nondepreciable%20and%20depreciable%20property%20if%20not%20reduced%20on%20line%205.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.896,"y":27.478,"w":30.541000000000004,"clr":-1,"A":"left","R":[{"T":"DO%20NOT%20use%20in%20the%20case%20of%20discharge%20of%20qualified%20farm%20indebtedness%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.571,"y":27.478,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.742,"y":27.59,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"10a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":28.246,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.29,"w":24.929999999999996,"clr":-1,"A":"left","R":[{"T":"Applied%20to%20reduce%20the%20basis%20of%20your%20principal%20residence.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.999,"y":28.29,"w":16.132000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20amount%20here%20ONLY%20if%20line%201e%20is","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.899,"y":28.978,"w":4.055999999999999,"clr":-1,"A":"left","R":[{"T":"checked%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.324,"y":28.978,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.713,"y":29.09,"w":1.723,"clr":-1,"A":"left","R":[{"T":"10b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":34.63599999999999,"clr":-1,"A":"left","R":[{"T":"For%20a%20discharge%20of%20qualified%20farm%20indebtedness%20applied%20to%20reduce%20the%20basis%20of%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":30.497,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.541,"w":43.46999999999997,"clr":-1,"A":"left","R":[{"T":"Depreciable%20property%20used%20or%20held%20for%20use%20in%20a%20trade%20or%20business%20or%20for%20the%20production%20of%20income%20if","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.88,"y":31.228,"w":9.744000000000002,"clr":-1,"A":"left","R":[{"T":"not%20reduced%20on%20line%205%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.555,"y":31.228,"w":34.65799999999998,"clr":-1,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.742,"y":31.340000000000003,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"11a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":32.84,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":26.395000000000007,"clr":-1,"A":"left","R":[{"T":"Land%20used%20or%20held%20for%20use%20in%20a%20trade%20or%20business%20of%20farming%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.378,"y":32.84,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.713,"y":32.84,"w":1.723,"clr":-1,"A":"left","R":[{"T":"11b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":34.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":40.10099999999998,"clr":-1,"A":"left","R":[{"T":"Other%20property%20used%20or%20held%20for%20use%20in%20a%20trade%20or%20business%20or%20for%20the%20production%20of%20income%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.005,"y":34.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":34.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.129,"y":34.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.742,"y":34.34,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"11c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":44.078999999999965,"clr":-1,"A":"left","R":[{"T":"Applied%20to%20reduce%20any%20passive%20activity%20loss%20and%20credit%20carryovers%20from%20the%20tax%20year%20of%20the%20discharge","S":-1,"TS":[0,11.91,0,0]}]},{"oc":"#221f1f","x":81.186,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.278,"w":40.09599999999997,"clr":-1,"A":"left","R":[{"T":"Applied%20to%20reduce%20any%20foreign%20tax%20credit%20carryover%20to%20or%20from%20the%20tax%20year%20of%20the%20discharge%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.005,"y":37.278,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.067,"y":37.278,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.129,"y":37.278,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":37.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"x":6.331,"y":38.433,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":38.447,"w":41.44999999999997,"clr":-1,"A":"left","R":[{"T":"Consent%20of%20Corporation%20to%20Adjustment%20of%20Basis%20of%20Its%20Property%20Under%20Section%201082(a)(2)","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":40.34,"w":30.712,"clr":-1,"A":"left","R":[{"T":"Under%20section%201081(b)%2C%20the%20corporation%20named%20above%20has%20excluded%20%24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.665,"y":40.34,"w":9.687000000000001,"clr":-1,"A":"left","R":[{"T":"from%20its%20gross%20income","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.09,"w":11.389999999999999,"clr":-1,"A":"left","R":[{"T":"for%20the%20tax%20year%20beginning","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.677,"y":41.09,"w":5.28,"clr":-1,"A":"left","R":[{"T":"%20and%20ending","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":97.919,"y":41.09,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.931,"y":43.34,"w":0.8700000000000001,"clr":-1,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.406,"y":43.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.54,"y":44.063,"w":10.222000000000001,"clr":-1,"A":"left","R":[{"T":"(State%20of%20incorporation)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":45.104,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":10.811,"y":45.104,"w":48.02999999999996,"clr":-1,"A":"left","R":[{"T":"You%20must%20attach%20a%20description%20of%20the%20transactions%20resulting%20in%20the%20nonrecognition%20of%20gain%20under%20section%201081.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":46.358,"w":29.118,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20page%205%20of%20this%20form.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.904,"y":46.376,"w":7.373,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2017066E","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.232,"y":46.322,"w":2.612,"clr":-1,"A":"left","R":[{"T":"Form%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.374,"y":46.322,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"982","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":91.241,"y":46.322,"w":6.243,"clr":-1,"A":"left","R":[{"T":"%20(Rev.%207-2013)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":27.106,"y":4.264,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":77.204,"y":4.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.137,"y":4.358,"w":35.61999999999998,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Form%20982%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fform982","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.94,"y":41.791,"w":58.47299999999992,"clr":-1,"A":"left","R":[{"T":"Under%20that%20section%2C%20the%20corporation%20consents%20to%20have%20the%20basis%20of%20its%20property%20adjusted%20in%20accordance%20with%20the%20regulations%20prescribed%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.93,"y":42.478,"w":58.025999999999904,"clr":-1,"A":"left","R":[{"T":"under%20section%201082(a)(2)%20in%20effect%20at%20the%20time%20of%20filing%20its%20income%20tax%20return%20for%20that%20year.%20The%20corporation%20is%20organized%20under%20the%20laws","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":7694,"AM":1024,"x":6.229,"y":5.847,"w":66.61,"h":0.88,"TU":"Name shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":7695,"AM":1024,"x":75.632,"y":5.812,"w":22.1,"h":0.916,"TU":"Identifying number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":7701,"AM":0,"x":84.274,"y":12.866,"w":14.726,"h":0.833,"TU":"Line 2. Total amount of discharged indebtedness excluded from gross income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":7704,"AM":0,"x":84.207,"y":18.774,"w":14.711,"h":0.833,"TU":"Line 4. For a discharge of qualified real property business indebtedness applied to reduce the basis of depreciable real property."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":7705,"AM":0,"x":84.336,"y":20.221,"w":14.603,"h":0.833,"TU":"Line 5. That you elect under section 108(b)(5) to apply first to reduce the basis (under section 1017) of depreciable property."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":7706,"AM":0,"x":84.336,"y":21.721,"w":14.603,"h":0.833,"TU":"Line 6. Applied to reduce any net operating loss that occurred in the tax year of the discharge or carried over to the tax year of the discharge."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":7707,"AM":0,"x":84.336,"y":23.275,"w":14.603,"h":0.833,"TU":"Line 7. Applied to reduce any general business credit carryover to or from the tax year of the discharge."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":7708,"AM":0,"x":84.336,"y":24.748,"w":14.603,"h":0.833,"TU":"Line 8. Applied to reduce any minimum tax credit as of the beginning of the tax year immediately after the tax year of the discharge."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":7709,"AM":0,"x":84.336,"y":26.275,"w":14.603,"h":0.833,"TU":"Line 9. Applied to reduce any net capital loss fro the tax year of the discharge, including any capital loss carryovers to the tax year of the discharge."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":7710,"AM":0,"x":84.336,"y":27.748,"w":14.603,"h":0.833,"TU":"Line 10a. Applied to reduce the basis of nondepreciable and depreciable property if not reduced on line 5. Do not use in the case of discharge of qualified farm indebtedness."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10B","EN":0},"TI":7711,"AM":0,"x":84.336,"y":29.33,"w":14.603,"h":0.833,"TU":"Line 10b. Applied to reduce the basis of your principal residence. Enter amount here only if line 1e is checked."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11A","EN":0},"TI":7712,"AM":0,"x":84.356,"y":31.497,"w":14.561,"h":0.833,"TU":"Line 11a. Depreciable property used or held for use in a trade or business of for the production of income if not reduced on line 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":7713,"AM":0,"x":84.336,"y":33.025,"w":14.603,"h":0.833,"TU":"Line 11b. Land used or help for use in a trade or business of farming."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11C","EN":0},"TI":7714,"AM":0,"x":84.336,"y":34.525,"w":14.603,"h":0.833,"TU":"Line 11c. Other property used or held for use in a trade or business of for the production of income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":7715,"AM":0,"x":84.336,"y":36.025,"w":14.603,"h":0.833,"TU":"Line 12. Applied to reduce any passive activity loss and credit carryovers from the tax year of the the discharge."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":7716,"AM":0,"x":84.261,"y":37.525,"w":14.677,"h":0.833,"TU":"Line 13. Applied to reduce any foreign tax credit carryover to or from the tax year of the discharge."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXCLINC","EN":0},"TI":7717,"AM":0,"x":55.93,"y":40.243,"w":20.955,"h":0.879},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TYBEG","EN":0},"TI":7718,"AM":0,"x":29.242,"y":41.192,"w":19.393,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TYEND","EN":0},"TI":7719,"AM":0,"x":69.3,"y":41.253,"w":19.393,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":7720,"AM":0,"x":8.979,"y":43.384,"w":50.995,"h":0.9}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1A","EN":0},"TI":7696,"AM":0,"x":94.482,"y":8.886,"w":1.522,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1B","EN":0},"TI":7697,"AM":0,"x":94.545,"y":9.685,"w":1.522,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1C","EN":0},"TI":7698,"AM":0,"x":94.579,"y":10.498,"w":1.521,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1D","EN":0},"TI":7699,"AM":0,"x":94.505,"y":11.249,"w":1.521,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1E","EN":0},"TI":7700,"AM":0,"x":94.507,"y":12.004,"w":1.548,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3YES","EN":0},"TI":7702,"AM":0,"x":86.439,"y":14.113,"w":1.971,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3NO","EN":0},"TI":7703,"AM":0,"x":92.611,"y":14.086,"w":1.971,"h":0.833,"checked":false}],"id":{"Id":"L3BOXERB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Title":"Form 982 (Rev. July 2013)","Author":"SE:W:CAR:MP","Subject":"Reduction of Tax Attributes Due to Discharge of Indebtedness (and Section 1082 Basis Adjustment)","Keywords":"Fillable","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131031174208-07'00'","ModDate":"D:20131231152941-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":5.251,"w":1.5,"l":5.431,"oc":"#221f1f"},{"x":30.57,"y":3.751,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.57,"y":5.251,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.235,"y":6.751,"w":1.125,"l":25.231,"oc":"#221f1f"},{"x":27.435,"y":6.751,"w":1.125,"l":8.581,"oc":"#221f1f"},{"x":2.235,"y":8.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":29.235,"y":13.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":13.501,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":2.235,"y":15.001,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":17.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":29.235,"y":19.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":19.501,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.235,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":21.001,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.235,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":22.501,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.235,"y":24.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":24.001,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.235,"y":25.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":25.501,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.235,"y":27.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":27.001,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.235,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":28.501,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.235,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":30.001,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.235,"y":32.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":32.251,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.235,"y":33.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":33.751,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.235,"y":35.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":35.251,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.235,"y":36.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":36.751,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.235,"y":38.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":38.251,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":2.235,"y":38.251,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":39.751,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":19.785,"y":41.251,"w":0.75,"l":9.931,"oc":"#221f1f","dsh":1},{"x":9.435,"y":42.001,"w":0.75,"l":10.831,"oc":"#221f1f","dsh":1},{"x":24.735,"y":42.001,"w":0.75,"l":10.831,"oc":"#221f1f","dsh":1},{"x":3.135,"y":44.251,"w":0.75,"l":23.881,"oc":"#221f1f","dsh":1},{"x":2.235,"y":45.001,"w":1.5,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":46.501,"w":1.5,"l":14.881,"oc":"#221f1f"},{"x":17.085,"y":46.501,"w":1.5,"l":13.531,"oc":"#221f1f"},{"x":30.585,"y":46.501,"w":1.5,"l":5.431,"oc":"#221f1f"},{"x":7.635,"y":5.251,"w":1.5,"l":22.981,"oc":"#221f1f"}],"VLines":[{"x":7.651,"y":2.235,"w":1.5,"l":3.047,"oc":"#221f1f"},{"x":30.601,"y":2.235,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":3.735,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":27.451,"y":5.235,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":29.251,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":17.236,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.251,"y":17.236,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.601,"y":19.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":19.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":20.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":20.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":22.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":22.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":23.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":23.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":25.486,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":25.486,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":26.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":26.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":29.986,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.251,"y":29.986,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.601,"y":32.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":32.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":33.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":33.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":35.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":35.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":36.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":36.736,"w":0.75,"l":1.531,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":7.086,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.251,"y":15.001,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.251,"y":38.612,"w":2.25,"h":0.75,"oc":"#221f1f"}],"Texts":[{"x":2.001,"y":2.572,"w":3.168,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":3.387,"y":2.572,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"982","S":-1,"TS":[0,28,1,0]}]},{"x":2.001,"y":3.287,"w":7.095,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Rev. July 2013)","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":3.8369999999999997,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":2.001,"y":4.275,"w":11.371,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":9.435,"y":2.101,"w":23.114,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Reduction of Tax Attributes Due to Discharge of ","S":11,"TS":[0,18,1,0]}]},{"x":8.691,"y":2.914,"w":24.284,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Indebtedness (and Section 1082 Basis Adjustment)","S":11,"TS":[0,18,1,0]}]},{"x":13.55,"y":3.606,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":13.925,"y":3.699,"w":20.559,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Attach this form to your income tax return.","S":-1,"TS":[0,11,1,0]}]},{"x":31.02,"y":2.348,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0046","S":2,"TS":[0,10,0,0]}]},{"x":31.101,"y":3.6879999999999997,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.101,"y":4.197,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":34.002,"y":4.197,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"94","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":4.938,"w":10.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name shown on return","S":2,"TS":[0,10,0,0]}]},{"x":27.451,"y":4.938,"w":9.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Identifying number","S":8,"TS":[0,10,1,0]}]},{"x":2.327,"y":6.908,"w":2.555,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I","S":-1,"TS":[0,13,0,0]}]},{"x":5.126,"y":6.947,"w":9.78,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"General Information ","S":10,"TS":[0,14,1,0]}]},{"x":11.246,"y":6.947,"w":7.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions)","S":-1,"TS":[0,13,0,0]}]},{"x":2.588,"y":8.09,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":8.09,"w":24.153,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Amount excluded is due to (check applicable box(es)):","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":8.84,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":8.84,"w":19.782,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Discharge of indebtedness in a title 11 case ","S":3,"TS":[0,12,0,0]}]},{"x":15.501,"y":8.84,"w":31.992,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":9.59,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":9.59,"w":32.192,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Discharge of indebtedness to the extent insolvent (not in a title 11 case) ","S":3,"TS":[0,12,0,0]}]},{"x":22.251,"y":9.59,"w":19.995,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":10.34,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":10.34,"w":18.596,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Discharge of qualified farm indebtedness ","S":3,"TS":[0,12,0,0]}]},{"x":14.751,"y":10.34,"w":33.325,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":11.09,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":11.09,"w":26.504,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Discharge of qualified real property business indebtedness ","S":3,"TS":[0,12,0,0]}]},{"x":19.251,"y":11.09,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":11.84,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"e ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":11.84,"w":25.022,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Discharge of qualified principal residence indebtedness ","S":3,"TS":[0,12,0,0]}]},{"x":18.501,"y":11.84,"w":26.66,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":12.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":12.59,"w":31.915,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total amount of discharged indebtedness excluded from gross income ","S":3,"TS":[0,12,0,0]}]},{"x":22.251,"y":12.59,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":29.519,"y":12.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":13.246,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":13.29,"w":46.506,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you elect to treat all real property described in section 1221(a)(1), relating to property held for sale to ","S":3,"TS":[0,12,0,0]}]},{"x":3.7969999999999997,"y":13.978,"w":40.727,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"customers in the ordinary course of a trade or business, as if it were depreciable property? ","S":3,"TS":[0,12,0,0]}]},{"x":26.747,"y":13.978,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":32.069,"y":14.09,"w":1.685,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"x":34.256,"y":14.09,"w":1.296,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":2.235,"y":14.822,"w":2.85,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II","S":-1,"TS":[0,13,0,0]}]},{"x":5.126,"y":14.854,"w":13.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Reduction of Tax Attributes. ","S":-1,"TS":[0,13.7,1,0]}]},{"x":13.744,"y":14.854,"w":34.879,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You must attach a description of any transactions resulting in the reduction in ","S":-1,"TS":[0,12.7,0,0]}]},{"x":5.128,"y":15.541,"w":50.641,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"basis under section 1017. See Regulations section 1.1017-1 for basis reduction ordering rules, and, if applicable, ","S":-1,"TS":[0,12.7,0,0]}]},{"x":5.126,"y":16.229,"w":44.619,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"required partnership consent statements. (For additional information, see the instructions for Part II.)","S":-1,"TS":[0,12.7,0,0]}]},{"x":2.001,"y":17.09,"w":20.671,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Enter amount excluded from gross income:","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":17.747,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":17.79,"w":42.266,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"For a discharge of qualified real property business indebtedness applied to reduce the basis of","S":3,"TS":[0,12,0,0]}]},{"x":3.8019999999999996,"y":18.478,"w":11.482,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"depreciable real property ","S":3,"TS":[0,12,0,0]}]},{"x":11.002,"y":18.478,"w":31.992,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"x":29.519,"y":18.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":19.34,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":19.29,"w":42.047,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"That you elect under section 108(b)(5) to apply first to reduce the basis (under section 1017) of","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":19.977,"w":9.575,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"depreciable property ","S":3,"TS":[0,12,0,0]}]},{"x":9.5,"y":19.977,"w":34.658,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"x":29.519,"y":20.09,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":20.747,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":20.79,"w":43.006,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Applied to reduce any net operating loss that occurred in the tax year of the discharge or carried","S":3,"TS":[0,12,0,0]}]},{"x":3.7990000000000004,"y":21.478,"w":16.409,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"over to the tax year of the discharge ","S":3,"TS":[0,12,0,0]}]},{"x":13.249,"y":21.478,"w":27.993,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"x":29.519,"y":21.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":23.09,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":23.09,"w":42.894,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Applied to reduce any general business credit carryover to or from the tax year of the discharge ","S":3,"TS":[0,12,0,0]}]},{"x":28.252,"y":23.09,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":29.519,"y":23.09,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":23.746,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":23.79,"w":43.808,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Applied to reduce any minimum tax credit as of the beginning of the tax year immediately after the","S":3,"TS":[0,12,0,0]}]},{"x":3.798,"y":24.478,"w":11.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"tax year of the discharge ","S":3,"TS":[0,12,0,0]}]},{"x":10.248,"y":24.478,"w":33.325,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........................","S":3,"TS":[0,12,0,0]}]},{"x":29.519,"y":24.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":25.34,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":25.29,"w":43.377,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Applied to reduce any net capital loss for the tax year of the discharge, including any capital loss ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":25.978,"w":19.149,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"carryovers to the tax year of the discharge ","S":3,"TS":[0,12,0,0]}]},{"x":14.751,"y":25.978,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":29.519,"y":26.09,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":26.746,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10a","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":26.79,"w":43.25,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Applied to reduce the basis of nondepreciable and depreciable property if not reduced on line 5. ","S":3,"TS":[0,12,0,0]}]},{"x":3.803,"y":27.478,"w":30.541,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"DO NOT use in the case of discharge of qualified farm indebtedness ","S":3,"TS":[0,12,0,0]}]},{"x":21.503,"y":27.478,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":29.202,"y":27.59,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10a","S":9,"TS":[0,12,1,0]}]},{"x":2.901,"y":28.246,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":28.29,"w":24.93,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Applied to reduce the basis of your principal residence. ","S":3,"TS":[0,12,0,0]}]},{"x":16.568,"y":28.29,"w":16.132,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter amount here ONLY if line 1e is","S":3,"TS":[0,12,0,0]}]},{"x":3.8040000000000003,"y":28.978,"w":4.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"checked ","S":3,"TS":[0,12,0,0]}]},{"x":6.504,"y":28.978,"w":39.99,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"x":29.191,"y":29.09,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10b","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":29.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":29.84,"w":34.636,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"For a discharge of qualified farm indebtedness applied to reduce the basis of:","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":30.497,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":30.541,"w":43.47,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Depreciable property used or held for use in a trade or business or for the production of income if","S":3,"TS":[0,12,0,0]}]},{"x":3.7969999999999997,"y":31.228,"w":9.744,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"not reduced on line 5 ","S":3,"TS":[0,12,0,0]}]},{"x":9.497,"y":31.228,"w":34.658,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........................","S":3,"TS":[0,12,0,0]}]},{"x":29.202,"y":31.340000000000003,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11a","S":9,"TS":[0,12,1,0]}]},{"x":2.901,"y":32.84,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":32.84,"w":26.395,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Land used or held for use in a trade or business of farming ","S":3,"TS":[0,12,0,0]}]},{"x":19.251,"y":32.84,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":29.191,"y":32.84,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11b","S":9,"TS":[0,12,1,0]}]},{"x":2.901,"y":34.34,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":34.34,"w":40.101,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other property used or held for use in a trade or business or for the production of income ","S":3,"TS":[0,12,0,0]}]},{"x":26.752,"y":34.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":27.502,"y":34.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":28.251,"y":34.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":29.202,"y":34.34,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11c","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":35.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":35.84,"w":44.079,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Applied to reduce any passive activity loss and credit carryovers from the tax year of the discharge","S":-1,"TS":[0,11.91,0,0]}]},{"x":29.363,"y":35.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":37.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":37.278,"w":40.096,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Applied to reduce any foreign tax credit carryover to or from the tax year of the discharge ","S":3,"TS":[0,12,0,0]}]},{"x":26.752,"y":37.278,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":27.502,"y":37.278,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":28.251,"y":37.278,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":29.363,"y":37.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":9,"TS":[0,12,1,0]}]},{"x":2.143,"y":38.433,"w":3.145,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III","S":-1,"TS":[0,13,0,0]}]},{"x":5.126,"y":38.447,"w":41.45,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Consent of Corporation to Adjustment of Basis of Its Property Under Section 1082(a)(2)","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":40.34,"w":30.712,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Under section 1081(b), the corporation named above has excluded $","S":3,"TS":[0,12,0,0]}]},{"x":29.901,"y":40.34,"w":9.687,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from its gross income","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":41.09,"w":11.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"for the tax year beginning","S":3,"TS":[0,12,0,0]}]},{"x":20.451,"y":41.09,"w":5.28,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" and ending","S":3,"TS":[0,12,0,0]}]},{"x":35.448,"y":41.09,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":1.9969999999999999,"y":43.34,"w":0.87,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of","S":3,"TS":[0,12,0,0]}]},{"x":26.898,"y":43.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":16.401,"y":44.063,"w":10.222,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(State of incorporation)","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":45.104,"w":2.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Note. ","S":10,"TS":[0,14,1,0]}]},{"x":3.7720000000000002,"y":45.104,"w":48.03,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You must attach a description of the transactions resulting in the nonrecognition of gain under section 1081.","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":46.358,"w":29.118,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see page 5 of this form.","S":-1,"TS":[0,11,1,0]}]},{"x":21.988,"y":46.376,"w":7.373,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 17066E","S":2,"TS":[0,10,0,0]}]},{"x":30.834,"y":46.322,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form ","S":2,"TS":[0,10,0,0]}]},{"x":31.976999999999997,"y":46.322,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"982","S":10,"TS":[0,14,1,0]}]},{"x":33.02,"y":46.322,"w":6.243,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (Rev. 7-2013)","S":2,"TS":[0,10,0,0]}]},{"x":9.698,"y":4.264,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":27.915,"y":4.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":10.073,"y":4.358,"w":35.62,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Information about Form 982 and its instructions is at www.irs.gov/form982","S":-1,"TS":[0,11,1,0]}]},{"x":2.001,"y":41.791,"w":58.473,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Under that section, the corporation consents to have the basis of its property adjusted in accordance with the regulations prescribed ","S":3,"TS":[0,12,0,0]}]},{"x":1.9969999999999999,"y":42.478,"w":58.026,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"under section 1082(a)(2) in effect at the time of filing its income tax return for that year. The corporation is organized under the laws","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1160,"AM":1024,"TU":"Name shown on return","x":2.265,"y":5.847,"w":24.222,"h":0.88},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1161,"AM":1024,"TU":"Identifying number","x":27.503,"y":5.812,"w":8.036,"h":0.916},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":1167,"AM":0,"TU":"Line 2. Total amount of discharged indebtedness excluded from gross income.","x":30.645,"y":12.866,"w":5.355,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":1170,"AM":0,"TU":"Line 4. For a discharge of qualified real property business indebtedness applied to reduce the basis of depreciable real property.","x":30.621,"y":18.774,"w":5.349,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":1171,"AM":0,"TU":"Line 5. That you elect under section 108(b)(5) to apply first to reduce the basis (under section 1017) of depreciable property.","x":30.668,"y":20.221,"w":5.31,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":1172,"AM":0,"TU":"Line 6. Applied to reduce any net operating loss that occurred in the tax year of the discharge or carried over to the tax year of the discharge.","x":30.668,"y":21.721,"w":5.31,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":1173,"AM":0,"TU":"Line 7. Applied to reduce any general business credit carryover to or from the tax year of the discharge.","x":30.668,"y":23.275,"w":5.31,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":1174,"AM":0,"TU":"Line 8. Applied to reduce any minimum tax credit as of the beginning of the tax year immediately after the tax year of the discharge.","x":30.668,"y":24.748,"w":5.31,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":1175,"AM":0,"TU":"Line 9. Applied to reduce any net capital loss fro the tax year of the discharge, including any capital loss carryovers to the tax year of the discharge.","x":30.668,"y":26.275,"w":5.31,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":1176,"AM":0,"TU":"Line 10a. Applied to reduce the basis of nondepreciable and depreciable property if not reduced on line 5. Do not use in the case of discharge of qualified farm indebtedness.","x":30.668,"y":27.748,"w":5.31,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10B","EN":0},"TI":1177,"AM":0,"TU":"Line 10b. Applied to reduce the basis of your principal residence. Enter amount here only if line 1e is checked.","x":30.668,"y":29.33,"w":5.31,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11A","EN":0},"TI":1178,"AM":0,"TU":"Line 11a. Depreciable property used or held for use in a trade or business of for the production of income if not reduced on line 5.","x":30.675,"y":31.497,"w":5.295,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11B","EN":0},"TI":1179,"AM":0,"TU":"Line 11b. Land used or help for use in a trade or business of farming.","x":30.668,"y":33.025,"w":5.31,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11C","EN":0},"TI":1180,"AM":0,"TU":"Line 11c. Other property used or held for use in a trade or business of for the production of income.","x":30.668,"y":34.525,"w":5.31,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":1181,"AM":0,"TU":"Line 12. Applied to reduce any passive activity loss and credit carryovers from the tax year of the the discharge.","x":30.668,"y":36.025,"w":5.31,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":1182,"AM":0,"TU":"Line 13. Applied to reduce any foreign tax credit carryover to or from the tax year of the discharge.","x":30.64,"y":37.525,"w":5.337,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EXCLINC","EN":0},"TI":1183,"AM":0,"x":20.338,"y":40.243,"w":7.62,"h":0.879},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TYBEG","EN":0},"TI":1184,"AM":0,"x":10.634,"y":41.192,"w":7.052,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"TYEND","EN":0},"TI":1185,"AM":0,"x":25.2,"y":41.253,"w":7.052,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":1186,"AM":0,"x":3.265,"y":43.384,"w":18.544,"h":0.9}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1A","EN":0},"TI":1162,"AM":0,"TU":"Line 1a. Checkbox. ","x":34.357,"y":8.886,"w":0.553,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1B","EN":0},"TI":1163,"AM":0,"TU":"Line 1b. Checkbox.","x":34.38,"y":9.685,"w":0.553,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1C","EN":0},"TI":1164,"AM":0,"TU":"Line 1c. Checkbox.","x":34.392,"y":10.498,"w":0.553,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1D","EN":0},"TI":1165,"AM":0,"TU":"Line 1d. Checkbox.","x":34.365,"y":11.249,"w":0.553,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX1E","EN":0},"TI":1166,"AM":0,"TU":"Line 1e. Checkbox.","x":34.366,"y":12.004,"w":0.563,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3YES","EN":0},"TI":1168,"AM":0,"TU":"Line 3. Checkboxes.","x":31.433,"y":14.113,"w":0.717,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX3NO","EN":0},"TI":1169,"AM":0,"TU":"Line 3. Checkboxes.","x":33.677,"y":14.086,"w":0.717,"h":0.833,"checked":false}],"id":{"Id":"L3BOXERB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHA.json b/test/data/fd/form/FSCHA.json index b6d1953e..f8f2401d 100755 --- a/test/data/fd/form/FSCHA.json +++ b/test/data/fd/form/FSCHA.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.016,"y":3.703,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.866,"y":3.703,"w":1.5,"l":63.199},{"oc":"#221f1f","x":83.935,"y":1.453,"w":0.75,"l":14.979},{"oc":"#221f1f","x":83.935,"y":3.703,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.016,"y":5.203,"w":1.125,"l":75.574},{"oc":"#221f1f","x":81.503,"y":5.203,"w":1.125,"l":17.411},{"oc":"#221f1f","x":64.178,"y":5.203,"w":0.75,"l":2.561},{"oc":"#221f1f","x":81.503,"y":5.203,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.653,"y":6.703,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.028,"y":6.703,"w":0.75,"l":2.561},{"oc":"#221f1f","x":46.853,"y":7.453,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.328,"y":7.453,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.703,"y":7.453,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.178,"y":6.703,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.178,"y":8.953,"w":1.125,"l":2.561},{"oc":"#221f1f","x":66.653,"y":8.953,"w":1.125,"l":12.461},{"oc":"#221f1f","x":79.028,"y":8.953,"w":1.125,"l":2.561},{"oc":"#221f1f","x":81.503,"y":9.703,"w":1.125,"l":2.561},{"oc":"#221f1f","x":83.978,"y":9.703,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.353,"y":9.703,"w":1.125,"l":2.561},{"oc":"#221f1f","x":6.059,"y":9.703,"w":1.125,"l":75.488},{"oc":"#221f1f","x":81.503,"y":9.703,"w":1.125,"l":2.561},{"oc":"#221f1f","x":64.178,"y":11.203,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.653,"y":11.203,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.028,"y":11.203,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.178,"y":12.703,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.653,"y":12.703,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.028,"y":12.703,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.653,"y":13.453,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.028,"y":13.453,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":45.616,"y":14.203,"w":0.75,"l":17.411},{"oc":"#221f1f","x":64.178,"y":13.453,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":19.628,"y":14.953,"w":0.75,"l":43.399},{"oc":"#221f1f","x":64.178,"y":14.953,"w":1.125,"l":2.561},{"oc":"#221f1f","x":66.653,"y":14.953,"w":1.125,"l":12.461},{"oc":"#221f1f","x":79.028,"y":14.953,"w":1.125,"l":2.561},{"oc":"#221f1f","x":81.503,"y":15.703,"w":1.125,"l":2.561},{"oc":"#221f1f","x":83.978,"y":15.703,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.353,"y":15.703,"w":1.125,"l":2.561},{"oc":"#221f1f","x":6.059,"y":15.703,"w":1.125,"l":75.488},{"oc":"#221f1f","x":64.178,"y":16.453,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.653,"y":16.453,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.028,"y":16.453,"w":0.75,"l":2.561},{"oc":"#221f1f","x":81.503,"y":15.703,"w":1.125,"l":2.561},{"oc":"#221f1f","x":64.178,"y":16.453,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":19.628,"y":19.453,"w":0.75,"l":43.399},{"dsh":1,"oc":"#221f1f","x":19.628,"y":20.203,"w":0.75,"l":43.399},{"oc":"#221f1f","x":64.178,"y":20.203,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.653,"y":20.203,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.028,"y":20.203,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.178,"y":21.703,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.653,"y":21.703,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.028,"y":21.703,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.178,"y":22.453,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.653,"y":22.453,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.028,"y":22.453,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.178,"y":23.203,"w":1.125,"l":2.561},{"oc":"#221f1f","x":66.653,"y":23.203,"w":1.125,"l":12.461},{"oc":"#221f1f","x":79.028,"y":23.203,"w":1.125,"l":2.561},{"oc":"#221f1f","x":19.628,"y":23.953,"w":1.125,"l":60.724},{"oc":"#221f1f","x":81.503,"y":23.953,"w":1.125,"l":2.561},{"oc":"#221f1f","x":83.978,"y":23.953,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.353,"y":23.953,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.059,"y":23.953,"w":1.125,"l":75.488},{"oc":"#221f1f","x":6.016,"y":28.453,"w":1.125,"l":9.986},{"oc":"#221f1f","x":64.178,"y":23.953,"w":1.125,"l":2.561},{"oc":"#221f1f","x":81.503,"y":23.953,"w":1.125,"l":2.561},{"oc":"#221f1f","x":64.178,"y":25.453,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.653,"y":25.453,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.028,"y":25.453,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.178,"y":26.953,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.653,"y":26.953,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.028,"y":26.953,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.178,"y":27.703,"w":1.125,"l":2.561},{"oc":"#221f1f","x":66.653,"y":27.703,"w":1.125,"l":12.461},{"oc":"#221f1f","x":79.028,"y":27.703,"w":1.125,"l":2.561},{"oc":"#221f1f","x":81.503,"y":28.453,"w":1.125,"l":2.561},{"oc":"#221f1f","x":83.978,"y":28.453,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.353,"y":28.453,"w":1.125,"l":2.561},{"oc":"#221f1f","x":6.059,"y":28.453,"w":1.125,"l":75.488},{"oc":"#221f1f","x":83.978,"y":29.953,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.353,"y":29.953,"w":1.125,"l":2.561},{"oc":"#221f1f","x":6.059,"y":29.953,"w":1.125,"l":75.488},{"oc":"#221f1f","x":6.145,"y":41.25,"w":1.125,"l":9.986},{"dsh":1,"oc":"#221f1f","x":34.607,"y":35.25,"w":0.75,"l":28.549},{"oc":"#221f1f","x":64.178,"y":29.953,"w":1.125,"l":2.561},{"oc":"#221f1f","x":81.503,"y":29.953,"w":1.125,"l":2.561},{"oc":"#221f1f","x":64.307,"y":35.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.782,"y":35.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.157,"y":35.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":66.782,"y":36,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.157,"y":36,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.307,"y":36,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":30.895,"y":37.5,"w":0.75,"l":32.261},{"dsh":1,"oc":"#221f1f","x":19.757,"y":38.25,"w":0.75,"l":43.399},{"oc":"#221f1f","x":64.307,"y":38.25,"w":1.125,"l":2.561},{"oc":"#221f1f","x":66.782,"y":38.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":79.157,"y":38.25,"w":1.125,"l":2.561},{"oc":"#221f1f","x":66.782,"y":39,"w":0.75,"l":12.461},{"oc":"#221f1f","x":79.157,"y":39,"w":0.75,"l":2.561},{"oc":"#221f1f","x":46.982,"y":39.75,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.457,"y":39.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.832,"y":39.75,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.307,"y":39,"w":0.75,"l":2.561},{"oc":"#221f1f","x":64.307,"y":40.5,"w":1.125,"l":2.561},{"oc":"#221f1f","x":66.782,"y":40.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":79.157,"y":40.5,"w":1.125,"l":2.561},{"oc":"#221f1f","x":81.632,"y":41.25,"w":1.125,"l":2.561},{"oc":"#221f1f","x":84.107,"y":41.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.482,"y":41.25,"w":1.125,"l":2.561},{"oc":"#221f1f","x":6.188,"y":41.25,"w":1.125,"l":75.488},{"dsh":1,"oc":"#221f1f","x":59.357,"y":42,"w":0.75,"l":21.123},{"oc":"#221f1f","x":81.632,"y":41.25,"w":1.125,"l":2.561},{"dsh":1,"oc":"#221f1f","x":19.757,"y":42.75,"w":0.75,"l":60.724},{"oc":"#221f1f","x":81.632,"y":43.5,"w":1.125,"l":2.561},{"oc":"#221f1f","x":84.107,"y":43.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.482,"y":43.5,"w":1.125,"l":2.561},{"oc":"#221f1f","x":6.188,"y":43.5,"w":1.125,"l":75.488},{"oc":"#221f1f","x":81.632,"y":45.75,"w":0.75,"l":2.561},{"oc":"#221f1f","x":81.632,"y":48.75,"w":1.5,"l":2.561},{"oc":"#221f1f","x":84.107,"y":45.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":84.107,"y":48.75,"w":1.5,"l":12.461},{"oc":"#221f1f","x":96.482,"y":45.75,"w":0.75,"l":2.561},{"oc":"#221f1f","x":96.482,"y":48.75,"w":1.5,"l":2.561},{"oc":"#221f1f","x":6.145,"y":48.75,"w":1.5,"l":43.398},{"oc":"#221f1f","x":49.457,"y":48.75,"w":1.5,"l":32.261},{"oc":"#221f1f","x":81.632,"y":48.75,"w":1.5,"l":17.411}],"VLines":[{"oc":"#221f1f","x":20.909,"y":0.688,"w":1.5,"l":1.547},{"oc":"#221f1f","x":20.909,"y":2.188,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.021,"y":0.688,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.021,"y":1.437,"w":1.5,"l":2.281},{"oc":"#221f1f","x":81.546,"y":3.687,"w":0.75,"l":1.539},{"oc":"#221f1f","x":66.696,"y":5.188,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.221,"y":5.188,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.071,"y":5.188,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.021,"y":5.188,"w":0.75,"l":3.781},{"oc":"#221f1f","x":81.546,"y":5.188,"w":0.75,"l":3.781},{"oc":"#221f1f","x":96.396,"y":5.188,"w":0.75,"l":3.781},{"oc":"#221f1f","x":66.696,"y":5.937,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.221,"y":5.937,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.071,"y":5.937,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.371,"y":6.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":46.896,"y":6.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.746,"y":6.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.696,"y":6.688,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.221,"y":6.688,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.071,"y":6.688,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.696,"y":8.187,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.221,"y":8.187,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.071,"y":8.187,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.021,"y":8.938,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.546,"y":8.938,"w":0.75,"l":0.789},{"oc":"#221f1f","x":96.396,"y":8.938,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.071,"y":9.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.021,"y":9.68,"w":0.75,"l":5.289},{"oc":"#221f1f","x":81.546,"y":9.68,"w":0.75,"l":5.289},{"oc":"#221f1f","x":96.396,"y":9.688,"w":0.75,"l":5.281},{"oc":"#221f1f","x":66.696,"y":9.688,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.221,"y":9.688,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.071,"y":10.438,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.696,"y":11.188,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.221,"y":11.188,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.071,"y":11.188,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.071,"y":11.938,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.696,"y":12.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.221,"y":12.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.071,"y":12.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.696,"y":13.438,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.221,"y":13.438,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.071,"y":13.438,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.696,"y":14.188,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.221,"y":14.188,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.071,"y":14.188,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.021,"y":14.938,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.546,"y":14.938,"w":0.75,"l":0.789},{"oc":"#221f1f","x":96.396,"y":14.938,"w":0.75,"l":0.789},{"oc":"#221f1f","x":66.696,"y":15.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.221,"y":15.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.696,"y":15.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.071,"y":15.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.021,"y":15.68,"w":0.75,"l":7.539},{"oc":"#221f1f","x":81.546,"y":15.68,"w":0.75,"l":7.539},{"oc":"#221f1f","x":96.396,"y":15.688,"w":0.75,"l":7.531},{"oc":"#221f1f","x":66.696,"y":16.438,"w":0.75,"l":3.031},{"oc":"#221f1f","x":64.221,"y":16.438,"w":0.75,"l":3.031},{"oc":"#221f1f","x":79.071,"y":16.438,"w":0.75,"l":3.031},{"oc":"#221f1f","x":66.696,"y":19.438,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.221,"y":19.438,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.071,"y":19.438,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.696,"y":20.188,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.221,"y":20.188,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.071,"y":20.188,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.696,"y":20.938,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.071,"y":20.938,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.696,"y":21.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.221,"y":21.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.696,"y":21.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.071,"y":21.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.696,"y":22.438,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.221,"y":22.438,"w":0.75,"l":0.789},{"oc":"#221f1f","x":66.696,"y":22.438,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.071,"y":22.438,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.021,"y":23.188,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.546,"y":23.188,"w":0.75,"l":0.789},{"oc":"#221f1f","x":96.396,"y":23.18,"w":0.75,"l":0.789},{"oc":"#221f1f","x":66.696,"y":23.93,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.221,"y":23.93,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.071,"y":23.938,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.021,"y":23.93,"w":0.75,"l":3.789},{"oc":"#221f1f","x":81.546,"y":23.93,"w":0.75,"l":3.789},{"oc":"#221f1f","x":96.396,"y":23.938,"w":0.75,"l":3.781},{"oc":"#221f1f","x":66.696,"y":24.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.221,"y":24.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.071,"y":24.688,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.696,"y":25.438,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.221,"y":25.438,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.071,"y":25.438,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.696,"y":26.188,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.071,"y":26.188,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.696,"y":26.938,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.221,"y":26.938,"w":0.75,"l":0.789},{"oc":"#221f1f","x":66.696,"y":26.938,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.071,"y":26.938,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.021,"y":27.688,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.546,"y":27.688,"w":0.75,"l":0.789},{"oc":"#221f1f","x":96.396,"y":27.688,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.021,"y":28.438,"w":0.75,"l":1.539},{"oc":"#221f1f","x":81.546,"y":28.438,"w":0.75,"l":1.539},{"oc":"#221f1f","x":96.396,"y":28.438,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.396,"y":29.188,"w":0.75,"l":0.789},{"oc":"#221f1f","x":66.825,"y":30.211,"w":0.75,"l":1.539},{"oc":"#221f1f","x":64.35,"y":30.211,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.148,"y":30.209,"w":0.75,"l":2.207},{"oc":"#221f1f","x":84.176,"y":30.084,"w":0.75,"l":10.145},{"oc":"#221f1f","x":81.469,"y":30.016,"w":0.75,"l":10.75},{"oc":"#221f1f","x":96.551,"y":30.119,"w":0.75,"l":10.637},{"oc":"#221f1f","x":66.773,"y":31.775,"w":0.75,"l":3.95},{"oc":"#221f1f","x":64.324,"y":31.496,"w":0.75,"l":4.226},{"oc":"#221f1f","x":79.148,"y":32.502,"w":0.75,"l":2.778},{"oc":"#221f1f","x":66.825,"y":35.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":35.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":35.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":35.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":35.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":64.35,"y":35.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":35.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.825,"y":37.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.35,"y":37.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":37.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":66.825,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.5,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.875,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":38.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.825,"y":39.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":64.35,"y":39.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":39.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":40.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":40.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":96.525,"y":40.484,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":41.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":81.675,"y":41.227,"w":0.75,"l":1.539},{"oc":"#221f1f","x":96.525,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":42.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":42.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":96.525,"y":42.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":43.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":81.675,"y":43.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":96.525,"y":43.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":45.734,"w":0.75,"l":3.047},{"oc":"#221f1f","x":81.675,"y":45.734,"w":0.75,"l":3.047},{"oc":"#221f1f","x":96.525,"y":45.734,"w":0.75,"l":3.047},{"oc":"#221f1f","x":84.15,"y":45.734,"w":0.75,"l":3.047},{"oc":"#221f1f","x":96.525,"y":45.734,"w":0.75,"l":3.047}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":64.221,"y":5.203,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":81.546,"y":5.203,"w":2.475,"h":3.75,"clr":-1},{"oc":"#bebfc1","x":64.221,"y":6.703,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":81.546,"y":9.703,"w":2.475,"h":5.25,"clr":-1},{"oc":"#bebfc1","x":64.221,"y":13.453,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":81.546,"y":15.703,"w":2.475,"h":7.5,"clr":-1},{"oc":"#bebfc1","x":64.221,"y":16.453,"w":2.475,"h":3,"clr":-1},{"oc":"#bebfc1","x":64.221,"y":23.953,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":81.546,"y":23.953,"w":2.475,"h":3.75,"clr":-1},{"oc":"#bebfc1","x":64.376,"y":29.963,"w":2.475,"h":4.199,"clr":-1},{"oc":"#bebfc1","x":81.649,"y":30.004,"w":2.475,"h":10.399,"clr":-1},{"oc":"#bebfc1","x":64.35,"y":36,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":64.35,"y":39,"w":2.475,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":81.675,"y":41.25,"w":2.475,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":81.675,"y":45.75,"w":2.475,"h":3,"clr":-1},{"oc":"#bebfc1","x":84.15,"y":45.75,"w":12.375,"h":3,"clr":-1},{"oc":"#bebfc1","x":96.525,"y":45.75,"w":2.475,"h":3,"clr":-1}],"Texts":[{"oc":"#181616","x":53.247,"y":5.792,"w":7.998,"clr":-1,"A":"left","R":[{"T":".....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.16,"y":1.9740000000000002,"w":11.169000000000002,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fschedulea","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.926,"y":1.9740000000000002,"w":30.624999999999996,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Schedule%20A%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.809,"y":0.46199999999999997,"w":7.055999999999999,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20A%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.809,"y":1.149,"w":5.9460000000000015,"clr":-1,"A":"left","R":[{"T":"(Form%201040)%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.809,"y":2.228,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.809,"y":2.728,"w":13.279000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":41.219,"y":0.9530000000000001,"w":9.724,"clr":-1,"A":"left","R":[{"T":"Itemized%20Deductions","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":22.656,"y":1.8809999999999998,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":23.926,"y":1.9740000000000002,"w":30.624999999999996,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Schedule%20A%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":81.393,"y":1.9740000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":44.754,"y":2.631,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":46.025,"y":2.724,"w":9.927999999999999,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.612,"y":0.42500000000000004,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.728,"y":1.783,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.698,"y":1.783,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.834,"y":2.371,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.834,"y":2.818,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.812,"y":2.818,"w":1.112,"clr":-1,"A":"left","R":[{"T":"07","S":10,"TS":[0,14,1,0]}]},{"oc":"#181616","x":5.809,"y":3.3899999999999997,"w":13.689000000000005,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20Form%201040%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.984,"y":3.3899999999999997,"w":13.368000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#181616","x":5.809,"y":5.712,"w":3.946,"clr":-1,"A":"left","R":[{"T":"Medical%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#181616","x":5.809,"y":6.462,"w":2.056,"clr":-1,"A":"left","R":[{"T":"and%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#181616","x":5.809,"y":7.212,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Dental%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#181616","x":5.809,"y":7.962,"w":4.947000000000001,"clr":-1,"A":"left","R":[{"T":"Expenses%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#181616","x":19.421,"y":5.042,"w":4.555999999999999,"clr":-1,"A":"left","R":[{"T":"Caution.%20%20","S":-1,"TS":[0,11.64,1,0]}]},{"oc":"#181616","x":25.156,"y":5.042,"w":24.820999999999998,"clr":-1,"A":"left","R":[{"T":"Do%20not%20include%20expenses%20reimbursed%20or%20paid%20by%20others.%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#181616","x":17.324,"y":5.792,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#181616","x":19.421,"y":5.792,"w":20.911000000000012,"clr":-1,"A":"left","R":[{"T":"Medical%20and%20dental%20expenses%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#181616","x":64.779,"y":5.792,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#181616","x":17.324,"y":6.542,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#181616","x":19.421,"y":6.542,"w":17.230000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20amount%20from%20Form%201040%2C%20line%2038%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#181616","x":47.454,"y":6.542,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#181616","x":17.324,"y":7.292,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#181616","x":19.421,"y":7.355,"w":7.799000000000001,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%202%20by%20","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":28.673,"y":7.355,"w":21.207000000000004,"clr":-1,"A":"left","R":[{"T":"10%25%20(.10).%20But%20if%20either%20you%20or%20your%20spouse%20was%20","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":19.418,"y":8.042,"w":29.641000000000002,"clr":-1,"A":"left","R":[{"T":"born%20before%20January%202%2C%201949%2C%20multiply%20line%202%20by%207.5%25%20(.075)%20instead","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#181616","x":64.779,"y":8.042,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#181616","x":17.324,"y":8.792,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#181616","x":19.421,"y":8.792,"w":28.138,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%203%20from%20line%201.%20If%20line%203%20is%20more%20than%20line%201%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#181616","x":63.558,"y":8.792,"w":10.664,"clr":-1,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"oc":"#181616","x":82.104,"y":8.792,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.809,"y":9.587,"w":5.279999999999999,"clr":-1,"A":"left","R":[{"T":"Taxes%20You%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.809,"y":10.337,"w":2.112,"clr":-1,"A":"left","R":[{"T":"Paid","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":17.324,"y":9.542,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":9.542,"w":6.964,"clr":-1,"A":"left","R":[{"T":"State%20and%20local%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.162,"y":9.542,"w":10.280000000000001,"clr":-1,"A":"left","R":[{"T":"(check%20only%20one%20box)%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":10.292,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#181616","x":23.821,"y":10.292,"w":6.557,"clr":-1,"A":"left","R":[{"T":"Income%20taxes%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#181616","x":32.933,"y":10.292,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.422,"y":11.042,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#181616","x":23.821,"y":11.042,"w":8.74,"clr":-1,"A":"left","R":[{"T":"General%20sales%20taxes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.231,"y":10.853,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,15,0,0]}]},{"oc":"#221f1f","x":40.871,"y":10.292,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.779,"y":10.293,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.324,"y":11.792,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":11.792,"w":15.519000000000005,"clr":-1,"A":"left","R":[{"T":"Real%20estate%20taxes%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.996,"y":11.792,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.779,"y":11.792,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.324,"y":12.542,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":12.542,"w":10.926000000000002,"clr":-1,"A":"left","R":[{"T":"Personal%20property%20taxes%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.746,"y":12.542,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.779,"y":12.542,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.324,"y":13.261,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":13.23,"w":15.747000000000005,"clr":-1,"A":"left","R":[{"T":"Other%20taxes.%20List%20type%20and%20amount%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.779,"y":13.136,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.779,"y":14.042,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.324,"y":14.792,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":14.792,"w":9.559000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%205%20through%208","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.684,"y":14.792,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.104,"y":14.792,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.809,"y":15.587,"w":3.89,"clr":-1,"A":"left","R":[{"T":"Interest%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.809,"y":16.337,"w":4.279,"clr":-1,"A":"left","R":[{"T":"You%20Paid","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.809,"y":17.56,"w":2.5,"clr":-1,"A":"left","R":[{"T":"Note.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.809,"y":18.16,"w":6.964,"clr":-1,"A":"left","R":[{"T":"Your%20mortgage%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.809,"y":18.76,"w":3.593,"clr":-1,"A":"left","R":[{"T":"interest%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.809,"y":19.36,"w":6.9289999999999985,"clr":-1,"A":"left","R":[{"T":"deduction%20may%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.809,"y":19.96,"w":6.761000000000001,"clr":-1,"A":"left","R":[{"T":"be%20limited%20(see%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.809,"y":20.56,"w":6.001000000000001,"clr":-1,"A":"left","R":[{"T":"instructions).%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":16.464,"y":15.542000000000002,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":15.542000000000002,"w":29.824000000000005,"clr":-1,"A":"left","R":[{"T":"Home%20mortgage%20interest%20and%20points%20reported%20to%20you%20on%20Form%201098%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":64.349,"y":15.542000000000002,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.464,"y":16.23,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":16.23,"w":29.879000000000005,"clr":-1,"A":"left","R":[{"T":"Home%20mortgage%20interest%20not%20reported%20to%20you%20on%20Form%201098.%20If%20paid%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":19.422,"y":16.917,"w":29.009000000000007,"clr":-1,"A":"left","R":[{"T":"to%20the%20person%20from%20whom%20you%20bought%20the%20home%2C%20see%20instructions%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":19.428,"y":17.615,"w":26.489,"clr":-1,"A":"left","R":[{"T":"and%20show%20that%20person%E2%80%99s%20name%2C%20identifying%20no.%2C%20and%20address%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":57.937,"y":17.522,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.58,0,0]}]},{"oc":"#221f1f","x":64.349,"y":19.292,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.464,"y":20.105,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":20.105,"w":27.729000000000006,"clr":-1,"A":"left","R":[{"T":"Points%20not%20reported%20to%20you%20on%20Form%201098.%20See%20instructions%20for%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.423,"y":20.792,"w":5.574,"clr":-1,"A":"left","R":[{"T":"special%20rules","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.498,"y":20.792,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":".................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.349,"y":20.792,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.464,"y":21.542,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":21.542,"w":21.48600000000001,"clr":-1,"A":"left","R":[{"T":"Mortgage%20insurance%20premiums%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.247,"y":21.542,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.349,"y":21.542,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.464,"y":22.292,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":22.292,"w":30.970999999999997,"clr":-1,"A":"left","R":[{"T":"Investment%20interest.%20Attach%20Form%204952%20if%20required.%20(See%20instructions.)%20%20","S":-1,"TS":[0,11.19,0,0]}]},{"oc":"#221f1f","x":64.349,"y":22.292,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.464,"y":23.042,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":23.042,"w":10.671,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2010%20through%2014","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.746,"y":23.042,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.674,"y":23.042,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.809,"y":23.837,"w":3.778,"clr":-1,"A":"left","R":[{"T":"Gifts%20to%20","S":-1,"TS":[0,13.7,1,0]}]},{"oc":"#221f1f","x":5.809,"y":24.587,"w":3.4450000000000003,"clr":-1,"A":"left","R":[{"T":"Charity","S":-1,"TS":[0,13.7,1,0]}]},{"oc":"#221f1f","x":5.809,"y":25.435,"w":6.353999999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20made%20a%20","S":-1,"TS":[0,10.76,0,0]}]},{"oc":"#221f1f","x":5.809,"y":26.035,"w":6.205,"clr":-1,"A":"left","R":[{"T":"gift%20and%20got%20a%20","S":-1,"TS":[0,10.76,0,0]}]},{"oc":"#221f1f","x":5.809,"y":26.635,"w":5.908000000000001,"clr":-1,"A":"left","R":[{"T":"benefit%20for%20it%2C%20","S":-1,"TS":[0,10.76,0,0]}]},{"oc":"#221f1f","x":5.809,"y":27.235,"w":7.594000000000001,"clr":-1,"A":"left","R":[{"T":"see%20instructions.%20","S":-1,"TS":[0,10.76,0,0]}]},{"oc":"#221f1f","x":16.464,"y":23.855,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":23.855,"w":27.359,"clr":-1,"A":"left","R":[{"T":"Gifts%20by%20cash%20or%20check.%20If%20you%20made%20any%20gift%20of%20%24250%20or%20more%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.427,"y":24.542,"w":7.038,"clr":-1,"A":"left","R":[{"T":"see%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.565,"y":24.542,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":"................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.349,"y":24.542,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.464,"y":25.355,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":25.355,"w":27.156000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20than%20by%20cash%20or%20check.%20If%20any%20gift%20of%20%24250%20or%20more%2C%20see%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.415,"y":26.042,"w":7.798,"clr":-1,"A":"left","R":[{"T":"instructions.%20You%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.102,"y":26.042,"w":2.666,"clr":-1,"A":"left","R":[{"T":"must%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.883,"y":26.042,"w":13.431000000000004,"clr":-1,"A":"left","R":[{"T":"attach%20Form%208283%20if%20over%20%24500","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.646,"y":26.042,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.708,"y":26.042,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.77,"y":26.042,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.349,"y":26.042,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.464,"y":26.792,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":26.792,"w":11.221000000000002,"clr":-1,"A":"left","R":[{"T":"Carryover%20from%20prior%20year","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.808,"y":26.792,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.349,"y":26.792,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.464,"y":27.542,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":27.542,"w":10.671,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2016%20through%2018","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.746,"y":27.542,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.674,"y":27.542,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.809,"y":28.243,"w":6.502000000000001,"clr":-1,"A":"left","R":[{"T":"Casualty%20and%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.809,"y":28.993,"w":6.446,"clr":-1,"A":"left","R":[{"T":"Theft%20Losses%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":16.464,"y":29.042,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.421,"y":29.042,"w":28.11600000000001,"clr":-1,"A":"left","R":[{"T":"Casualty%20or%20theft%20loss(es).%20Attach%20Form%204684.%20(See%20instructions.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.558,"y":29.042,"w":11.997,"clr":-1,"A":"left","R":[{"T":"........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.674,"y":29.042,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.938,"y":30.096,"w":5.897261315000001,"clr":-1,"A":"left","R":[{"T":"Job%20Expenses%20","S":-1,"TS":[0,10.9999975,1,0]}]},{"oc":"#221f1f","x":5.938,"y":30.808,"w":5.100629984999999,"clr":-1,"A":"left","R":[{"T":"and%20Certain%20%20","S":-1,"TS":[0,10.9999975,1,0]}]},{"oc":"#221f1f","x":5.809,"y":31.567999999999998,"w":6.224840160000001,"clr":-1,"A":"left","R":[{"T":"Miscellaneous%20%20","S":-1,"TS":[0,10.9999975,1,0]}]},{"oc":"#221f1f","x":5.809,"y":32.28,"w":4.819366915000001,"clr":-1,"A":"left","R":[{"T":"Deductions%20","S":-1,"TS":[0,10.9999975,1,0]}]},{"oc":"#221f1f","x":16.592,"y":30.199,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.55,"y":30.199,"w":26.673000000000005,"clr":-1,"A":"left","R":[{"T":"Unreimbursed%20employee%20expenses%E2%80%94job%20travel%2C%20union%20dues%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.55,"y":30.886,"w":27.249000000000002,"clr":-1,"A":"left","R":[{"T":"job%20education%2C%20etc.%20Attach%20Form%202106%20or%202106-EZ%20if%20required.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.545,"y":34.35,"w":7.982000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.561,"y":34.256,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.478,"y":34.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.592,"y":35.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.55,"y":35.089,"w":9.185000000000002,"clr":-1,"A":"left","R":[{"T":"Tax%20preparation%20fees","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":35.089,"w":18.662,"clr":-1,"A":"left","R":[{"T":".............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.478,"y":35.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.592,"y":35.902,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.55,"y":35.902,"w":27.544000000000004,"clr":-1,"A":"left","R":[{"T":"Other%20expenses%E2%80%94investment%2C%20safe%20deposit%20box%2C%20etc.%20List%20type%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.552,"y":36.6,"w":5.633000000000001,"clr":-1,"A":"left","R":[{"T":"and%20amount%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.55,"y":36.506,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":64.478,"y":37.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.592,"y":38.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.55,"y":38.089,"w":10.671,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2021%20through%2023","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":38.089,"w":17.329,"clr":-1,"A":"left","R":[{"T":"............%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.478,"y":38.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.592,"y":38.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.55,"y":38.839,"w":17.230000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20amount%20from%20Form%201040%2C%20line%2038%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":47.153,"y":38.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.592,"y":39.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.55,"y":39.589,"w":12.097000000000005,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2025%20by%202%25%20(.02)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":39.589,"w":15.996,"clr":-1,"A":"left","R":[{"T":"...........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.478,"y":39.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.592,"y":40.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.55,"y":40.277,"w":30.362000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2026%20from%20line%2024.%20If%20line%2026%20is%20more%20than%20line%2024%2C%20enter%20-0-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.813,"y":40.277,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.803,"y":40.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.938,"y":41.044,"w":3.223,"clr":-1,"A":"left","R":[{"T":"Other%20%20","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#221f1f","x":5.938,"y":41.756,"w":7.3919999999999995,"clr":-1,"A":"left","R":[{"T":"Miscellaneous%20%20","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#221f1f","x":5.938,"y":42.469,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"Deductions%20","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#221f1f","x":16.592,"y":41.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.55,"y":41.1,"w":24.175,"clr":-1,"A":"left","R":[{"T":"Other%E2%80%94from%20list%20in%20instructions.%20List%20type%20and%20amount%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.945,"y":41.006,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.803,"y":42.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.938,"y":43.384,"w":2.667,"clr":-1,"A":"left","R":[{"T":"Total%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":44.134,"w":4.557,"clr":-1,"A":"left","R":[{"T":"Itemized%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":44.884,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"Deductions%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":16.592,"y":43.402,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.55,"y":43.339,"w":17.13800000000001,"clr":-1,"A":"left","R":[{"T":"Is%20Form%201040%2C%20line%2038%2C%20over%20%24150%2C000%3F%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":81.803,"y":44.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.025,"y":44.152,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":24.546,"y":44.152,"w":31.678000000000008,"clr":-1,"A":"left","R":[{"T":"%20Your%20deduction%20is%20not%20limited.%20Add%20the%20amounts%20in%20the%20far%20right%20column%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.025,"y":44.839,"w":30.641000000000012,"clr":-1,"A":"left","R":[{"T":"for%20lines%204%20through%2028.%20Also%2C%20enter%20this%20amount%20on%20Form%201040%2C%20line%2040.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74,"y":45.708,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,19,0,0]}]},{"oc":"#221f1f","x":76.063,"y":44.839,"w":5.3338,"clr":-1,"A":"left","R":[{"T":"..","S":-1,"TS":[0,7.5,0,0]}]},{"oc":"#221f1f","x":22.025,"y":45.652,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":25.205,"y":45.652,"w":27.656000000000006,"clr":-1,"A":"left","R":[{"T":"%20Your%20deduction%20may%20be%20limited.%20See%20the%20Itemized%20Deductions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.025,"y":46.339,"w":26.322000000000003,"clr":-1,"A":"left","R":[{"T":"Worksheet%20in%20the%20instructions%20to%20figure%20the%20amount%20to%20enter.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.592,"y":47.151,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":19.55,"y":47.151,"w":35.489,"clr":-1,"A":"left","R":[{"T":"If%20you%20elect%20to%20itemize%20deductions%20even%20though%20they%20are%20less%20than%20your%20standard%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.545,"y":47.85,"w":9.966000000000003,"clr":-1,"A":"left","R":[{"T":"deduction%2C%20check%20here","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.87,"y":47.85,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.238,"y":47.756,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":48.645,"w":31.453000000000003,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20Form%201040%20instructions.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.836,"y":48.625,"w":7.7620000000000005,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2017145C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.193,"y":48.625,"w":14.17200000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20A%20(Form%201040)%202013%20","S":8,"TS":[0,10,1,0]}]},{"x":19.369,"y":18.177,"w":20.223000000000003,"clr":0,"A":"left","R":[{"T":"NAME","S":2,"TS":[0,10,0,0]}]},{"x":45.556,"y":18.173,"w":28.007000000000005,"clr":0,"A":"left","R":[{"T":"SSN%2FEIN","S":2,"TS":[0,10,0,0]}]},{"x":19.344,"y":18.656,"w":33.83800000000001,"clr":0,"A":"left","R":[{"T":"ADDRESS","S":2,"TS":[0,10,0,0]}]},{"x":19.344,"y":19.406,"w":15.946000000000002,"clr":0,"A":"left","R":[{"T":"CITY","S":2,"TS":[0,10,0,0]}]},{"x":41.688,"y":19.406,"w":22.561000000000003,"clr":0,"A":"left","R":[{"T":"STATE","S":2,"TS":[0,10,0,0]}]},{"x":51.828,"y":19.406,"w":10.892,"clr":0,"A":"left","R":[{"T":"ZIP","S":2,"TS":[0,10,0,0]}]},{"x":52.172,"y":19.234,"w":29.352,"clr":0,"A":"left","R":[{"T":"Spouse%20","S":-1,"TS":[0,11,1,0]}]},{"x":55.805,"y":19.234,"w":18.672,"clr":0,"A":"left","R":[{"T":"Copy","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":7869,"AM":1024,"x":5.95,"y":4.292,"w":75.487,"h":0.891,"TU":"Page 1. Name(s) shown on Form 1040."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":7870,"AM":1024,"x":82.032,"y":4.375,"w":15.183,"h":0.833,"TU":"Your social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":7871,"AM":0,"x":66.587,"y":5.933,"w":12.375,"h":0.833,"TU":"Medical and Dental Expenses. Caution. Do not include expenses reimbursed or paid by others. Line 1. Medical and dental expenses (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":7872,"AM":1024,"x":49.262,"y":6.683,"w":12.375,"h":0.833,"TU":"Line 2. Enter amount from Form 1040, line 38. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":7873,"AM":0,"x":66.587,"y":8.183,"w":12.375,"h":0.833,"TU":"Line 3. Multiply line 2 by 7.5 percent (.075) or 10.0 percent (.10)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":7874,"AM":1024,"x":83.912,"y":8.87,"w":12.375,"h":0.833,"TU":"Line 4. Subtract line 3 from line 1. If line 3 is more than line 1, enter zero. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":7876,"AM":0,"x":66.587,"y":10.433,"w":12.375,"h":0.833,"TU":"Line 5. State and local taxes."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":7878,"AM":0,"x":66.587,"y":11.933,"w":12.375,"h":0.833,"TU":"Line 6. Real estate taxes (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":7879,"AM":0,"x":66.587,"y":12.683,"w":12.375,"h":0.833,"TU":"Line 7. Personal property taxes. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":7880,"AM":0,"x":45.549,"y":13.433,"w":17.325,"h":0.833,"TU":"Line 8. Other taxes. List type"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":7881,"AM":0,"x":19.626,"y":14.183,"w":43.312,"h":0.833,"TU":"Line 8.. Type continued."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":7882,"AM":0,"x":66.587,"y":14.183,"w":12.375,"h":0.833,"TU":"Line 8. Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":7883,"AM":1024,"x":83.912,"y":14.87,"w":12.375,"h":0.833,"TU":"Line 9. Add lines 5 through 8. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":7884,"AM":0,"x":66.587,"y":15.683,"w":12.375,"h":0.833,"TU":"Interest you paid. Note. Your mortgage interest deduction may be limited (see instructions). Line 10. Home mortgage interest and points reported to you on Form 1098. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE11_L11BX_1_","EN":0},"TI":7885,"AM":0,"x":25.394,"y":18.449,"w":19.829,"h":0.833,"TU":"name"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"LINE11_L11BX1_1_","EN":0},"TI":7886,"AM":0,"x":50.768,"y":18.442,"w":12.219,"h":0.833,"TU":"SSN/EIN"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE11_L11BY_1_","EN":0},"TI":7887,"AM":0,"x":25.869,"y":19.037,"w":37.081,"h":0.833,"TU":"ADDRESS"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE11_L11BZ_1_","EN":0},"TI":7888,"AM":0,"x":22.415,"y":19.678,"w":19.24,"h":0.833,"TU":"CITY"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE11_L11BZ2_1_","EN":0},"TI":7889,"AM":0,"x":46.573,"y":19.672,"w":4.516,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"LINE11_L11BZ3_1_","EN":0},"TI":7890,"AM":0,"x":54.076,"y":19.639,"w":8.949,"h":0.833,"TU":"ZIP"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":7891,"AM":0,"x":66.587,"y":19.433,"w":12.375,"h":0.833,"TU":"Line 11. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":7892,"AM":0,"x":66.587,"y":20.933,"w":12.375,"h":0.833,"TU":"Line 12. Points not reported to you on Form 1098. See instructions for special rules. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALMORT","EN":0},"TI":7893,"AM":0,"x":66.587,"y":21.683,"w":12.375,"h":0.833,"TU":"Line 13. Mortgage insurance premiums (see instructions). Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4952"}},"id":{"Id":"Add_F4952","EN":0},"TI":7894,"AM":1024,"x":62.447,"y":22.362,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":7895,"AM":0,"x":66.587,"y":22.433,"w":12.375,"h":0.833,"TU":"Line 14. Investment interest. Attach Form 4952 if required. (See instructions.). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":7896,"AM":1024,"x":83.912,"y":23.12,"w":12.375,"h":0.833,"TU":"Line 15. Add lines 10 through 14. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":7897,"AM":0,"x":66.587,"y":24.683,"w":12.375,"h":0.833,"TU":"Gifts to Charity. If you made a gift and got a benefit for it, see instructions. Line 16. Gifts by cash or check. If you made any gift of $250 or more, see instructions. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8283"}},"id":{"Id":"Add_F8283","EN":0},"TI":7898,"AM":1024,"x":57.207,"y":26.065,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":7899,"AM":0,"x":66.587,"y":26.183,"w":12.375,"h":0.833,"TU":"Line 17. Other than by cash or check. If any gift of $250 or more, see instructions. You must attach Form 8283 if over $500. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":7900,"AM":0,"x":66.587,"y":26.933,"w":12.375,"h":0.833,"TU":"Line 18. Carryover from prior year. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":7901,"AM":0,"x":83.912,"y":27.62,"w":12.375,"h":0.833,"TU":"Line 19. Add lines 16 through 18. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4684"}},"id":{"Id":"Add_F4684","EN":0},"TI":7902,"AM":1024,"x":63.401,"y":29.08,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":7903,"AM":0,"x":83.912,"y":29.12,"w":12.375,"h":0.833,"TU":"Casualty and Theft Losses. Line 20. Casualty or theft loss(es). Attach Form 4684. (See instructions.). Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text1","EN":0},"TI":7904,"AM":1024,"x":16.151,"y":31.813,"w":12.006,"h":0.833,"V":"Form 2106"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2106"}},"id":{"Id":"Add_F2106","EN":0},"TI":7905,"AM":1024,"x":29.358,"y":31.818,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text3","EN":0},"TI":7906,"AM":1024,"x":33.647,"y":31.988,"w":13.728,"h":0.833,"V":"Taxpayer Copy"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2106S"}},"id":{"Id":"Add_F2106S","EN":0},"TI":7907,"AM":1024,"x":48.364,"y":31.872,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text5","EN":0},"TI":7908,"AM":1024,"x":52.384,"y":32.043,"w":11.107,"h":0.833,"V":"Spouse Copy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text2","EN":0},"TI":7909,"AM":1024,"x":16.338,"y":32.669,"w":12.155,"h":0.833,"V":"Form 2106-EZ"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2106EZ"}},"id":{"Id":"Add_F2106EZ","EN":0},"TI":7910,"AM":1024,"x":29.264,"y":32.627,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text4","EN":0},"TI":7911,"AM":1024,"x":33.669,"y":32.778,"w":13.803,"h":0.833,"V":"Taxpayer Copy"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2106EZS"}},"id":{"Id":"Add_F2106EZS","EN":0},"TI":7912,"AM":1024,"x":48.289,"y":32.662,"w":1.604,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text6","EN":0},"TI":7913,"AM":1024,"x":52.384,"y":32.805,"w":11.332,"h":0.833,"V":"Spouse Copy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPEXP_L20A_1_","EN":0},"TI":7914,"AM":0,"x":34.426,"y":33.643,"w":17.906,"h":0.833,"TU":"JOB EXPENSE DESCRIPTION"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPEXP_L20B_1_","EN":0},"TI":7915,"AM":0,"x":52.544,"y":33.643,"w":11.318,"h":0.833,"TU":"Job expense amount"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPEXP_L20A_2_","EN":0},"TI":7916,"AM":0,"x":34.531,"y":34.471,"w":17.906,"h":0.833,"TU":"JOB EXPENSE DESCRIPTION"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPEXP_L20B_2_","EN":0},"TI":7917,"AM":0,"x":52.598,"y":34.476,"w":11.318,"h":0.833,"TU":"Job expense amount"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":7918,"AM":0,"x":66.706,"y":34.471,"w":12.375,"h":0.833,"TU":"Line 21. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":7919,"AM":0,"x":66.706,"y":35.221,"w":12.375,"h":0.833,"TU":"Line 22. Tax preparation fees. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INVEXP_L22A_1_","EN":0},"TI":7920,"AM":0,"x":30.713,"y":36.777,"w":20.156,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INVEXP_L22B_1_","EN":0},"TI":7921,"AM":0,"x":51.879,"y":36.742,"w":11.437,"h":0.833,"TU":"Line 23. AMOUNT"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INVEXP_L22A_2_","EN":0},"TI":7922,"AM":0,"x":30.647,"y":37.583,"w":20.156,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INVEXP_L22B_2_","EN":0},"TI":7923,"AM":0,"x":51.882,"y":37.545,"w":11.437,"h":0.833,"TU":"Line 23. AMOUNT"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":7924,"AM":1024,"x":66.944,"y":37.385,"w":12.375,"h":0.833,"TU":"Line 23. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":7925,"AM":1024,"x":66.944,"y":38.135,"w":12.375,"h":0.833,"TU":"Line 24. Add lines 21 through 23. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":7926,"AM":1024,"x":49.619,"y":38.885,"w":12.375,"h":0.833,"TU":"Line 25. Enter amount from Form 1040, line 38. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":7927,"AM":1024,"x":66.944,"y":39.635,"w":12.375,"h":0.833,"TU":"Line 26. Multiply line 25 by 2 percent (.02). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":7928,"AM":1024,"x":84.269,"y":40.384,"w":12.375,"h":0.833,"TU":"Line 27. Subtract line 26 from line 24. If line 26 is more than line 24, enter zero. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L27A_1_","EN":0},"TI":7929,"AM":0,"x":20.273,"y":42.004,"w":45.428,"h":0.833,"PL":{"V":[" ","AMORTIZABLE BOND PREMIUMS","CASUALTY AND THEFT LOSS","FEDERAL ESTATE TAX","GAMBLING LOSSES","IMPAIRMENT-RELATED WORK EXPENSES","CLAIM REPAYMENTS","UNRECOVERED PENSION INVESTMENTS","SCHEDULE K-1"],"D":["(no entry)","AMORTIZABLE BOND PREMIUMS","CASUALTY AND THEFT LOSS","FEDERAL ESTATE TAX","GAMBLING LOSSES","IMPAIRMENT-RELATED WORK EXPENSES","CLAIM REPAYMENTS","UNRECOVERED PENSION INVESTMENTS","SCHEDULE K-1"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L27B_1_","EN":0},"TI":7930,"AM":0,"x":69.204,"y":41.93,"w":11.437,"h":0.833,"TU":"Line 28. AMOUNT"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L27A_2_","EN":0},"TI":7931,"AM":0,"x":20.437,"y":42.8,"w":45.428,"h":0.833,"PL":{"V":[" ","AMORTIZABLE BOND PREMIUMS","CASUALTY AND THEFT LOSS","FEDERAL ESTATE TAX","GAMBLING LOSSES","IMPAIRMENT-RELATED WORK EXPENSES","CLAIM REPAYMENTS","UNRECOVERED PENSION INVESTMENTS","SCHEDULE K-1"],"D":["(no entry)","AMORTIZABLE BOND PREMIUMS","CASUALTY AND THEFT LOSS","FEDERAL ESTATE TAX","GAMBLING LOSSES","IMPAIRMENT-RELATED WORK EXPENSES","CLAIM REPAYMENTS","UNRECOVERED PENSION INVESTMENTS","SCHEDULE K-1"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L27B_2_","EN":0},"TI":7932,"AM":0,"x":69.343,"y":42.743,"w":11.437,"h":0.833,"TU":"Line 28. AMOUNT"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":7933,"AM":1024,"x":84.269,"y":42.704,"w":12.375,"h":0.833,"TU":"Line 28. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":7935,"AM":0,"x":84.269,"y":44.885,"w":12.375,"h":0.833,"TU":"Total Itemized Deductions. Line 29. Is Form 1040, line 38, over $150,000? Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IT","EN":0},"TI":7875,"AM":0,"x":21.816,"y":10.395,"w":1.757,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":7877,"AM":0,"x":21.911,"y":11.153,"w":1.653,"h":0.833,"checked":false}],"id":{"Id":"TAXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L28N","EN":0},"TI":7934,"AM":0,"x":20.214,"y":44.213,"w":1.672,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L28Y","EN":0},"TI":7936,"AM":0,"x":20.127,"y":45.705,"w":1.503,"h":0.833,"checked":false}],"id":{"Id":"L28BOXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ITDED","EN":0},"TI":7937,"AM":0,"x":79.063,"y":47.97,"w":1.375,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.7","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Itemized Deductions","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Adobe Acrobat Pro 10.1.8","CreationDate":"D:20131217225508-08'00'","ModDate":"D:20140129153155-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.188,"y":3.703,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":7.588,"y":3.703,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.522,"y":1.453,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.522,"y":3.703,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.188,"y":5.203,"w":1.125,"l":27.481,"oc":"#221f1f"},{"x":29.638,"y":5.203,"w":1.125,"l":6.331,"oc":"#221f1f"},{"x":23.338,"y":5.203,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":29.638,"y":5.203,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":24.238,"y":6.703,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.738,"y":6.703,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.038,"y":7.453,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.938,"y":7.453,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.438,"y":7.453,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":23.338,"y":6.703,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":23.338,"y":8.953,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":24.238,"y":8.953,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":28.738,"y":8.953,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":29.638,"y":9.703,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":30.538,"y":9.703,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.038,"y":9.703,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":2.203,"y":9.703,"w":1.125,"l":27.45,"oc":"#221f1f"},{"x":29.638,"y":9.703,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":23.338,"y":11.203,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":24.238,"y":11.203,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.738,"y":11.203,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":23.338,"y":12.703,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":24.238,"y":12.703,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.738,"y":12.703,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":24.238,"y":13.453,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.738,"y":13.453,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":16.588,"y":14.203,"w":0.75,"l":6.331,"oc":"#221f1f","dsh":1},{"x":23.338,"y":13.453,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":7.138,"y":14.953,"w":0.75,"l":15.781,"oc":"#221f1f","dsh":1},{"x":23.338,"y":14.953,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":24.238,"y":14.953,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":28.738,"y":14.953,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":29.638,"y":15.703,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":30.538,"y":15.703,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.038,"y":15.703,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":2.203,"y":15.703,"w":1.125,"l":27.45,"oc":"#221f1f"},{"x":23.338,"y":16.453,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":24.238,"y":16.453,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.738,"y":16.453,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":29.638,"y":15.703,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":23.338,"y":16.453,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":7.138,"y":19.453,"w":0.75,"l":15.781,"oc":"#221f1f","dsh":1},{"x":7.138,"y":20.203,"w":0.75,"l":15.781,"oc":"#221f1f","dsh":1},{"x":23.338,"y":20.203,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":24.238,"y":20.203,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.738,"y":20.203,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":23.338,"y":21.703,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":24.238,"y":21.703,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.738,"y":21.703,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":23.338,"y":22.453,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":24.238,"y":22.453,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.738,"y":22.453,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":23.338,"y":23.203,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":24.238,"y":23.203,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":28.738,"y":23.203,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":7.138,"y":23.953,"w":1.125,"l":22.081,"oc":"#221f1f"},{"x":29.638,"y":23.953,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":30.538,"y":23.953,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.038,"y":23.953,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":2.203,"y":23.953,"w":1.125,"l":27.45,"oc":"#221f1f"},{"x":2.188,"y":28.453,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":23.338,"y":23.953,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":29.638,"y":23.953,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":23.338,"y":25.453,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":24.238,"y":25.453,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.738,"y":25.453,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":23.338,"y":26.953,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":24.238,"y":26.953,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.738,"y":26.953,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":23.338,"y":27.703,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":24.238,"y":27.703,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":28.738,"y":27.703,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":29.638,"y":28.453,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":30.538,"y":28.453,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.038,"y":28.453,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":2.203,"y":28.453,"w":1.125,"l":27.45,"oc":"#221f1f"},{"x":30.538,"y":29.953,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.038,"y":29.953,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":2.203,"y":29.953,"w":1.125,"l":27.45,"oc":"#221f1f"},{"x":2.234,"y":41.25,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":12.584,"y":35.25,"w":0.75,"l":10.381,"oc":"#221f1f","dsh":1},{"x":23.338,"y":29.953,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":29.638,"y":29.953,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":23.384,"y":35.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":24.284,"y":35.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.784,"y":35.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":24.284,"y":36,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.784,"y":36,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":23.384,"y":36,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":11.234,"y":37.5,"w":0.75,"l":11.731,"oc":"#221f1f","dsh":1},{"x":7.184,"y":38.25,"w":0.75,"l":15.781,"oc":"#221f1f","dsh":1},{"x":23.384,"y":38.25,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":24.284,"y":38.25,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":28.784,"y":38.25,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":24.284,"y":39,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.784,"y":39,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.084,"y":39.75,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.984,"y":39.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.484,"y":39.75,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":23.384,"y":39,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":23.384,"y":40.5,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":24.284,"y":40.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":28.784,"y":40.5,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":29.684,"y":41.25,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":30.584,"y":41.25,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":41.25,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":2.25,"y":41.25,"w":1.125,"l":27.45,"oc":"#221f1f"},{"x":21.584,"y":42,"w":0.75,"l":7.681,"oc":"#221f1f","dsh":1},{"x":29.684,"y":41.25,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":7.184,"y":42.75,"w":0.75,"l":22.081,"oc":"#221f1f","dsh":1},{"x":29.684,"y":43.5,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":30.584,"y":43.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":43.5,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":2.25,"y":43.5,"w":1.125,"l":27.45,"oc":"#221f1f"},{"x":29.684,"y":45.75,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":29.684,"y":48.75,"w":1.5,"l":0.931,"oc":"#221f1f"},{"x":30.584,"y":45.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.584,"y":48.75,"w":1.5,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":45.75,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":35.084,"y":48.75,"w":1.5,"l":0.931,"oc":"#221f1f"},{"x":2.234,"y":48.75,"w":1.5,"l":15.781,"oc":"#221f1f"},{"x":17.984,"y":48.75,"w":1.5,"l":11.731,"oc":"#221f1f"},{"x":29.684,"y":48.75,"w":1.5,"l":6.331,"oc":"#221f1f"}],"VLines":[{"x":7.603,"y":0.688,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":7.603,"y":2.188,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":30.553,"y":0.688,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.553,"y":1.437,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":29.653,"y":3.687,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":24.253,"y":5.188,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.353,"y":5.188,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.753,"y":5.188,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.553,"y":5.188,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":29.653,"y":5.188,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":35.053,"y":5.188,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":24.253,"y":5.937,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.353,"y":5.937,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.753,"y":5.937,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.953,"y":6.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.053,"y":6.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.453,"y":6.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.253,"y":6.688,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":23.353,"y":6.688,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.753,"y":6.688,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.253,"y":8.187,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":23.353,"y":8.187,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.753,"y":8.187,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.553,"y":8.938,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.653,"y":8.938,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":35.053,"y":8.938,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.753,"y":9.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.553,"y":9.68,"w":0.75,"l":5.289,"oc":"#221f1f"},{"x":29.653,"y":9.68,"w":0.75,"l":5.289,"oc":"#221f1f"},{"x":35.053,"y":9.688,"w":0.75,"l":5.281,"oc":"#221f1f"},{"x":24.253,"y":9.688,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":23.353,"y":9.688,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.753,"y":10.438,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.253,"y":11.188,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":23.353,"y":11.188,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.753,"y":11.188,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.753,"y":11.938,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.253,"y":12.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.353,"y":12.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.753,"y":12.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.253,"y":13.438,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.353,"y":13.438,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.753,"y":13.438,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.253,"y":14.188,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":23.353,"y":14.188,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.753,"y":14.188,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.553,"y":14.938,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.653,"y":14.938,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":35.053,"y":14.938,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":24.253,"y":15.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.353,"y":15.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.253,"y":15.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.753,"y":15.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.553,"y":15.68,"w":0.75,"l":7.539,"oc":"#221f1f"},{"x":29.653,"y":15.68,"w":0.75,"l":7.539,"oc":"#221f1f"},{"x":35.053,"y":15.688,"w":0.75,"l":7.531,"oc":"#221f1f"},{"x":24.253,"y":16.438,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":23.353,"y":16.438,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":28.753,"y":16.438,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":24.253,"y":19.438,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.353,"y":19.438,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.753,"y":19.438,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.253,"y":20.188,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":23.353,"y":20.188,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.753,"y":20.188,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.253,"y":20.938,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.753,"y":20.938,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.253,"y":21.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.353,"y":21.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.253,"y":21.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.753,"y":21.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.253,"y":22.438,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":23.353,"y":22.438,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":24.253,"y":22.438,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.753,"y":22.438,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.553,"y":23.188,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.653,"y":23.188,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":35.053,"y":23.18,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":24.253,"y":23.93,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":23.353,"y":23.93,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.753,"y":23.938,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.553,"y":23.93,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":29.653,"y":23.93,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":35.053,"y":23.938,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":24.253,"y":24.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.353,"y":24.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.753,"y":24.688,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.253,"y":25.438,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":23.353,"y":25.438,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.753,"y":25.438,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.253,"y":26.188,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.753,"y":26.188,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.253,"y":26.938,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":23.353,"y":26.938,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":24.253,"y":26.938,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.753,"y":26.938,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.553,"y":27.688,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.653,"y":27.688,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":35.053,"y":27.688,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.553,"y":28.438,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":29.653,"y":28.438,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":35.053,"y":28.438,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.053,"y":29.188,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":24.3,"y":30.211,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":23.4,"y":30.211,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.781,"y":30.209,"w":0.75,"l":2.207,"oc":"#221f1f"},{"x":30.609,"y":30.084,"w":0.75,"l":10.145,"oc":"#221f1f"},{"x":29.625,"y":30.016,"w":0.75,"l":10.75,"oc":"#221f1f"},{"x":35.109,"y":30.119,"w":0.75,"l":10.637,"oc":"#221f1f"},{"x":24.281,"y":31.775,"w":0.75,"l":3.95,"oc":"#221f1f"},{"x":23.391,"y":31.496,"w":0.75,"l":4.226,"oc":"#221f1f"},{"x":28.781,"y":32.502,"w":0.75,"l":2.778,"oc":"#221f1f"},{"x":24.3,"y":35.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":35.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.3,"y":35.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":35.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.3,"y":35.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":23.4,"y":35.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.8,"y":35.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.3,"y":37.484,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":23.4,"y":37.484,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":37.484,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":24.3,"y":38.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":38.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.3,"y":38.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":38.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18,"y":38.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":38.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.5,"y":38.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.3,"y":38.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":38.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":38.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.3,"y":39.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":23.4,"y":39.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":39.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.6,"y":40.484,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.7,"y":40.484,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":35.1,"y":40.484,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.6,"y":41.227,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":29.7,"y":41.227,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":35.1,"y":41.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.6,"y":42.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.7,"y":42.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":35.1,"y":42.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.6,"y":43.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.7,"y":43.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":35.1,"y":43.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.6,"y":45.734,"w":0.75,"l":3.047,"oc":"#221f1f"},{"x":29.7,"y":45.734,"w":0.75,"l":3.047,"oc":"#221f1f"},{"x":35.1,"y":45.734,"w":0.75,"l":3.047,"oc":"#221f1f"},{"x":30.6,"y":45.734,"w":0.75,"l":3.047,"oc":"#221f1f"},{"x":35.1,"y":45.734,"w":0.75,"l":3.047,"oc":"#221f1f"}],"Fills":[{"x":29.653,"y":5.203,"w":0.9,"h":3.75,"oc":"#bebfc1"},{"x":29.653,"y":9.703,"w":0.9,"h":5.25,"oc":"#bebfc1"},{"x":29.653,"y":15.703,"w":0.9,"h":7.5,"oc":"#bebfc1"},{"x":23.353,"y":16.453,"w":0.9,"h":3,"oc":"#bebfc1"},{"x":29.653,"y":23.953,"w":0.9,"h":3.75,"oc":"#bebfc1"},{"x":23.409,"y":29.963,"w":0.9,"h":4.199,"oc":"#bebfc1"},{"x":29.691,"y":30.004,"w":0.9,"h":10.399,"oc":"#bebfc1"},{"x":29.7,"y":45.75,"w":0.9,"h":3,"oc":"#bebfc1"},{"x":30.6,"y":45.75,"w":4.5,"h":3,"oc":"#bebfc1"},{"x":35.1,"y":45.75,"w":0.9,"h":3,"oc":"#bebfc1"}],"Texts":[{"x":19.203,"y":5.792,"w":6.665,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":22.653,"y":5.792,"w":1.333,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":21.354,"y":1.9740000000000002,"w":11.169,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"www.irs.gov/schedulea","S":-1,"TS":[0,11,0,0]}]},{"x":8.541,"y":1.9740000000000002,"w":30.625,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Information about Schedule A and its separate instructions is at ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":0.46199999999999997,"w":7.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"SCHEDULE A ","S":10,"TS":[0,14,1,0]}]},{"x":1.9529999999999998,"y":1.149,"w":5.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(Form 1040) ","S":10,"TS":[0,14,1,0]}]},{"x":1.9529999999999998,"y":2.228,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":1.9529999999999998,"y":2.728,"w":13.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99) ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":14.829,"y":0.9530000000000001,"w":9.724,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Itemized Deductions","S":11,"TS":[0,18,1,0]}]},{"x":8.079,"y":1.8809999999999998,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":8.541,"y":1.9740000000000002,"w":30.625,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Information about Schedule A and its separate instructions is at ","S":-1,"TS":[0,11,0,0]}]},{"x":29.438,"y":1.9740000000000002,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":29.577,"y":1.9740000000000002,"w":1.946,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":16.115,"y":2.631,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":16.537,"y":4.209,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":1,"TS":[0,8,0,0]}]},{"x":16.577,"y":2.724,"w":9.928,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attach to Form 1040.","S":-1,"TS":[0,11,0,0]}]},{"x":21.541,"y":2.724,"w":2.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":22.422,"y":4.271,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":30.973,"y":0.42500000000000004,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.378,"y":1.783,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.458,"y":1.783,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":31.053,"y":2.371,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.053,"y":2.818,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":33.954,"y":2.818,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"07","S":10,"TS":[0,14,1,0]}]},{"x":34.696,"y":4.365,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":1.9529999999999998,"y":3.3899999999999997,"w":13.689,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"Name(s) shown on Form 1040 ","S":2,"TS":[0,10,0,0]}]},{"x":29.653,"y":3.3899999999999997,"w":13.368,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your social security number","S":2,"TS":[0,10,0,0]}]},{"x":1.9529999999999998,"y":5.712,"w":3.946,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"Medical ","S":10,"TS":[0,14,1,0]}]},{"x":1.9529999999999998,"y":6.462,"w":2.056,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"and ","S":10,"TS":[0,14,1,0]}]},{"x":1.9529999999999998,"y":7.212,"w":3.612,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"Dental ","S":10,"TS":[0,14,1,0]}]},{"x":1.9529999999999998,"y":7.962,"w":4.947,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"Expenses ","S":10,"TS":[0,14,1,0]}]},{"x":6.903,"y":5.042,"w":4.556,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"Caution. ","S":-1,"TS":[0,11.64,1,0]}]},{"x":8.988,"y":5.042,"w":24.821,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"Do not include expenses reimbursed or paid by others. ","S":-1,"TS":[0,11.64,0,0]}]},{"x":6.14,"y":5.792,"w":0.834,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"1 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":5.792,"w":20.911,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"Medical and dental expenses (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":23.397,"y":5.792,"w":0.834,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"1 ","S":9,"TS":[0,12,1,0]}]},{"x":6.14,"y":6.542,"w":0.834,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":6.542,"w":17.23,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"Enter amount from Form 1040, line 38 ","S":-1,"TS":[0,11.82,0,0]}]},{"x":17.097,"y":6.542,"w":0.834,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":6.14,"y":7.292,"w":0.834,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":7.355,"w":7.799,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 2 by ","S":-1,"TS":[0,11.37,0,0]}]},{"x":10.267,"y":7.355,"w":21.207,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10% (.10). But if either you or your spouse was ","S":-1,"TS":[0,11.37,0,0]}]},{"x":6.902,"y":8.042,"w":29.641,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"born before January 2, 1949, multiply line 2 by 7.5% (.075) instead","S":-1,"TS":[0,11.37,0,0]}]},{"x":22.456,"y":9.589,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":22.612,"y":9.589,"w":0.278,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":23.397,"y":8.042,"w":0.834,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":9,"TS":[0,12,1,0]}]},{"x":6.14,"y":8.792,"w":0.834,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":8.792,"w":28.138,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 3 from line 1. If line 3 is more than line 1, enter -0-","S":3,"TS":[0,12,0,0]}]},{"x":22.953,"y":8.792,"w":10.664,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"x":29.697,"y":8.792,"w":0.834,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":9,"TS":[0,12,1,0]}]},{"x":1.9529999999999998,"y":9.587,"w":5.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Taxes You ","S":10,"TS":[0,14,1,0]}]},{"x":1.9529999999999998,"y":10.337,"w":2.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Paid","S":10,"TS":[0,14,1,0]}]},{"x":3.319,"y":11.884,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":6.14,"y":9.542,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":9.542,"w":6.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"State and local ","S":3,"TS":[0,12,0,0]}]},{"x":10.445,"y":9.542,"w":10.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(check only one box):","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":10.292,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":9,"TS":[0,12,1,0]}]},{"x":8.503,"y":10.292,"w":6.557,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"Income taxes, ","S":3,"TS":[0,12,0,0]}]},{"x":11.816,"y":10.292,"w":1,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"or","S":3,"TS":[0,12,0,0]}]},{"x":6.903,"y":11.042,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":8.503,"y":11.042,"w":8.74,"oc":"#181616","sw":0.36196875,"A":"left","R":[{"T":"General sales taxes","S":3,"TS":[0,12,0,0]}]},{"x":13.743,"y":10.853,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[3,15,0,0]}]},{"x":14.703,"y":10.292,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":23.397,"y":10.293,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":6.14,"y":11.792,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":11.792,"w":15.519,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Real estate taxes (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":16.203,"y":11.792,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":23.397,"y":11.792,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":6.14,"y":12.542,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":12.542,"w":10.926,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Personal property taxes ","S":3,"TS":[0,12,0,0]}]},{"x":13.203,"y":12.542,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":23.397,"y":12.542,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":9,"TS":[0,12,1,0]}]},{"x":6.14,"y":13.261,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":13.23,"w":15.747,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other taxes. List type and amount ","S":3,"TS":[0,12,0,0]}]},{"x":15.761,"y":13.136,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":23.397,"y":14.042,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":9,"TS":[0,12,1,0]}]},{"x":6.14,"y":14.792,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":14.792,"w":9.559,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 5 through 8","S":3,"TS":[0,12,0,0]}]},{"x":12.453,"y":14.792,"w":29.326,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"x":29.697,"y":14.792,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":9,"TS":[0,12,1,0]}]},{"x":1.9529999999999998,"y":15.587,"w":3.89,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Interest ","S":10,"TS":[0,14,1,0]}]},{"x":1.9529999999999998,"y":16.337,"w":4.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You Paid","S":10,"TS":[0,14,1,0]}]},{"x":1.9529999999999998,"y":17.56,"w":2.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Note.","S":-1,"TS":[0,11,1,0]}]},{"x":3.278,"y":19.107,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":18.16,"w":6.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your mortgage ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":18.76,"w":3.593,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"interest ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":19.36,"w":6.929,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"deduction may ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":19.96,"w":6.761,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"be limited (see ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":20.56,"w":6.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions). ","S":-1,"TS":[0,11,0,0]}]},{"x":5.828,"y":15.542000000000002,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":15.542000000000002,"w":29.824,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Home mortgage interest and points reported to you on Form 1098 ","S":-1,"TS":[0,11.46,0,0]}]},{"x":23.24,"y":15.542000000000002,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":9,"TS":[0,12,1,0]}]},{"x":5.828,"y":16.23,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":9,"TS":[0,12,1,0]}]},{"x":6.5,"y":18.589,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":6.5,"y":19.401,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":6.903,"y":16.23,"w":29.879,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Home mortgage interest not reported to you on Form 1098. If paid ","S":-1,"TS":[0,11.46,0,0]}]},{"x":6.904,"y":16.917,"w":29.009,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"to the person from whom you bought the home, see instructions ","S":-1,"TS":[0,11.46,0,0]}]},{"x":6.906,"y":17.615,"w":26.489,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and show that person’s name, identifying no., and address ","S":-1,"TS":[0,11.46,0,0]}]},{"x":20.909,"y":17.522,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,9.58,0,0]}]},{"x":23.24,"y":19.292,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":9,"TS":[0,12,1,0]}]},{"x":5.828,"y":20.105,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":9,"TS":[0,12,1,0]}]},{"x":6.5,"y":22.339,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":6.903,"y":20.105,"w":27.729,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Points not reported to you on Form 1098. See instructions for ","S":3,"TS":[0,12,0,0]}]},{"x":6.904,"y":20.792,"w":5.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"special rules","S":3,"TS":[0,12,0,0]}]},{"x":10.204,"y":20.792,"w":22.661,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"x":22.651,"y":20.792,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":23.24,"y":20.792,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":9,"TS":[0,12,1,0]}]},{"x":5.828,"y":21.542,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":21.542,"w":21.486,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Mortgage insurance premiums (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":19.203,"y":21.542,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":23.24,"y":21.542,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":9,"TS":[0,12,1,0]}]},{"x":5.828,"y":22.292,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":22.292,"w":30.971,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Investment interest. Attach Form 4952 if required. (See instructions.) ","S":-1,"TS":[0,11.19,0,0]}]},{"x":23.24,"y":22.292,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":9,"TS":[0,12,1,0]}]},{"x":5.828,"y":23.042,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":23.042,"w":10.671,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 10 through 14","S":3,"TS":[0,12,0,0]}]},{"x":13.203,"y":23.042,"w":27.993,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"x":29.54,"y":23.042,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15 ","S":9,"TS":[0,12,1,0]}]},{"x":1.9529999999999998,"y":23.837,"w":3.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Gifts to ","S":-1,"TS":[0,13.7,1,0]}]},{"x":1.9529999999999998,"y":24.587,"w":3.445,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Charity","S":-1,"TS":[0,13.7,1,0]}]},{"x":1.9529999999999998,"y":25.435,"w":6.354,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you made a ","S":-1,"TS":[0,10.76,0,0]}]},{"x":1.9529999999999998,"y":26.035,"w":6.205,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"gift and got a ","S":-1,"TS":[0,10.76,0,0]}]},{"x":1.9529999999999998,"y":26.635,"w":5.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"benefit for it, ","S":-1,"TS":[0,10.76,0,0]}]},{"x":1.9529999999999998,"y":27.235,"w":7.594,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"see instructions. ","S":-1,"TS":[0,10.76,0,0]}]},{"x":5.828,"y":23.855,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16 ","S":9,"TS":[0,12,1,0]}]},{"x":6.5,"y":26.089,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":6.903,"y":23.855,"w":27.359,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Gifts by cash or check. If you made any gift of $250 or more, ","S":3,"TS":[0,12,0,0]}]},{"x":6.905,"y":24.542,"w":7.038,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"see instructions","S":3,"TS":[0,12,0,0]}]},{"x":10.955,"y":24.542,"w":21.328,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"x":22.653,"y":24.542,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":23.24,"y":24.542,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16 ","S":9,"TS":[0,12,1,0]}]},{"x":5.828,"y":25.355,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"17 ","S":9,"TS":[0,12,1,0]}]},{"x":6.5,"y":27.589,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":6.903,"y":25.355,"w":27.156,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other than by cash or check. If any gift of $250 or more, see ","S":3,"TS":[0,12,0,0]}]},{"x":6.901,"y":26.042,"w":7.798,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions. You ","S":3,"TS":[0,12,0,0]}]},{"x":10.787,"y":26.042,"w":2.666,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"must ","S":3,"TS":[0,12,0,0]}]},{"x":12.162,"y":26.042,"w":13.431,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"attach Form 8283 if over $500","S":3,"TS":[0,12,0,0]}]},{"x":20.076,"y":26.042,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":20.826,"y":26.042,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":21.576,"y":26.042,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":23.24,"y":26.042,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"17 ","S":9,"TS":[0,12,1,0]}]},{"x":5.828,"y":26.792,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"18 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":26.792,"w":11.221,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Carryover from prior year","S":3,"TS":[0,12,0,0]}]},{"x":13.953,"y":26.792,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":23.24,"y":26.792,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"x":5.828,"y":27.542,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"19 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":27.542,"w":10.671,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 16 through 18","S":3,"TS":[0,12,0,0]}]},{"x":13.203,"y":27.542,"w":27.993,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"x":29.54,"y":27.542,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"19 ","S":9,"TS":[0,12,1,0]}]},{"x":1.9529999999999998,"y":28.243,"w":6.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Casualty and ","S":10,"TS":[0,14,1,0]}]},{"x":1.9529999999999998,"y":28.993,"w":6.446,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Theft Losses ","S":10,"TS":[0,14,1,0]}]},{"x":5.828,"y":29.042,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20 ","S":9,"TS":[0,12,1,0]}]},{"x":6.903,"y":29.042,"w":28.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Casualty or theft loss(es). Attach Form 4684. (See instructions.)","S":3,"TS":[0,12,0,0]}]},{"x":22.953,"y":29.042,"w":10.664,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........","S":3,"TS":[0,12,0,0]}]},{"x":28.501,"y":29.042,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":29.54,"y":29.042,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20 ","S":9,"TS":[0,12,1,0]}]},{"x":2,"y":30.096,"w":5.897,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Job Expenses ","S":-1,"TS":[0,10.9999975,1,0]}]},{"x":2,"y":30.808,"w":5.101,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"and Certain ","S":-1,"TS":[0,10.9999975,1,0]}]},{"x":1.9529999999999998,"y":31.567999999999998,"w":6.225,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Miscellaneous ","S":-1,"TS":[0,10.9999975,1,0]}]},{"x":1.9529999999999998,"y":32.28,"w":4.819,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Deductions ","S":-1,"TS":[0,10.9999975,1,0]}]},{"x":2,"y":34.52,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":5.875,"y":30.199,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21 ","S":9,"TS":[0,12,1,0]}]},{"x":6.5,"y":32.152,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":6.5,"y":32.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":6.95,"y":30.199,"w":26.673,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Unreimbursed employee expenses—job travel, union dues, ","S":3,"TS":[0,12,0,0]}]},{"x":6.95,"y":30.886,"w":27.249,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"job education, etc. Attach Form 2106 or 2106-EZ if required. ","S":3,"TS":[0,12,0,0]}]},{"x":6.948,"y":34.35,"w":7.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(See instructions.)","S":3,"TS":[0,12,0,0]}]},{"x":11.44,"y":32.85,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,10.9,0,0]}]},{"x":11.577,"y":32.85,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":11.681,"y":34.256,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":23.287,"y":34.339,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"x":5.875,"y":35.089,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22 ","S":9,"TS":[0,12,1,0]}]},{"x":6.95,"y":35.089,"w":9.185,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Tax preparation fees","S":3,"TS":[0,12,0,0]}]},{"x":12.5,"y":35.089,"w":18.662,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............. ","S":3,"TS":[0,12,0,0]}]},{"x":23.287,"y":35.089,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22 ","S":9,"TS":[0,12,1,0]}]},{"x":5.875,"y":35.902,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23 ","S":9,"TS":[0,12,1,0]}]},{"x":6.5,"y":35.089,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":6.95,"y":35.902,"w":27.544,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other expenses—investment, safe deposit box, etc. List type ","S":3,"TS":[0,12,0,0]}]},{"x":6.951,"y":36.6,"w":5.633,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and amount ","S":3,"TS":[0,12,0,0]}]},{"x":10.119,"y":35.1,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":10.223,"y":36.506,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":23.287,"y":37.339,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23 ","S":9,"TS":[0,12,1,0]}]},{"x":5.875,"y":38.089,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24 ","S":9,"TS":[0,12,1,0]}]},{"x":6.95,"y":38.089,"w":10.671,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 21 through 23","S":3,"TS":[0,12,0,0]}]},{"x":13.25,"y":38.089,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............ ","S":3,"TS":[0,12,0,0]}]},{"x":23.287,"y":38.089,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24 ","S":9,"TS":[0,12,1,0]}]},{"x":5.875,"y":38.839,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"25 ","S":9,"TS":[0,12,1,0]}]},{"x":6.95,"y":38.839,"w":17.23,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter amount from Form 1040, line 38 ","S":-1,"TS":[0,11.82,0,0]}]},{"x":16.987,"y":38.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25 ","S":3,"TS":[0,12,0,0]}]},{"x":5.875,"y":39.589,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26 ","S":9,"TS":[0,12,1,0]}]},{"x":6.95,"y":39.589,"w":12.097,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 25 by 2% (.02)","S":3,"TS":[0,12,0,0]}]},{"x":14,"y":39.589,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........... ","S":3,"TS":[0,12,0,0]}]},{"x":23.287,"y":39.589,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26 ","S":9,"TS":[0,12,1,0]}]},{"x":5.875,"y":40.339,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27 ","S":9,"TS":[0,12,1,0]}]},{"x":6.95,"y":40.277,"w":30.362,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 26 from line 24. If line 26 is more than line 24, enter -0-","S":3,"TS":[0,12,0,0]}]},{"x":24.5,"y":40.277,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":29.587,"y":40.339,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27 ","S":9,"TS":[0,12,1,0]}]},{"x":2,"y":41.044,"w":3.223,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Other ","S":-1,"TS":[0,13.5,1,0]}]},{"x":2,"y":41.756,"w":7.392,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Miscellaneous ","S":-1,"TS":[0,13.5,1,0]}]},{"x":2,"y":42.469,"w":5.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Deductions ","S":-1,"TS":[0,13.5,1,0]}]},{"x":5.875,"y":41.089,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28 ","S":9,"TS":[0,12,1,0]}]},{"x":6.95,"y":41.1,"w":24.175,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other—from list in instructions. List type and amount ","S":3,"TS":[0,12,0,0]}]},{"x":20.548,"y":41.006,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.587,"y":42.589,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28 ","S":9,"TS":[0,12,1,0]}]},{"x":2,"y":43.384,"w":2.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Total ","S":10,"TS":[0,14,1,0]}]},{"x":2,"y":44.134,"w":4.557,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Itemized ","S":10,"TS":[0,14,1,0]}]},{"x":2,"y":44.884,"w":5.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Deductions ","S":10,"TS":[0,14,1,0]}]},{"x":5.875,"y":43.402,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"29 ","S":9,"TS":[0,12,1,0]}]},{"x":6.5,"y":42.589,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":6.95,"y":43.339,"w":17.138,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Is Form 1040, line 38, over $150,000? ","S":-1,"TS":[0,11.73,0,0]}]},{"x":29.587,"y":44.839,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"29 ","S":9,"TS":[0,12,1,0]}]},{"x":7.85,"y":44.152,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"x":8.767,"y":44.152,"w":31.678,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Your deduction is not limited. Add the amounts in the far right column ","S":3,"TS":[0,12,0,0]}]},{"x":26.585,"y":42.652,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":7.85,"y":44.839,"w":30.641,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"for lines 4 through 28. Also, enter this amount on Form 1040, line 40.","S":3,"TS":[0,12,0,0]}]},{"x":26.75,"y":45.708,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[3,19,0,0]}]},{"x":27.5,"y":44.839,"w":5.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..","S":-1,"TS":[0,7.5,0,0]}]},{"x":7.85,"y":45.652,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"x":9.007,"y":45.652,"w":27.656,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Your deduction may be limited. See the Itemized Deductions ","S":3,"TS":[0,12,0,0]}]},{"x":24.563,"y":44.152,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":7.85,"y":46.339,"w":26.322,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Worksheet in the instructions to figure the amount to enter.","S":3,"TS":[0,12,0,0]}]},{"x":5.874,"y":47.151,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"30 ","S":9,"TS":[0,12,1,0]}]},{"x":6.5,"y":46.339,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":6.95,"y":47.151,"w":35.489,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you elect to itemize deductions even though they are less than your standard ","S":3,"TS":[0,12,0,0]}]},{"x":6.948,"y":47.85,"w":9.966,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"deduction, check here","S":3,"TS":[0,12,0,0]}]},{"x":13.248,"y":47.85,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":27.2,"y":47.756,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":48.645,"w":31.453,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see Form 1040 instructions. ","S":-1,"TS":[0,11,1,0]}]},{"x":21.963,"y":48.625,"w":7.762,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 17145C ","S":2,"TS":[0,10,0,0]}]},{"x":29.729,"y":48.625,"w":14.172,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule A (Form 1040) 2013 ","S":8,"TS":[0,10,1,0]}]},{"x":6.884,"y":18.177,"w":20.223,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"NAME","S":2,"TS":[0,10,0,0]}]},{"x":16.407,"y":18.173,"w":28.007,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"SSN/EIN","S":2,"TS":[0,10,0,0]}]},{"x":6.875,"y":18.656,"w":33.838,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"ADDRESS","S":2,"TS":[0,10,0,0]}]},{"x":6.875,"y":19.406,"w":15.946,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"CITY","S":2,"TS":[0,10,0,0]}]},{"x":15,"y":19.406,"w":22.561,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"STATE","S":2,"TS":[0,10,0,0]}]},{"x":18.688,"y":19.406,"w":10.892,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"ZIP","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":426,"AM":1024,"TU":"Page 1. Name(s) shown on Form 1040.","x":2.163,"y":4.292,"w":27.45,"h":0.891},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":427,"AM":1024,"TU":"Your social security number","x":29.83,"y":4.375,"w":5.521,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":428,"AM":0,"TU":"Medical and Dental Expenses. Caution. Do not include expenses reimbursed or paid by others. Line 1. Medical and dental expenses (see instructions). Dollars.","x":24.213,"y":5.933,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":429,"AM":1024,"TU":"Line 2. Enter amount from Form 1040, line 38. Dollars.","x":17.913,"y":6.683,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":430,"AM":0,"TU":"Line 3. Multiply line 2 by 7.5 percent (.075) or 10.0 percent (.10)","x":24.213,"y":8.183,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":431,"AM":1024,"TU":"Line 4. Subtract line 3 from line 1. If line 3 is more than line 1, enter zero. Dollars.","x":30.513,"y":8.87,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":433,"AM":0,"TU":"Line 5. State and local taxes.","x":24.213,"y":10.433,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":435,"AM":0,"TU":"Line 6. Real estate taxes (see instructions). Dollars.","x":24.213,"y":11.933,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":436,"AM":0,"TU":"Line 7. Personal property taxes. Dollars.","x":24.213,"y":12.683,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":437,"AM":0,"TU":"Line 8. Other taxes. List type","x":16.563,"y":13.433,"w":6.3,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":438,"AM":0,"TU":"Line 8.. Type continued.","x":7.137,"y":14.183,"w":15.75,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":439,"AM":0,"TU":"Line 8. Amount.","x":24.213,"y":14.183,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":440,"AM":1024,"TU":"Line 9. Add lines 5 through 8. Dollars.","x":30.513,"y":14.87,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":441,"AM":0,"TU":"Interest you paid. Note. Your mortgage interest deduction may be limited (see instructions). Line 10. Home mortgage interest and points reported to you on Form 1098. Dollars.","x":24.213,"y":15.683,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE11_L11BX_1_","EN":0},"TI":442,"AM":0,"TU":"name","x":9.234,"y":18.449,"w":7.21,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"LINE11_L11BX1_1_","EN":0},"TI":443,"AM":0,"TU":"SSN/EIN","x":18.461,"y":18.442,"w":4.443,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE11_L11BY_1_","EN":0},"TI":444,"AM":0,"TU":"ADDRESS","x":9.407,"y":19.037,"w":13.484,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE11_L11BZ_1_","EN":0},"TI":445,"AM":0,"TU":"CITY","x":8.151,"y":19.678,"w":6.996,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE11_L11BZ2_1_","EN":0},"TI":446,"AM":0,"x":16.936,"y":19.672,"w":1.324,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AP"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"LINE11_L11BZ3_1_","EN":0},"TI":447,"AM":0,"TU":"ZIP","x":19.664,"y":19.639,"w":3.254,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":448,"AM":0,"TU":"Line 11. Dollars.","x":24.213,"y":19.433,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":449,"AM":0,"TU":"Line 12. Points not reported to you on Form 1098. See instructions for special rules. Dollars.","x":24.213,"y":20.933,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"QUALMORT","EN":0},"TI":450,"AM":0,"TU":"Line 13. Mortgage insurance premiums (see instructions). Dollars.","x":24.213,"y":21.683,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4952"}},"id":{"Id":"A1","EN":0},"TI":451,"AM":1024,"x":22.708,"y":22.362,"w":0.583,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":452,"AM":0,"TU":"Line 14. Investment interest. Attach Form 4952 if required. (See instructions.). Dollars.","x":24.213,"y":22.433,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":453,"AM":1024,"TU":"Line 15. Add lines 10 through 14. Dollars.","x":30.513,"y":23.12,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":454,"AM":0,"TU":"Gifts to Charity. If you made a gift and got a benefit for it, see instructions. Line 16. Gifts by cash or check. If you made any gift of $250 or more, see instructions. Dollars.","x":24.213,"y":24.683,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8283"}},"id":{"Id":"A2","EN":0},"TI":455,"AM":1024,"x":20.802,"y":26.065,"w":0.583,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":456,"AM":0,"TU":"Line 17. Other than by cash or check. If any gift of $250 or more, see instructions. You must attach Form 8283 if over $500. Dollars.","x":24.213,"y":26.183,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":457,"AM":0,"TU":"Line 18. Carryover from prior year. Dollars.","x":24.213,"y":26.933,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":458,"AM":0,"TU":"Line 19. Add lines 16 through 18. Dollars.","x":30.513,"y":27.62,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4684"}},"id":{"Id":"A1","EN":0},"TI":459,"AM":1024,"x":23.055,"y":29.08,"w":0.583,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":460,"AM":0,"TU":"Casualty and Theft Losses. Line 20. Casualty or theft loss(es). Attach Form 4684. (See instructions.). Dollars.","x":30.513,"y":29.12,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text1","EN":0},"TI":461,"AM":1024,"x":5.873,"y":31.813,"w":4.366,"h":0.833,"V":"Form 2106"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2106"}},"id":{"Id":"A475","EN":0},"TI":462,"AM":1024,"x":10.676,"y":31.818,"w":0.583,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text3","EN":0},"TI":463,"AM":1024,"x":12.235,"y":31.988,"w":4.992,"h":0.833,"V":"Taxpayer Copy"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2106S"}},"id":{"Id":"A541","EN":0},"TI":464,"AM":1024,"x":17.587,"y":31.872,"w":0.583,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text5","EN":0},"TI":465,"AM":1024,"x":19.049,"y":32.043,"w":4.039,"h":0.833,"V":"Spouse Copy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text2","EN":0},"TI":466,"AM":1024,"x":5.941,"y":32.669,"w":4.42,"h":0.833,"V":"Form 2106-EZ"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2106EZ"}},"id":{"Id":"A476","EN":0},"TI":467,"AM":1024,"x":10.641,"y":32.627,"w":0.583,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text4","EN":0},"TI":468,"AM":1024,"x":12.243,"y":32.778,"w":5.019,"h":0.833,"V":"Taxpayer Copy"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F2106EZS"}},"id":{"Id":"A542","EN":0},"TI":469,"AM":1024,"x":17.56,"y":32.662,"w":0.583,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"Text6","EN":0},"TI":470,"AM":1024,"x":19.049,"y":32.805,"w":4.121,"h":0.833,"V":"Spouse Copy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPEXP_L20A_1_","EN":0},"TI":471,"AM":0,"TU":"JOB EXPENSE DESCRIPTION","x":12.518,"y":33.643,"w":6.511,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPEXP_L20B_1_","EN":0},"TI":472,"AM":0,"TU":"Job expense amount","x":19.107,"y":33.643,"w":4.116,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EMPEXP_L20A_2_","EN":0},"TI":473,"AM":0,"TU":"JOB EXPENSE DESCRIPTION","x":12.557,"y":34.471,"w":6.511,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"EMPEXP_L20B_2_","EN":0},"TI":474,"AM":0,"TU":"Job expense amount","x":19.127,"y":34.476,"w":4.116,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":475,"AM":0,"TU":"Line 21. Dollars.","x":24.257,"y":34.471,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":476,"AM":0,"TU":"Line 22. Tax preparation fees. Dollars.","x":24.257,"y":35.221,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INVEXP_L22A_1_","EN":0},"TI":477,"AM":0,"x":11.168,"y":36.777,"w":7.33,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INVEXP_L22B_1_","EN":0},"TI":478,"AM":0,"TU":"Line 23. AMOUNT","x":18.865,"y":36.742,"w":4.159,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INVEXP_L22A_2_","EN":0},"TI":479,"AM":0,"x":11.144,"y":37.583,"w":7.33,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INVEXP_L22B_2_","EN":0},"TI":480,"AM":0,"TU":"Line 23. AMOUNT","x":18.866,"y":37.545,"w":4.159,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":481,"AM":1024,"TU":"Line 23. Dollars.","x":24.343,"y":37.385,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":482,"AM":1024,"TU":"Line 24. Add lines 21 through 23. Dollars.","x":24.343,"y":38.135,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":483,"AM":1024,"TU":"Line 25. Enter amount from Form 1040, line 38. Dollars.","x":18.043,"y":38.885,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":484,"AM":1024,"TU":"Line 26. Multiply line 25 by 2 percent (.02). Dollars.","x":24.343,"y":39.635,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":485,"AM":1024,"TU":"Line 27. Subtract line 26 from line 24. If line 26 is more than line 24, enter zero. Dollars.","x":30.643,"y":40.384,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L27A_1_","EN":0},"TI":486,"AM":0,"x":7.372,"y":42.004,"w":16.201,"h":0.833,"PL":{"V":[" ","AMORTIZABLE BOND PREMIUMS","CASUALTY AND THEFT LOSS","FEDERAL ESTATE TAX","GAMBLING LOSSES","IMPAIRMENT-RELATED WORK EXPENSES","CLAIM REPAYMENTS","UNRECOVERED PENSION INVESTMENTS","SCHEDULE K-1"],"D":["(no entry)","AMORTIZABLE BOND PREMIUMS","CASUALTY AND THEFT LOSS","FEDERAL ESTATE TAX","GAMBLING LOSSES","IMPAIRMENT-RELATED WORK EXPENSES","CLAIM REPAYMENTS","UNRECOVERED PENSION INVESTMENTS","SCHEDULE K-1"]},"V":"(no entry)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L27B_1_","EN":0},"TI":487,"AM":0,"TU":"Line 28. AMOUNT","x":25.165,"y":41.93,"w":4.159,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L27A_2_","EN":0},"TI":488,"AM":0,"x":7.432,"y":42.8,"w":16.201,"h":0.833,"PL":{"V":[" ","AMORTIZABLE BOND PREMIUMS","CASUALTY AND THEFT LOSS","FEDERAL ESTATE TAX","GAMBLING LOSSES","IMPAIRMENT-RELATED WORK EXPENSES","CLAIM REPAYMENTS","UNRECOVERED PENSION INVESTMENTS","SCHEDULE K-1"],"D":["(no entry)","AMORTIZABLE BOND PREMIUMS","CASUALTY AND THEFT LOSS","FEDERAL ESTATE TAX","GAMBLING LOSSES","IMPAIRMENT-RELATED WORK EXPENSES","CLAIM REPAYMENTS","UNRECOVERED PENSION INVESTMENTS","SCHEDULE K-1"]},"V":"(no entry)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L27B_2_","EN":0},"TI":489,"AM":0,"TU":"Line 28. AMOUNT","x":25.216,"y":42.743,"w":4.159,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":490,"AM":1024,"TU":"Line 28. Dollars.","x":30.643,"y":42.704,"w":4.5,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":492,"AM":0,"TU":"Total Itemized Deductions. Line 29. Is Form 1040, line 38, over $150,000? Dollars.","x":30.643,"y":44.885,"w":4.5,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"IT","EN":0},"TI":432,"AM":0,"TU":"Line 5. Checkboxes.","x":7.933,"y":10.395,"w":0.639,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ST","EN":0},"TI":434,"AM":0,"TU":"Line 5. Checkboxes.","x":7.968,"y":11.153,"w":0.601,"h":0.833,"checked":false}],"id":{"Id":"TAXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L28N","EN":0},"TI":491,"AM":0,"TU":"Line 29. Checkboxes.","x":7.351,"y":44.213,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L28Y","EN":0},"TI":493,"AM":0,"TU":"Line 29. Checkboxes.","x":7.319,"y":45.705,"w":0.547,"h":0.833,"checked":false}],"id":{"Id":"L28BOXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"ITDED","EN":0},"TI":494,"AM":0,"TU":"Line 30. If you elect to itemize deductions even though they are less than your standard deduction, check here.","x":28.75,"y":47.97,"w":0.5,"h":0.833}]}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHB.json b/test/data/fd/form/FSCHB.json index 121f95f2..bb51c43a 100755 --- a/test/data/fd/form/FSCHB.json +++ b/test/data/fd/form/FSCHB.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":4.547,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.995,"y":4.547,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.064,"y":2.31,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.064,"y":4.547,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":6.047,"w":1.125,"l":74.336},{"oc":"#221f1f","x":80.395,"y":6.047,"w":1.125,"l":18.648},{"oc":"#221f1f","x":6.145,"y":24,"w":1.125,"l":11.223},{"oc":"#221f1f","x":80.395,"y":18.797,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":6.797,"w":0.75,"l":14.936},{"dsh":1,"oc":"#221f1f","x":22.232,"y":9.047,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":9.047,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":9.047,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":9.797,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":9.797,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":9.797,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":10.547,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":10.547,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":10.547,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":11.297,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":11.297,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":11.297,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":12.047,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":12.047,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":12.047,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":12.797,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":12.797,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":12.797,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":13.547,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":13.547,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":13.547,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":14.297,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":14.297,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":14.297,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":15.047,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":15.047,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":15.047,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":15.797,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":15.797,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":15.797,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":16.547,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":16.547,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":16.547,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":17.297,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":17.297,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":17.297,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":18.047,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":18.047,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":18.047,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":18.797,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":18.797,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":18.797,"w":0.75,"l":2.561},{"oc":"#221f1f","x":80.438,"y":20.25,"w":0.75,"l":3.712},{"oc":"#221f1f","x":80.438,"y":19.5,"w":0.75,"l":3.712},{"oc":"#221f1f","x":84.107,"y":18.797,"w":1.125,"l":12.461},{"oc":"#221f1f","x":84.107,"y":20.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":18.797,"w":1.125,"l":2.561},{"oc":"#221f1f","x":96.482,"y":20.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":80.395,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":21.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.482,"y":21.75,"w":1.125,"l":2.561},{"oc":"#221f1f","x":80.395,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":23.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":23.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":17.282,"y":23.25,"w":0.75,"l":63.199},{"oc":"#221f1f","x":17.282,"y":24,"w":1.125,"l":63.199},{"oc":"#221f1f","x":84.107,"y":24,"w":1.125,"l":14.936},{"oc":"#221f1f","x":6.402,"y":39,"w":1.125,"l":11.223},{"dsh":1,"oc":"#221f1f","x":37.082,"y":24.75,"w":0.75,"l":42.161},{"oc":"#221f1f","x":80.395,"y":24,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.107,"y":24.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":24.75,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":25.5,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":25.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":25.5,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":25.5,"w":0.75,"l":57.011},{"dsh":1,"oc":"#221f1f","x":22.232,"y":26.25,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":26.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":26.25,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":27,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":27,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":27,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":27.75,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":27.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":27.75,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":28.5,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":28.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":28.5,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":29.25,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":29.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":29.25,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":30,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":30,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":30.75,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":30.75,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":31.5,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":31.5,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":32.25,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":32.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":32.25,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":33,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":33,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":33,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":33.75,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":33.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":33.75,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":34.5,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":34.5,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":35.25,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":35.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":35.25,"w":0.75,"l":2.561},{"dsh":1,"oc":"#221f1f","x":22.232,"y":36,"w":0.75,"l":57.011},{"oc":"#221f1f","x":84.107,"y":36,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.482,"y":36,"w":0.75,"l":2.561},{"oc":"#221f1f","x":80.395,"y":36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":17.54,"y":38.25,"w":0.75,"l":81.761},{"oc":"#221f1f","x":17.54,"y":39,"w":1.125,"l":81.761},{"oc":"#221f1f","x":17.54,"y":40.5,"w":0.75,"l":73.099},{"oc":"#221f1f","x":91.79,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.503,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.79,"y":42.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.503,"y":42.75,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":43.527,"y":46.5,"w":0.75,"l":47.111},{"oc":"#221f1f","x":91.79,"y":45,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.503,"y":45,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.402,"y":48,"w":1.5,"l":49.586},{"oc":"#221f1f","x":55.903,"y":48,"w":1.5,"l":19.886},{"oc":"#221f1f","x":75.703,"y":48,"w":1.5,"l":23.598},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":3.529},{"oc":"#221f1f","x":0.086,"y":48.821,"w":0.75,"l":3.529}],"VLines":[{"oc":"#221f1f","x":21.038,"y":1.531,"w":1.5,"l":3.047},{"oc":"#221f1f","x":21.038,"y":3.031,"w":1.5,"l":1.547},{"oc":"#221f1f","x":84.15,"y":1.544,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.15,"y":2.281,"w":1.5,"l":2.281},{"oc":"#221f1f","x":80.438,"y":4.531,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.176,"y":6.01,"w":0.75,"l":13.668},{"oc":"#221f1f","x":80.437,"y":6.009,"w":0.75,"l":13.481},{"oc":"#221f1f","x":84.15,"y":6.031,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":6.781,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.525,"y":8.281,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":9.031,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":9.781,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":10.531,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":11.281,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":12.031,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":12.781,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":13.531,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":14.281,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":15.031,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":15.781,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":16.531,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":17.281,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.551,"y":18.048,"w":0.75,"l":1.779},{"oc":"#221f1f","x":84.15,"y":19.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":80.438,"y":19.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":96.525,"y":19.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.525,"y":20.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":20.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.525,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":22.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":23.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":23.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.15,"y":23.977,"w":0.75,"l":12.047},{"oc":"#221f1f","x":80.438,"y":23.977,"w":0.75,"l":12.047},{"oc":"#221f1f","x":96.525,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":27.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":29.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.525,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.176,"y":35.997,"w":0.75,"l":2.162},{"oc":"#221f1f","x":80.437,"y":35.997,"w":0.75,"l":2.162},{"oc":"#221f1f","x":96.551,"y":36.037,"w":0.75,"l":2.083},{"oc":"#221f1f","x":91.833,"y":38.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.545,"y":38.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.545,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":91.833,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.545,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":91.833,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.545,"y":41.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.545,"y":42.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":91.833,"y":42.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.545,"y":42.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":91.833,"y":44.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.545,"y":44.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.545,"y":44.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":91.833,"y":44.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.545,"y":44.984,"w":0.75,"l":2.281},{"oc":"#221f1f","x":91.833,"y":47.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.545,"y":47.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":3.615,"y":48.821,"w":0.75,"l":0.648},{"oc":"#221f1f","x":0.086,"y":48.821,"w":0.75,"l":0.648}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bebfc1","x":91.833,"y":40.5,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":95.545,"y":40.5,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":91.833,"y":42.75,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":95.545,"y":42.75,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":91.833,"y":45,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":95.545,"y":45,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.852,"w":3.358,"h":0.586,"clr":-1}],"Texts":[{"oc":"#221f1f","x":78.383,"y":47.027,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":1.306,"w":6.777999999999999,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20B%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":1.991,"w":10.448000000000004,"clr":-1,"A":"left","R":[{"T":"(Form%201040A%20or%201040)%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.938,"y":3.072,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.572,"w":13.279000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":35.428,"y":1.766,"w":15.171000000000003,"clr":-1,"A":"left","R":[{"T":"Interest%20and%20Ordinary%20Dividends","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":41.814,"y":2.819,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":43.084,"y":2.912,"w":14.393000000000006,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040A%20or%201040.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":21.493,"y":3.3810000000000002,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":22.763,"y":3.4749999999999996,"w":44.46299999999999,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Schedule%20B%20(Form%201040A%20or%201040)%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fscheduleb","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":83.131,"y":3.4749999999999996,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":85.741,"y":1.282,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.857,"y":2.689,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.827,"y":2.689,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.963,"y":3.203,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.963,"y":3.649,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.94,"y":3.649,"w":1.112,"clr":-1,"A":"left","R":[{"T":"08","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":4.278,"w":11.205000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.875,"y":4.278,"w":13.449000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.938,"y":6.02,"w":3.057,"clr":-1,"A":"left","R":[{"T":"Part%20I%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.938,"y":7.295,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Interest","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.938,"y":9.458,"w":7.723000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":10.058,"w":7.800000000000001,"clr":-1,"A":"left","R":[{"T":"on%20back%20and%20the%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":10.658,"w":7.223000000000001,"clr":-1,"A":"left","R":[{"T":"instructions%20for%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.258,"w":7.225000000000001,"clr":-1,"A":"left","R":[{"T":"Form%201040A%2C%20or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.858,"w":5.670000000000002,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":12.458,"w":3.723,"clr":-1,"A":"left","R":[{"T":"line%208a.)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":13.658,"w":3.056,"clr":-1,"A":"left","R":[{"T":"Note.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.217,"y":13.658,"w":2.741,"clr":-1,"A":"left","R":[{"T":"If%20you%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":14.258,"w":7.5009999999999994,"clr":-1,"A":"left","R":[{"T":"received%20a%20Form%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":14.858,"w":7.336,"clr":-1,"A":"left","R":[{"T":"1099-INT%2C%20Form%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":15.457999999999998,"w":6.077000000000002,"clr":-1,"A":"left","R":[{"T":"1099-OID%2C%20or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":16.058,"w":4.965,"clr":-1,"A":"left","R":[{"T":"substitute%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":16.658,"w":7.077,"clr":-1,"A":"left","R":[{"T":"statement%20from%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":17.258,"w":8.168000000000003,"clr":-1,"A":"left","R":[{"T":"a%20brokerage%20firm%2C%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":17.858,"w":6.261000000000001,"clr":-1,"A":"left","R":[{"T":"list%20the%20firm%E2%80%99s%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.809,"y":18.411,"w":5.7620000000000005,"clr":-1,"A":"left","R":[{"T":"name%20as%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.809,"y":19.011,"w":7.576000000000002,"clr":-1,"A":"left","R":[{"T":"payer%20and%20enter%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.809,"y":19.611,"w":7.798000000000002,"clr":-1,"A":"left","R":[{"T":"the%20total%20interest%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.809,"y":20.211,"w":6.9090000000000025,"clr":-1,"A":"left","R":[{"T":"shown%20on%20that%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.809,"y":20.811,"w":2.612,"clr":-1,"A":"left","R":[{"T":"form.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":18.69,"y":6.011,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.025,"y":6.011,"w":34.35899999999999,"clr":-1,"A":"left","R":[{"T":"List%20name%20of%20payer.%20If%20any%20interest%20is%20from%20a%20seller-financed%20mortgage%20and%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.022,"y":6.698,"w":36.86,"clr":-1,"A":"left","R":[{"T":"buyer%20used%20the%20property%20as%20a%20personal%20residence%2C%20see%20instructions%20on%20back%20and%20list%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.027,"y":7.396000000000001,"w":34.89499999999999,"clr":-1,"A":"left","R":[{"T":"this%20interest%20first.%20Also%2C%20show%20that%20buyer%E2%80%99s%20social%20security%20number%20and%20address%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.002,"y":7.303000000000001,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.614,"y":11.792,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":88.432,"y":5.855,"w":3.777,"clr":-1,"A":"left","R":[{"T":"Amount","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.69,"y":19.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.025,"y":19.339,"w":11.746000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20line%201","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.001,"y":19.339,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"..................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":19.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.69,"y":20.152,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.025,"y":20.152,"w":34.33999999999999,"clr":-1,"A":"left","R":[{"T":"Excludable%20interest%20on%20series%20EE%20and%20I%20U.S.%20savings%20bonds%20issued%20after%201989.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.022,"y":20.839,"w":8.022,"clr":-1,"A":"left","R":[{"T":"Attach%20Form%208815","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.81,"y":20.839,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":".....................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.614,"y":20.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.69,"y":21.652,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.025,"y":21.652,"w":34.528999999999996,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%203%20from%20line%202.%20Enter%20the%20result%20here%20and%20on%20Form%201040A%2C%20or%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.027,"y":22.35,"w":5.688000000000001,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%208a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.751,"y":22.35,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.713,"y":22.256,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.614,"y":22.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.075,"y":23.089,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.459,"y":23.089,"w":22.618000000000002,"clr":-1,"A":"left","R":[{"T":"If%20line%204%20is%20over%20%241%2C500%2C%20you%20must%20complete%20Part%20III.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.432,"y":23.058,"w":4.055,"clr":-1,"A":"left","R":[{"T":"Amount%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.938,"y":23.973,"w":3.057,"clr":-1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.938,"y":25.298,"w":4.667000000000002,"clr":-1,"A":"left","R":[{"T":"Ordinary%20%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#221f1f","x":5.938,"y":26.198,"w":5.335000000000001,"clr":-1,"A":"left","R":[{"T":"Dividends%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":5.938,"y":27.107,"w":7.723000000000001,"clr":-1,"A":"left","R":[{"T":"(See%20instructions%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":27.638,"w":7.522,"clr":-1,"A":"left","R":[{"T":"on%20back%20and%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":28.169,"w":6.945,"clr":-1,"A":"left","R":[{"T":"instructions%20for%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":28.7,"w":7.225000000000001,"clr":-1,"A":"left","R":[{"T":"Form%201040A%2C%20or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":29.231,"w":5.670000000000002,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":29.762,"w":3.723,"clr":-1,"A":"left","R":[{"T":"line%209a.)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":30.876,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Note.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.834,"y":30.876,"w":2.741,"clr":-1,"A":"left","R":[{"T":"If%20you%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":31.406999999999996,"w":7.5009999999999994,"clr":-1,"A":"left","R":[{"T":"received%20a%20Form%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":31.938000000000002,"w":5.65,"clr":-1,"A":"left","R":[{"T":"1099-DIV%20or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":32.469,"w":4.686999999999999,"clr":-1,"A":"left","R":[{"T":"substitute%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":33,"w":7.077,"clr":-1,"A":"left","R":[{"T":"statement%20from%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":33.531,"w":7.890000000000002,"clr":-1,"A":"left","R":[{"T":"a%20brokerage%20firm%2C%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":34.062,"w":5.9830000000000005,"clr":-1,"A":"left","R":[{"T":"list%20the%20firm%E2%80%99s%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":34.593,"w":5.7620000000000005,"clr":-1,"A":"left","R":[{"T":"name%20as%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":35.124,"w":7.298000000000002,"clr":-1,"A":"left","R":[{"T":"payer%20and%20enter%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":35.655,"w":5.612,"clr":-1,"A":"left","R":[{"T":"the%20ordinary%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":36.186,"w":7.815999999999999,"clr":-1,"A":"left","R":[{"T":"dividends%20shown%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":36.717,"w":6.021000000000001,"clr":-1,"A":"left","R":[{"T":"on%20that%20form.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":18.69,"y":23.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.025,"y":23.795,"w":8.28,"clr":-1,"A":"left","R":[{"T":"List%20name%20of%20payer","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.983,"y":23.701,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":81.614,"y":29.308,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.948,"y":36.652,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.283,"y":36.652,"w":34.309,"clr":-1,"A":"left","R":[{"T":"Add%20the%20amounts%20on%20line%205.%20Enter%20the%20total%20here%20and%20on%20Form%201040A%2C%20or%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.292,"y":37.35,"w":5.966000000000001,"clr":-1,"A":"left","R":[{"T":"1040%2C%20line%209a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.017,"y":37.35,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.97,"y":37.256,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.872,"y":37.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.333,"y":38.089,"w":3.056,"clr":-1,"A":"left","R":[{"T":"Note.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.147,"y":38.089,"w":22.618000000000002,"clr":-1,"A":"left","R":[{"T":"If%20line%206%20is%20over%20%241%2C500%2C%20you%20must%20complete%20Part%20III.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.195,"y":40.636,"w":3.613,"clr":-1,"A":"left","R":[{"T":"Part%20III%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":6.195,"y":41.536,"w":4.223,"clr":-1,"A":"left","R":[{"T":"Foreign%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":6.195,"y":42.436,"w":5.112,"clr":-1,"A":"left","R":[{"T":"Accounts%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":6.195,"y":43.336,"w":5.668000000000001,"clr":-1,"A":"left","R":[{"T":"and%20Trusts%20%20","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":6.195,"y":44.057,"w":2.259,"clr":-1,"A":"left","R":[{"T":"(See%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.195,"y":44.657,"w":6.872,"clr":-1,"A":"left","R":[{"T":"instructions%20on%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.195,"y":45.257,"w":3.001,"clr":-1,"A":"left","R":[{"T":"back.)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":92.064,"y":39.308,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":96.106,"y":39.308,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":18.948,"y":40.402,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"7a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.283,"y":40.402,"w":43.41699999999998,"clr":-1,"A":"left","R":[{"T":"At%20any%20time%20during%202013%2C%20did%20you%20have%20a%20financial%20interest%20in%20or%20signature%20authority%20over%20a%20financial%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.283,"y":41.058,"w":43.044999999999966,"clr":-1,"A":"left","R":[{"T":"account%20(such%20as%20a%20bank%20account%2C%20securities%20account%2C%20or%20brokerage%20account)%20located%20in%20a%20foreign%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.283,"y":41.715,"w":11.669000000000002,"clr":-1,"A":"left","R":[{"T":"country%3F%20See%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.259,"y":41.715,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.283,"y":42.402,"w":40.09300000000002,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20are%20you%20%20required%20to%20file%20FinCEN%20Form%20114%2C%20Report%20of%20Foreign%20Bank%20and%20Financial%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.284,"y":43.027,"w":42.72200000000003,"clr":-1,"A":"left","R":[{"T":"Accounts%20(FBAR)%2C%20formerly%20TD%20F%2090-22.1%2C%20to%20report%20that%20financial%20interest%20or%20signature%20authority%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.288,"y":44.277,"w":6.1364,"clr":-1,"A":"left","R":[{"T":"requirements%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.012,"y":44.277,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.286,"y":43.652,"w":40.22300000000003,"clr":-1,"A":"left","R":[{"T":"See%20FinCEN%20Form%20114%20and%20its%20instructions%20for%20filing%20requirements%20and%20exceptions%20to%20those%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.808,"y":44.839,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.283,"y":44.902,"w":41.191999999999965,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20required%20to%20file%20FinCEN%20Form%20114%2C%20enter%20the%20name%20of%20the%20foreign%20country%20where%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.283,"y":45.6,"w":12.724000000000002,"clr":-1,"A":"left","R":[{"T":"financial%20account%20is%20located%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.965,"y":45.506,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.948,"y":46.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.283,"y":46.339,"w":41.96899999999997,"clr":-1,"A":"left","R":[{"T":"During%202013%2C%20did%20you%20receive%20a%20distribution%20from%2C%20or%20were%20you%20the%20grantor%20of%2C%20or%20transferor%20to%2C%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.283,"y":47.027,"w":36.083,"clr":-1,"A":"left","R":[{"T":"foreign%20trust%3F%20If%20%E2%80%9CYes%2C%E2%80%9D%20you%20may%20have%20to%20file%20Form%203520.%20See%20instructions%20on%20back%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.195,"y":47.857,"w":33.507999999999996,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":61.093,"y":47.75,"w":7.7620000000000005,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2017146N%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.056,"y":47.75,"w":18.67400000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20B%20(Form%201040A%20or%201040)%202013%20","S":8,"TS":[0,10,1,0]}]},{"x":21.664,"y":18.625,"w":117.82000000000001,"clr":0,"A":"left","R":[{"T":"Enter%20more%20interest%20payers","S":-1,"TS":[0,13,0,0]}]},{"x":22.044,"y":35.838,"w":122.27000000000002,"clr":0,"A":"left","R":[{"T":"Enter%20more%20dividend%20payers","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":17.333,"y":39.514,"w":46.46399999999993,"clr":-1,"A":"left","R":[{"T":"foreign%20account%3B%20or%20(c)%20received%20a%20distribution%20from%2C%20or%20were%20a%20grantor%20of%2C%20or%20a%20transferor%20to%2C%20a%20foreign%20trust.%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":17.333,"y":38.889,"w":46.918999999999976,"clr":-1,"A":"left","R":[{"T":"You%20must%20complete%20this%20part%20if%20you%20(a)%20had%20over%20%241%2C500%20of%20taxable%20interest%20or%20ordinary%20dividends%3B%20(b)%20had%20a%20","S":-1,"TS":[0,11.46,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":7938,"AM":1024,"x":6.229,"y":5.13,"w":74.085,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":7939,"AM":1024,"x":80.582,"y":5.103,"w":18.397,"h":0.834,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_1_","EN":0},"TI":7940,"AM":0,"x":22.25,"y":9.039,"w":57.031,"h":0.833,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_1_","EN":0},"TI":7941,"AM":0,"x":84.253,"y":8.997,"w":12.189,"h":0.833,"TU":"Line 1. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_2_","EN":0},"TI":7942,"AM":0,"x":22.234,"y":9.732,"w":57.028,"h":0.833,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_2_","EN":0},"TI":7943,"AM":0,"x":84.253,"y":9.747,"w":12.189,"h":0.833,"TU":"Line 1. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_3_","EN":0},"TI":7944,"AM":0,"x":22.234,"y":10.482,"w":57.028,"h":0.833,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_3_","EN":0},"TI":7945,"AM":0,"x":84.328,"y":10.47,"w":12.189,"h":0.833,"TU":"Line 1. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_4_","EN":0},"TI":7946,"AM":0,"x":22.234,"y":11.232,"w":57.028,"h":0.833,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_4_","EN":0},"TI":7947,"AM":0,"x":84.253,"y":11.247,"w":12.189,"h":0.833,"TU":"Line 1. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_5_","EN":0},"TI":7948,"AM":0,"x":22.234,"y":11.982,"w":57.028,"h":0.833,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_5_","EN":0},"TI":7949,"AM":0,"x":84.253,"y":11.997,"w":12.189,"h":0.833,"TU":"Line 1. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_6_","EN":0},"TI":7950,"AM":0,"x":22.234,"y":12.732,"w":57.028,"h":0.833,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_6_","EN":0},"TI":7951,"AM":0,"x":84.328,"y":12.774,"w":12.189,"h":0.833,"TU":"Line 1. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_7_","EN":0},"TI":7952,"AM":0,"x":22.298,"y":13.459,"w":57.028,"h":0.833,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_7_","EN":0},"TI":7953,"AM":0,"x":84.253,"y":13.497,"w":12.189,"h":0.833,"TU":"Line 1. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_8_","EN":0},"TI":7954,"AM":0,"x":22.234,"y":14.232,"w":57.028,"h":0.833,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_8_","EN":0},"TI":7955,"AM":0,"x":84.253,"y":14.247,"w":12.189,"h":0.833,"TU":"Line 1. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_9_","EN":0},"TI":7956,"AM":0,"x":22.234,"y":14.982,"w":57.028,"h":0.833,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_9_","EN":0},"TI":7957,"AM":0,"x":84.253,"y":14.997,"w":12.189,"h":0.833,"TU":"Line 1. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_10_","EN":0},"TI":7958,"AM":0,"x":22.234,"y":15.732,"w":57.028,"h":0.833,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_10_","EN":0},"TI":7959,"AM":0,"x":84.253,"y":15.747,"w":12.189,"h":0.833,"TU":"Line 1. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_11_","EN":0},"TI":7960,"AM":0,"x":22.234,"y":16.482,"w":57.028,"h":0.833,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_11_","EN":0},"TI":7961,"AM":0,"x":84.253,"y":16.497,"w":12.189,"h":0.833,"TU":"Line 1. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_12_","EN":0},"TI":7962,"AM":0,"x":22.234,"y":17.232,"w":57.028,"h":0.833,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_12_","EN":0},"TI":7963,"AM":0,"x":84.328,"y":17.247,"w":12.189,"h":0.833,"TU":"Line 1. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDLINT","EN":0},"TI":7964,"AM":1024,"x":22.234,"y":17.982,"w":57.028,"h":0.833,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTEREST","EN":0},"TI":7965,"AM":1024,"x":84.253,"y":18.02,"w":12.189,"h":0.833,"TU":"Line 1. Amount."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHB2"}},"id":{"Id":"Add_FSCHB2","EN":0},"TI":7966,"AM":1024,"x":42.499,"y":18.745,"w":5.701,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":7967,"AM":1024,"x":84.253,"y":19.545,"w":12.189,"h":0.833,"TU":"Amount_2"},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8815"}},"id":{"Id":"Add_F8815","EN":0},"TI":7968,"AM":1024,"x":35.644,"y":20.834,"w":5.701,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":7969,"AM":1024,"x":84.411,"y":20.971,"w":12.024,"h":0.833,"TU":"Amount_3"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":7970,"AM":1024,"x":84.336,"y":22.424,"w":12.024,"h":0.833,"TU":"Amount_4"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_1_","EN":0},"TI":7971,"AM":0,"x":22.298,"y":24.772,"w":57.028,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_1_","EN":0},"TI":7972,"AM":0,"x":84.253,"y":24.788,"w":12.189,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_2_","EN":0},"TI":7973,"AM":0,"x":22.293,"y":25.482,"w":56.858,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_2_","EN":0},"TI":7974,"AM":0,"x":84.335,"y":25.495,"w":12.132,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_3_","EN":0},"TI":7975,"AM":0,"x":22.234,"y":26.272,"w":57.028,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_3_","EN":0},"TI":7976,"AM":0,"x":84.253,"y":26.288,"w":12.189,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_4_","EN":0},"TI":7977,"AM":0,"x":22.234,"y":27.022,"w":57.028,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_4_","EN":0},"TI":7978,"AM":0,"x":84.253,"y":27.038,"w":12.189,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_5_","EN":0},"TI":7979,"AM":0,"x":22.234,"y":27.772,"w":57.028,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_5_","EN":0},"TI":7980,"AM":0,"x":84.253,"y":27.788,"w":12.189,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_6_","EN":0},"TI":7981,"AM":0,"x":22.234,"y":28.522,"w":57.028,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_6_","EN":0},"TI":7982,"AM":0,"x":84.253,"y":28.538,"w":12.189,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_7_","EN":0},"TI":7983,"AM":0,"x":22.234,"y":29.272,"w":57.028,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_7_","EN":0},"TI":7984,"AM":0,"x":84.253,"y":29.288,"w":12.189,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_8_","EN":0},"TI":7985,"AM":0,"x":22.234,"y":30.022,"w":57.028,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_8_","EN":0},"TI":7986,"AM":0,"x":84.253,"y":30.038,"w":12.189,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_9_","EN":0},"TI":7987,"AM":0,"x":22.234,"y":30.772,"w":57.028,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_9_","EN":0},"TI":7988,"AM":0,"x":84.253,"y":30.788,"w":12.189,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_10_","EN":0},"TI":7989,"AM":0,"x":22.234,"y":31.522,"w":57.028,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_10_","EN":0},"TI":7990,"AM":0,"x":84.189,"y":31.538,"w":12.189,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_11_","EN":0},"TI":7991,"AM":0,"x":22.234,"y":32.273,"w":57.028,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_11_","EN":0},"TI":7992,"AM":0,"x":84.253,"y":32.288,"w":12.189,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_12_","EN":0},"TI":7993,"AM":0,"x":22.234,"y":33.023,"w":57.028,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_12_","EN":0},"TI":7994,"AM":0,"x":84.253,"y":33.038,"w":12.189,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_13_","EN":0},"TI":7995,"AM":0,"x":22.234,"y":33.773,"w":57.028,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_13_","EN":0},"TI":7996,"AM":0,"x":84.253,"y":33.788,"w":12.189,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_14_","EN":0},"TI":7997,"AM":0,"x":22.234,"y":34.523,"w":57.028,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_14_","EN":0},"TI":7998,"AM":0,"x":84.253,"y":34.538,"w":12.189,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDLDIV","EN":0},"TI":7999,"AM":1024,"x":22.234,"y":35.273,"w":57.028,"h":0.833,"TU":"Line 5. List name of payer."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVS","EN":0},"TI":8000,"AM":1024,"x":84.253,"y":35.288,"w":12.189,"h":0.833,"TU":"Line 5. Amount."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHB3"}},"id":{"Id":"Add_FSCHB3","EN":0},"TI":8001,"AM":1024,"x":44.092,"y":36.026,"w":5.701,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":8002,"AM":1024,"x":84.481,"y":37.351,"w":12.024,"h":0.833,"TU":"Amount_6"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A223_L7B_1_","EN":0},"TI":8007,"AM":0,"x":43.561,"y":45.813,"w":47.128,"h":0.833,"TU":"Line 7b. If you are required to file FinCEN Form 114, enter the name of the foreign country where the financial account is located."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7AY","EN":0},"TI":8003,"AM":0,"x":91.883,"y":41.953,"w":3.701,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7AN","EN":0},"TI":8004,"AM":0,"x":95.577,"y":41.943,"w":3.701,"h":0.833,"checked":false}],"id":{"Id":"L7ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TDFY","EN":0},"TI":8005,"AM":0,"x":91.795,"y":44.186,"w":3.701,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TDFN","EN":0},"TI":8006,"AM":0,"x":95.608,"y":44.164,"w":3.701,"h":0.833,"checked":false}],"id":{"Id":"L7APLRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8Y","EN":0},"TI":8008,"AM":0,"x":91.903,"y":47.153,"w":3.701,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8N","EN":0},"TI":8009,"AM":0,"x":95.716,"y":47.158,"w":3.701,"h":0.833,"checked":false}],"id":{"Id":"L8RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Interest and Ordinary Dividends","Creator":"Adobe LiveCycle Designer ES 9.0","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131127085633-08'00'","ModDate":"D:20140123141809-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":4.547,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":7.634,"y":4.547,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.569,"y":2.31,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.569,"y":4.547,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.234,"y":6.047,"w":1.125,"l":27.031,"oc":"#221f1f"},{"x":29.234,"y":6.047,"w":1.125,"l":6.781,"oc":"#221f1f"},{"x":2.234,"y":24,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":29.234,"y":18.797,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":6.797,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":8.084,"y":9.047,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":9.047,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":9.047,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":9.797,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":9.797,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":9.797,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":10.547,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":10.547,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":10.547,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":11.297,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":11.297,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":11.297,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":12.047,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":12.047,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":12.047,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":12.797,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":12.797,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":12.797,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":13.547,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":13.547,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":13.547,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":14.297,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":14.297,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":14.297,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":15.047,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":15.047,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":15.047,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":15.797,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":15.797,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":15.797,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":16.547,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":16.547,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":16.547,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":17.297,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":17.297,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":17.297,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":18.047,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":18.047,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":18.047,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":18.797,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":18.797,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":18.797,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":29.25,"y":20.25,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":29.25,"y":19.5,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":30.584,"y":18.797,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":30.584,"y":20.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":18.797,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":35.084,"y":20.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":29.234,"y":21.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":21.75,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":21.75,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":29.234,"y":23.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":23.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":23.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":6.284,"y":23.25,"w":0.75,"l":22.981,"oc":"#221f1f"},{"x":6.284,"y":24,"w":1.125,"l":22.981,"oc":"#221f1f"},{"x":30.584,"y":24,"w":1.125,"l":5.431,"oc":"#221f1f"},{"x":2.328,"y":39,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":13.484,"y":24.75,"w":0.75,"l":15.331,"oc":"#221f1f","dsh":1},{"x":29.234,"y":24,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":24.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":24.75,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":25.5,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":25.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":25.5,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":25.5,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":8.084,"y":26.25,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":26.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":26.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":27,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":27,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":27,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":27.75,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":27.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":27.75,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":28.5,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":28.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":28.5,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":29.25,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":29.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":29.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":30,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":30,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":30,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":30.75,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":30.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":30.75,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":31.5,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":31.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":31.5,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":32.25,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":32.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":32.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":33,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":33,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":33,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":33.75,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":33.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":33.75,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":34.5,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":34.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":34.5,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":35.25,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":35.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":35.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":8.084,"y":36,"w":0.75,"l":20.731,"oc":"#221f1f","dsh":1},{"x":30.584,"y":36,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.084,"y":36,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":29.234,"y":36,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":6.378,"y":38.25,"w":0.75,"l":29.731,"oc":"#221f1f"},{"x":6.378,"y":39,"w":1.125,"l":29.731,"oc":"#221f1f"},{"x":6.378,"y":40.5,"w":0.75,"l":26.581,"oc":"#221f1f"},{"x":33.378,"y":40.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.728,"y":40.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":33.378,"y":42.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.728,"y":42.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":15.828,"y":46.5,"w":0.75,"l":17.131,"oc":"#221f1f","dsh":1},{"x":33.378,"y":45,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.728,"y":45,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.328,"y":48,"w":1.5,"l":18.031,"oc":"#221f1f"},{"x":20.328,"y":48,"w":1.5,"l":7.231,"oc":"#221f1f"},{"x":27.528,"y":48,"w":1.5,"l":8.581,"oc":"#221f1f"}],"VLines":[{"x":7.65,"y":1.531,"w":1.5,"l":3.047,"oc":"#221f1f"},{"x":7.65,"y":3.031,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":30.6,"y":1.544,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":2.281,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":29.25,"y":4.531,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":30.609,"y":6.01,"w":0.75,"l":13.668,"oc":"#221f1f"},{"x":29.25,"y":6.009,"w":0.75,"l":13.481,"oc":"#221f1f"},{"x":30.6,"y":6.031,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":6.781,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.1,"y":8.281,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":9.031,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":9.781,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":10.531,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":11.281,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":12.031,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":12.781,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":13.531,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":14.281,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":15.031,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":15.781,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":16.531,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":17.281,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.109,"y":18.048,"w":0.75,"l":1.779,"oc":"#221f1f"},{"x":30.6,"y":19.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":29.25,"y":19.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":35.1,"y":19.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.6,"y":20.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.25,"y":20.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.1,"y":20.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":20.984,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.6,"y":21.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.25,"y":21.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.1,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":22.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.25,"y":23.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.6,"y":23.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.6,"y":23.977,"w":0.75,"l":12.047,"oc":"#221f1f"},{"x":29.25,"y":23.977,"w":0.75,"l":12.047,"oc":"#221f1f"},{"x":35.1,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":26.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":27.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":29.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":29.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":31.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":33.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":34.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.1,"y":35.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.609,"y":35.997,"w":0.75,"l":2.162,"oc":"#221f1f"},{"x":29.25,"y":35.997,"w":0.75,"l":2.162,"oc":"#221f1f"},{"x":35.109,"y":36.037,"w":0.75,"l":2.083,"oc":"#221f1f"},{"x":33.394,"y":38.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.744,"y":38.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.744,"y":40.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":33.394,"y":40.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.744,"y":40.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":33.394,"y":41.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.744,"y":41.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.744,"y":42.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":33.394,"y":42.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.744,"y":42.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":33.394,"y":44.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.744,"y":44.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.744,"y":44.984,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":33.394,"y":44.984,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.744,"y":44.984,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":33.394,"y":47.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.744,"y":47.234,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":33.394,"y":45,"w":1.35,"h":2.25,"oc":"#bebfc1"},{"x":34.744,"y":45,"w":1.35,"h":2.25,"oc":"#bebfc1"}],"Texts":[{"x":28.344,"y":47.027,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":1.306,"w":6.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"SCHEDULE B ","S":10,"TS":[0,14,1,0]}]},{"x":2,"y":1.991,"w":10.448,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(Form 1040A or 1040) ","S":-1,"TS":[0,11,1,0]}]},{"x":2,"y":3.072,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":2,"y":3.572,"w":13.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99) ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":12.724,"y":1.766,"w":15.171,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Interest and Ordinary Dividends","S":11,"TS":[0,18,1,0]}]},{"x":15.046,"y":2.819,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":15.421,"y":3.615,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":1,"TS":[0,8,0,0]}]},{"x":15.508,"y":2.912,"w":14.393,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach to Form 1040A or 1040.","S":-1,"TS":[0,11,1,0]}]},{"x":22.704,"y":3.5220000000000002,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,9,0,0]}]},{"x":7.552,"y":4.178,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":7.657,"y":3.3810000000000002,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":8.031,"y":4.178,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":1,"TS":[0,8,0,0]}]},{"x":8.118,"y":3.4749999999999996,"w":44.463,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Information about Schedule B (Form 1040A or 1040) and its instructions is at www.irs.gov/scheduleb","S":-1,"TS":[0,10.36,0,0]}]},{"x":30.07,"y":3.4749999999999996,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.36,0,0]}]},{"x":30.198,"y":4.178,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,10.5,0,0]}]},{"x":31.019,"y":1.282,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.425,"y":2.689,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.505,"y":2.689,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":31.1,"y":3.203,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.1,"y":3.649,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":34.001,"y":3.649,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"08","S":10,"TS":[0,14,1,0]}]},{"x":34.696,"y":4.352,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":4.278,"w":11.205,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name(s) shown on return","S":2,"TS":[0,10,0,0]}]},{"x":29.25,"y":4.278,"w":13.449,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Your social security number","S":8,"TS":[0,10,1,0]}]},{"x":2,"y":6.02,"w":3.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Part I ","S":-1,"TS":[0,16,1,0]}]},{"x":2,"y":7.295,"w":3.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Interest","S":-1,"TS":[0,16,1,0]}]},{"x":4.749,"y":7.997999999999999,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":9.458,"w":7.723,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(See instructions ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":10.058,"w":7.8,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on back and the ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":10.658,"w":7.223,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions for ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":11.258,"w":7.225,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040A, or ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":11.858,"w":5.67,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040, ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":12.458,"w":3.723,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 8a.) ","S":-1,"TS":[0,11,0,0]}]},{"x":3.862,"y":13.161,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":4.001,"y":13.161,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":13.058,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":13.658,"w":3.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Note. ","S":-1,"TS":[0,11,1,0]}]},{"x":3.556,"y":13.658,"w":2.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you ","S":-1,"TS":[0,11,0,0]}]},{"x":4.927,"y":14.361,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":14.258,"w":7.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"received a Form ","S":-1,"TS":[0,11,0,0]}]},{"x":5.751,"y":14.961,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":14.858,"w":7.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1099-INT, Form ","S":-1,"TS":[0,11,0,0]}]},{"x":5.668,"y":15.561,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":15.457999999999998,"w":6.077,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1099-OID, or ","S":-1,"TS":[0,11,0,0]}]},{"x":5.039,"y":16.161,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":16.058,"w":4.965,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"substitute ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":16.658,"w":7.077,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"statement from ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":17.258,"w":8.168,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a brokerage firm, ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":17.858,"w":6.261,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"list the firm’s ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":18.411,"w":5.762,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"name as the ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":19.011,"w":7.576,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"payer and enter ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":19.611,"w":7.798,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the total interest ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":20.211,"w":6.909,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"shown on that ","S":-1,"TS":[0,11,0,0]}]},{"x":1.9529999999999998,"y":20.811,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"form. ","S":-1,"TS":[0,11,0,0]}]},{"x":6.637,"y":6.011,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1 ","S":9,"TS":[0,12,1,0]}]},{"x":6.95,"y":7.401999999999999,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":6.95,"y":8.089,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":7.85,"y":6.011,"w":34.359,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"List name of payer. If any interest is from a seller-financed mortgage and the ","S":3,"TS":[0,12,0,0]}]},{"x":7.849,"y":6.698,"w":36.86,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"buyer used the property as a personal residence, see instructions on back and list ","S":3,"TS":[0,12,0,0]}]},{"x":7.851000000000001,"y":7.396000000000001,"w":34.895,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"this interest first. Also, show that buyer’s social security number and address ","S":3,"TS":[0,12,0,0]}]},{"x":27.478,"y":7.303000000000001,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.519,"y":11.792,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1 ","S":9,"TS":[0,12,1,0]}]},{"x":31.997999999999998,"y":5.855,"w":3.777,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Amount","S":9,"TS":[0,12,1,0]}]},{"x":6.637,"y":19.339,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":7.85,"y":19.339,"w":11.746,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add the amounts on line 1","S":3,"TS":[0,12,0,0]}]},{"x":14.75,"y":19.339,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................. ","S":3,"TS":[0,12,0,0]}]},{"x":29.519,"y":19.339,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":6.637,"y":20.152,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":9,"TS":[0,12,1,0]}]},{"x":6.95,"y":20.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":7.85,"y":20.152,"w":34.34,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Excludable interest on series EE and I U.S. savings bonds issued after 1989. ","S":3,"TS":[0,12,0,0]}]},{"x":7.849,"y":20.839,"w":8.022,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attach Form 8815","S":3,"TS":[0,12,0,0]}]},{"x":12.499,"y":20.839,"w":29.326,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................... ","S":3,"TS":[0,12,0,0]}]},{"x":29.519,"y":20.839,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":9,"TS":[0,12,1,0]}]},{"x":6.637,"y":21.652,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":9,"TS":[0,12,1,0]}]},{"x":6.95,"y":22.339,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":7.85,"y":21.652,"w":34.529,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 3 from line 2. Enter the result here and on Form 1040A, or Form ","S":3,"TS":[0,12,0,0]}]},{"x":7.851000000000001,"y":22.35,"w":5.688,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1040, line 8a","S":3,"TS":[0,12,0,0]}]},{"x":11.75,"y":22.35,"w":29.326,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"x":28.1,"y":22.256,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.519,"y":22.339,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":9,"TS":[0,12,1,0]}]},{"x":6.05,"y":23.089,"w":2.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Note. ","S":9,"TS":[0,12,1,0]}]},{"x":7.644,"y":23.089,"w":22.618,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If line 4 is over $1,500, you must complete Part III. ","S":3,"TS":[0,12,0,0]}]},{"x":31.997999999999998,"y":23.058,"w":4.055,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Amount ","S":9,"TS":[0,12,1,0]}]},{"x":2,"y":23.973,"w":3.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Part II ","S":-1,"TS":[0,16,1,0]}]},{"x":2,"y":25.298,"w":4.667,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Ordinary ","S":-1,"TS":[0,15,0,0]}]},{"x":2,"y":26.198,"w":5.335,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Dividends ","S":-1,"TS":[0,16,1,0]}]},{"x":2,"y":27.107,"w":7.723,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(See instructions ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":27.638,"w":7.522,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on back and the ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":28.169,"w":6.945,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions for ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":28.7,"w":7.225,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040A, or ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":29.231,"w":5.67,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040, ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":29.762,"w":3.723,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 9a.) ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":30.876,"w":2.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Note. ","S":-1,"TS":[0,11,1,0]}]},{"x":3.417,"y":30.876,"w":2.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":31.406999999999996,"w":7.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"received a Form ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":31.938000000000002,"w":5.65,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1099-DIV or ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":32.469,"w":4.687,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"substitute ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":33,"w":7.077,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"statement from ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":33.531,"w":7.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a brokerage firm, ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":34.062,"w":5.983,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"list the firm’s ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":34.593,"w":5.762,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"name as the ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":35.124,"w":7.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"payer and enter ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":35.655,"w":5.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the ordinary ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":36.186,"w":7.816,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"dividends shown ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":36.717,"w":6.021,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on that form. ","S":-1,"TS":[0,11,0,0]}]},{"x":6.637,"y":23.839,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":7.85,"y":23.795,"w":8.28,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"List name of payer","S":-1,"TS":[0,11,0,0]}]},{"x":11.99,"y":23.795,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":12.198,"y":23.701,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":29.519,"y":29.308,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":6.731,"y":36.652,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":6.95,"y":36.589,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":7.944000000000001,"y":36.652,"w":34.309,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add the amounts on line 5. Enter the total here and on Form 1040A, or Form ","S":3,"TS":[0,12,0,0]}]},{"x":7.946999999999999,"y":37.35,"w":5.966,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1040, line 9a ","S":3,"TS":[0,12,0,0]}]},{"x":11.847,"y":37.35,"w":29.326,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"x":28.194,"y":37.256,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.612,"y":37.339,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":6.144,"y":38.089,"w":3.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Note. ","S":9,"TS":[0,12,1,0]}]},{"x":7.894,"y":38.089,"w":22.618,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If line 6 is over $1,500, you must complete Part III. ","S":3,"TS":[0,12,0,0]}]},{"x":2.094,"y":40.636,"w":3.613,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Part III ","S":-1,"TS":[0,16,1,0]}]},{"x":2.094,"y":41.536,"w":4.223,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Foreign ","S":-1,"TS":[0,16,1,0]}]},{"x":2.094,"y":42.436,"w":5.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Accounts ","S":-1,"TS":[0,16,1,0]}]},{"x":2.094,"y":43.336,"w":5.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"and Trusts ","S":-1,"TS":[0,16,1,0]}]},{"x":2.094,"y":44.057,"w":2.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(See ","S":-1,"TS":[0,11,0,0]}]},{"x":2.094,"y":44.657,"w":6.872,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions on ","S":-1,"TS":[0,11,0,0]}]},{"x":2.094,"y":45.257,"w":3.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"back.) ","S":-1,"TS":[0,11,0,0]}]},{"x":33.319,"y":39.308,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes ","S":9,"TS":[0,12,1,0]}]},{"x":34.789,"y":39.308,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":6.731,"y":40.402,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7a ","S":9,"TS":[0,12,1,0]}]},{"x":7.944000000000001,"y":40.402,"w":43.417,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"At any time during 2013, did you have a financial interest in or signature authority over a financial ","S":3,"TS":[0,12,0,0]}]},{"x":7.944000000000001,"y":41.058,"w":43.045,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"account (such as a bank account, securities account, or brokerage account) located in a foreign ","S":3,"TS":[0,12,0,0]}]},{"x":7.944000000000001,"y":41.715,"w":11.669,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"country? See instructions ","S":3,"TS":[0,12,0,0]}]},{"x":14.844,"y":41.715,"w":31.992,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"x":7.944000000000001,"y":42.402,"w":40.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If “Yes,” are you required to file FinCEN Form 114, Report of Foreign Bank and Financial ","S":3,"TS":[0,12,0,0]}]},{"x":7.944000000000001,"y":43.027,"w":42.722,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Accounts (FBAR), formerly TD F 90-22.1, to report that financial interest or signature authority? ","S":3,"TS":[0,12,0,0]}]},{"x":7.945,"y":44.277,"w":6.136,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"requirements ","S":3,"TS":[0,12,0,0]}]},{"x":11.845,"y":44.277,"w":37.324,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"x":7.945,"y":43.652,"w":40.223,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"See FinCEN Form 114 and its instructions for filing requirements and exceptions to those ","S":3,"TS":[0,12,0,0]}]},{"x":7.044,"y":44.839,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":7.944000000000001,"y":44.902,"w":41.192,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you are required to file FinCEN Form 114, enter the name of the foreign country where the ","S":3,"TS":[0,12,0,0]}]},{"x":7.944000000000001,"y":45.6,"w":12.724,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"financial account is located ","S":3,"TS":[0,12,0,0]}]},{"x":15.101,"y":45.506,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":6.731,"y":46.339,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":9,"TS":[0,12,1,0]}]},{"x":7.944000000000001,"y":46.339,"w":41.969,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"During 2013, did you receive a distribution from, or were you the grantor of, or transferor to, a ","S":3,"TS":[0,12,0,0]}]},{"x":7.944000000000001,"y":47.027,"w":36.083,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"foreign trust? If “Yes,” you may have to file Form 3520. See instructions on back ","S":3,"TS":[0,12,0,0]}]},{"x":2.094,"y":47.857,"w":33.508,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see your tax return instructions. ","S":-1,"TS":[0,11,1,0]}]},{"x":22.057,"y":47.75,"w":7.762,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 17146N ","S":2,"TS":[0,10,0,0]}]},{"x":27.861,"y":47.75,"w":18.674,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule B (Form 1040A or 1040) 2013 ","S":8,"TS":[0,10,1,0]}]},{"x":7.719,"y":18.625,"w":117.82,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Enter more interest payers","S":-1,"TS":[0,13,0,0]}]},{"x":7.856999999999999,"y":35.838,"w":122.27,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Enter more dividend payers","S":-1,"TS":[0,13,0,0]}]},{"x":6.144,"y":39.514,"w":46.464,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"foreign account; or (c) received a distribution from, or were a grantor of, or a transferor to, a foreign trust. ","S":-1,"TS":[0,11.46,0,0]}]},{"x":6.144,"y":38.889,"w":46.919,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You must complete this part if you (a) had over $1,500 of taxable interest or ordinary dividends; (b) had a ","S":-1,"TS":[0,11.46,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":495,"AM":1024,"TU":"Name(s) shown on return","x":2.265,"y":5.13,"w":26.94,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":496,"AM":1024,"TU":"Your social security number","x":29.302,"y":5.103,"w":6.69,"h":0.834},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_1_","EN":0},"TI":497,"AM":0,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address.","x":8.091,"y":9.039,"w":20.739,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_1_","EN":0},"TI":498,"AM":0,"TU":"Line 1. Amount.","x":30.637,"y":8.997,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_2_","EN":0},"TI":499,"AM":0,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address.","x":8.085,"y":9.732,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_2_","EN":0},"TI":500,"AM":0,"TU":"Line 1. Amount.","x":30.637,"y":9.747,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_3_","EN":0},"TI":501,"AM":0,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address.","x":8.085,"y":10.482,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_3_","EN":0},"TI":502,"AM":0,"TU":"Line 1. Amount.","x":30.665,"y":10.47,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_4_","EN":0},"TI":503,"AM":0,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address.","x":8.085,"y":11.232,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_4_","EN":0},"TI":504,"AM":0,"TU":"Line 1. Amount.","x":30.637,"y":11.247,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_5_","EN":0},"TI":505,"AM":0,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address.","x":8.085,"y":11.982,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_5_","EN":0},"TI":506,"AM":0,"TU":"Line 1. Amount.","x":30.637,"y":11.997,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_6_","EN":0},"TI":507,"AM":0,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address.","x":8.085,"y":12.732,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_6_","EN":0},"TI":508,"AM":0,"TU":"Line 1. Amount.","x":30.665,"y":12.774,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_7_","EN":0},"TI":509,"AM":0,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address.","x":8.108,"y":13.459,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_7_","EN":0},"TI":510,"AM":0,"TU":"Line 1. Amount.","x":30.637,"y":13.497,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_8_","EN":0},"TI":511,"AM":0,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address.","x":8.085,"y":14.232,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_8_","EN":0},"TI":512,"AM":0,"TU":"Line 1. Amount.","x":30.637,"y":14.247,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_9_","EN":0},"TI":513,"AM":0,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address.","x":8.085,"y":14.982,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_9_","EN":0},"TI":514,"AM":0,"TU":"Line 1. Amount.","x":30.637,"y":14.997,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_10_","EN":0},"TI":515,"AM":0,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address.","x":8.085,"y":15.732,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_10_","EN":0},"TI":516,"AM":0,"TU":"Line 1. Amount.","x":30.637,"y":15.747,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_11_","EN":0},"TI":517,"AM":0,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address.","x":8.085,"y":16.482,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_11_","EN":0},"TI":518,"AM":0,"TU":"Line 1. Amount.","x":30.637,"y":16.497,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_12_","EN":0},"TI":519,"AM":0,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address.","x":8.085,"y":17.232,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_12_","EN":0},"TI":520,"AM":0,"TU":"Line 1. Amount.","x":30.665,"y":17.247,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDLINT","EN":0},"TI":521,"AM":1024,"TU":"Line 1. List name of payer. If any interest is from a seller-financed mortgage and the buyer used the property as a personal residence, see instructions and list this interest first. Also, show the buyer's social security number and address.","x":8.085,"y":17.982,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INTEREST","EN":0},"TI":522,"AM":1024,"TU":"Line 1. Amount.","x":30.637,"y":18.02,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHB2"}},"id":{"Id":"A221","EN":0},"TI":523,"AM":1024,"x":15.454,"y":18.745,"w":2.073,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":524,"AM":1024,"TU":"Amount_2","x":30.637,"y":19.545,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8815"}},"id":{"Id":"A220","EN":0},"TI":525,"AM":1024,"x":12.962,"y":20.834,"w":2.073,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":526,"AM":1024,"TU":"Amount_3","x":30.695,"y":20.971,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":527,"AM":1024,"TU":"Amount_4","x":30.668,"y":22.424,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_1_","EN":0},"TI":528,"AM":0,"TU":"Line 5. List name of payer.","x":8.108,"y":24.772,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_1_","EN":0},"TI":529,"AM":0,"TU":"Line 5. Amount.","x":30.637,"y":24.788,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_2_","EN":0},"TI":530,"AM":0,"TU":"Line 5. List name of payer.","x":8.107,"y":25.482,"w":20.676,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_2_","EN":0},"TI":531,"AM":0,"TU":"Line 5. Amount.","x":30.667,"y":25.495,"w":4.412,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_3_","EN":0},"TI":532,"AM":0,"TU":"Line 5. List name of payer.","x":8.085,"y":26.272,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_3_","EN":0},"TI":533,"AM":0,"TU":"Line 5. Amount.","x":30.637,"y":26.288,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_4_","EN":0},"TI":534,"AM":0,"TU":"Line 5. List name of payer.","x":8.085,"y":27.022,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_4_","EN":0},"TI":535,"AM":0,"TU":"Line 5. Amount.","x":30.637,"y":27.038,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_5_","EN":0},"TI":536,"AM":0,"TU":"Line 5. List name of payer.","x":8.085,"y":27.772,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_5_","EN":0},"TI":537,"AM":0,"TU":"Line 5. Amount.","x":30.637,"y":27.788,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_6_","EN":0},"TI":538,"AM":0,"TU":"Line 5. List name of payer.","x":8.085,"y":28.522,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_6_","EN":0},"TI":539,"AM":0,"TU":"Line 5. Amount.","x":30.637,"y":28.538,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_7_","EN":0},"TI":540,"AM":0,"TU":"Line 5. List name of payer.","x":8.085,"y":29.272,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_7_","EN":0},"TI":541,"AM":0,"TU":"Line 5. Amount.","x":30.637,"y":29.288,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_8_","EN":0},"TI":542,"AM":0,"TU":"Line 5. List name of payer.","x":8.085,"y":30.022,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_8_","EN":0},"TI":543,"AM":0,"TU":"Line 5. Amount.","x":30.637,"y":30.038,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_9_","EN":0},"TI":544,"AM":0,"TU":"Line 5. List name of payer.","x":8.085,"y":30.772,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_9_","EN":0},"TI":545,"AM":0,"TU":"Line 5. Amount.","x":30.637,"y":30.788,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_10_","EN":0},"TI":546,"AM":0,"TU":"Line 5. List name of payer.","x":8.085,"y":31.522,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_10_","EN":0},"TI":547,"AM":0,"TU":"Line 5. Amount.","x":30.614,"y":31.538,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_11_","EN":0},"TI":548,"AM":0,"TU":"Line 5. List name of payer.","x":8.085,"y":32.273,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_11_","EN":0},"TI":549,"AM":0,"TU":"Line 5. Amount.","x":30.637,"y":32.288,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_12_","EN":0},"TI":550,"AM":0,"TU":"Line 5. List name of payer.","x":8.085,"y":33.023,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_12_","EN":0},"TI":551,"AM":0,"TU":"Line 5. Amount.","x":30.637,"y":33.038,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_13_","EN":0},"TI":552,"AM":0,"TU":"Line 5. List name of payer.","x":8.085,"y":33.773,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_13_","EN":0},"TI":553,"AM":0,"TU":"Line 5. Amount.","x":30.637,"y":33.788,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_14_","EN":0},"TI":554,"AM":0,"TU":"Line 5. List name of payer.","x":8.085,"y":34.523,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_14_","EN":0},"TI":555,"AM":0,"TU":"Line 5. Amount.","x":30.637,"y":34.538,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDLDIV","EN":0},"TI":556,"AM":1024,"TU":"Line 5. List name of payer.","x":8.085,"y":35.273,"w":20.738,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIVS","EN":0},"TI":557,"AM":1024,"TU":"Line 5. Amount.","x":30.637,"y":35.288,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHB3"}},"id":{"Id":"A222","EN":0},"TI":558,"AM":1024,"x":16.034,"y":36.026,"w":2.073,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":559,"AM":1024,"TU":"Amount_6","x":30.72,"y":37.351,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A223_L7B_1_","EN":0},"TI":564,"AM":0,"TU":"Line 7b. If you are required to file FinCEN Form 114, enter the name of the foreign country where the financial account is located.","x":15.84,"y":45.813,"w":17.137,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7AY","EN":0},"TI":560,"AM":0,"TU":"Line 7a. Checkboxes.","x":33.412,"y":41.953,"w":1.346,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7AN","EN":0},"TI":561,"AM":0,"TU":"Line 7a. Checkboxes.","x":34.755,"y":41.943,"w":1.346,"h":0.833,"checked":false}],"id":{"Id":"L7ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TDFY","EN":0},"TI":562,"AM":0,"TU":"Line 7a. Additional checkboxes.","x":33.38,"y":44.186,"w":1.346,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TDFN","EN":0},"TI":563,"AM":0,"TU":"Line 7a. Additional checkboxes.","x":34.767,"y":44.164,"w":1.346,"h":0.833,"checked":false}],"id":{"Id":"L7APLRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8Y","EN":0},"TI":565,"AM":0,"TU":"Line 8. Checkboxes.","x":33.419,"y":47.153,"w":1.346,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8N","EN":0},"TI":566,"AM":0,"TU":"Line 8. Checkboxes.","x":34.806,"y":47.158,"w":1.346,"h":0.833,"checked":false}],"id":{"Id":"L8RB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHB2.json b/test/data/fd/form/FSCHB2.json index fc2f052c..afee31bb 100755 --- a/test/data/fd/form/FSCHB2.json +++ b/test/data/fd/form/FSCHB2.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"fdibint.pfm : default","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"x":100.052,"y":0,"w":1,"l":1.011},{"x":100.052,"y":0.746,"w":1,"l":1.011},{"x":100.052,"y":0.75,"w":1,"l":1.011},{"x":100.052,"y":1.496,"w":1,"l":1.011},{"x":100.052,"y":1.5,"w":1,"l":1.011},{"x":100.052,"y":2.246,"w":1,"l":1.011},{"x":100.052,"y":2.25,"w":1,"l":1.011},{"x":100.052,"y":2.996,"w":1,"l":1.011},{"x":100.052,"y":3,"w":1,"l":1.011},{"x":100.052,"y":3.746,"w":1,"l":1.011},{"x":100.052,"y":3.75,"w":1,"l":1.011},{"x":100.052,"y":4.496,"w":1,"l":1.011},{"x":100.052,"y":4.5,"w":1,"l":1.011},{"x":100.052,"y":5.246,"w":1,"l":1.011},{"x":100.052,"y":5.25,"w":1,"l":1.011},{"x":100.052,"y":5.996,"w":1,"l":1.011},{"x":100.052,"y":6,"w":1,"l":1.011},{"x":100.052,"y":6.746,"w":1,"l":1.011},{"x":100.052,"y":6.75,"w":1,"l":1.011},{"x":100.052,"y":7.496,"w":1,"l":1.011},{"x":100.052,"y":7.5,"w":1,"l":1.011},{"x":100.052,"y":8.246,"w":1,"l":1.011},{"x":100.052,"y":8.25,"w":1,"l":1.011},{"x":100.052,"y":8.996,"w":1,"l":1.011},{"x":100.052,"y":9,"w":1,"l":1.011},{"x":100.052,"y":9.746,"w":1,"l":1.011},{"x":100.052,"y":9.75,"w":1,"l":1.011},{"x":100.052,"y":10.496,"w":1,"l":1.011},{"x":100.052,"y":10.5,"w":1,"l":1.011},{"x":100.052,"y":11.246,"w":1,"l":1.011},{"x":100.052,"y":11.25,"w":1,"l":1.011},{"x":100.052,"y":11.996,"w":1,"l":1.011},{"x":100.052,"y":12,"w":1,"l":1.011},{"x":100.052,"y":12.746,"w":1,"l":1.011},{"x":100.052,"y":12.75,"w":1,"l":1.011},{"x":100.052,"y":13.496,"w":1,"l":1.011},{"x":100.052,"y":13.5,"w":1,"l":1.011},{"x":100.052,"y":14.246,"w":1,"l":1.011},{"x":100.052,"y":14.25,"w":1,"l":1.011},{"x":100.052,"y":14.996,"w":1,"l":1.011},{"x":100.052,"y":15,"w":1,"l":1.011},{"x":100.052,"y":15.746,"w":1,"l":1.011},{"x":100.052,"y":15.75,"w":1,"l":1.011},{"x":100.052,"y":16.496,"w":1,"l":1.011},{"x":100.052,"y":16.5,"w":1,"l":1.011},{"x":100.052,"y":17.246,"w":1,"l":1.011},{"x":100.052,"y":17.25,"w":1,"l":1.011},{"x":100.052,"y":17.996,"w":1,"l":1.011},{"x":100.052,"y":18,"w":1,"l":1.011},{"x":100.052,"y":18.746,"w":1,"l":1.011},{"x":100.052,"y":18.75,"w":1,"l":1.011},{"x":100.052,"y":19.496,"w":1,"l":1.011},{"x":100.052,"y":19.5,"w":1,"l":1.011},{"x":100.052,"y":20.246,"w":1,"l":1.011},{"x":100.052,"y":20.25,"w":1,"l":1.011},{"x":100.052,"y":20.996,"w":1,"l":1.011},{"x":100.052,"y":21,"w":1,"l":1.011},{"x":100.052,"y":21.746,"w":1,"l":1.011},{"x":100.052,"y":21.75,"w":1,"l":1.011},{"x":100.052,"y":22.496,"w":1,"l":1.011},{"x":100.052,"y":22.5,"w":1,"l":1.011},{"x":100.052,"y":23.246,"w":1,"l":1.011},{"x":100.052,"y":23.25,"w":1,"l":1.011},{"x":100.052,"y":23.996,"w":1,"l":1.011},{"x":100.052,"y":24,"w":1,"l":1.011},{"x":100.052,"y":24.746,"w":1,"l":1.011},{"x":100.052,"y":24.75,"w":1,"l":1.011},{"x":100.052,"y":25.496,"w":1,"l":1.011},{"x":100.052,"y":25.5,"w":1,"l":1.011},{"x":100.052,"y":26.246,"w":1,"l":1.011},{"x":100.052,"y":26.25,"w":1,"l":1.011},{"x":100.052,"y":26.996,"w":1,"l":1.011},{"x":100.052,"y":27,"w":1,"l":1.011},{"x":100.052,"y":27.746,"w":1,"l":1.011},{"x":100.052,"y":27.75,"w":1,"l":1.011},{"x":100.052,"y":28.496,"w":1,"l":1.011},{"x":100.052,"y":28.5,"w":1,"l":1.011},{"x":100.052,"y":29.246,"w":1,"l":1.011},{"x":100.052,"y":29.25,"w":1,"l":1.011},{"x":100.052,"y":29.996,"w":1,"l":1.011},{"x":100.052,"y":30,"w":1,"l":1.011},{"x":100.052,"y":30.746,"w":1,"l":1.011},{"x":100.052,"y":30.75,"w":1,"l":1.011},{"x":100.052,"y":31.496,"w":1,"l":1.011},{"x":100.052,"y":31.5,"w":1,"l":1.011},{"x":100.052,"y":32.246,"w":1,"l":1.011},{"x":100.052,"y":32.25,"w":1,"l":1.011},{"x":100.052,"y":32.996,"w":1,"l":1.011},{"x":100.052,"y":33,"w":1,"l":1.011},{"x":100.052,"y":33.746,"w":1,"l":1.011},{"x":100.052,"y":33.75,"w":1,"l":1.011},{"x":100.052,"y":34.496,"w":1,"l":1.011},{"x":100.052,"y":34.5,"w":1,"l":1.011},{"x":100.052,"y":35.246,"w":1,"l":1.011},{"x":100.052,"y":35.25,"w":1,"l":1.011},{"x":100.052,"y":35.996,"w":1,"l":1.011},{"x":100.052,"y":36,"w":1,"l":1.011},{"x":100.052,"y":36.746,"w":1,"l":1.011},{"x":100.052,"y":36.75,"w":1,"l":1.011},{"x":100.052,"y":37.496,"w":1,"l":1.011},{"x":100.052,"y":37.5,"w":1,"l":1.011},{"x":100.052,"y":38.246,"w":1,"l":1.011},{"x":100.052,"y":38.25,"w":1,"l":1.011},{"x":100.052,"y":38.996,"w":1,"l":1.011},{"x":100.052,"y":39,"w":1,"l":1.011},{"x":100.052,"y":39.746,"w":1,"l":1.011},{"x":100.052,"y":39.75,"w":1,"l":1.011},{"x":100.052,"y":40.496,"w":1,"l":1.011},{"x":100.052,"y":40.5,"w":1,"l":1.011},{"x":100.052,"y":41.246,"w":1,"l":1.011},{"x":100.052,"y":41.25,"w":1,"l":1.011},{"x":100.052,"y":41.996,"w":1,"l":1.011},{"x":100.052,"y":42,"w":1,"l":1.011},{"x":100.052,"y":42.746,"w":1,"l":1.011},{"x":100.052,"y":42.75,"w":1,"l":1.011},{"x":100.052,"y":43.496,"w":1,"l":1.011},{"x":100.052,"y":43.5,"w":1,"l":1.011},{"x":100.052,"y":44.246,"w":1,"l":1.011},{"x":100.052,"y":44.25,"w":1,"l":1.011},{"x":100.052,"y":44.996,"w":1,"l":1.011},{"x":100.052,"y":45,"w":1,"l":1.011},{"x":100.052,"y":45.746,"w":1,"l":1.011}],"VLines":[{"x":100.052,"y":0,"w":1,"l":0.746},{"x":101.063,"y":0,"w":1,"l":0.746},{"x":100.052,"y":0.75,"w":1,"l":0.746},{"x":101.063,"y":0.75,"w":1,"l":0.746},{"x":100.052,"y":1.5,"w":1,"l":0.746},{"x":101.063,"y":1.5,"w":1,"l":0.746},{"x":100.052,"y":2.25,"w":1,"l":0.746},{"x":101.063,"y":2.25,"w":1,"l":0.746},{"x":100.052,"y":3,"w":1,"l":0.746},{"x":101.063,"y":3,"w":1,"l":0.746},{"x":100.052,"y":3.75,"w":1,"l":0.746},{"x":101.063,"y":3.75,"w":1,"l":0.746},{"x":100.052,"y":4.5,"w":1,"l":0.746},{"x":101.063,"y":4.5,"w":1,"l":0.746},{"x":100.052,"y":5.25,"w":1,"l":0.746},{"x":101.063,"y":5.25,"w":1,"l":0.746},{"x":100.052,"y":6,"w":1,"l":0.746},{"x":101.063,"y":6,"w":1,"l":0.746},{"x":100.052,"y":6.75,"w":1,"l":0.746},{"x":101.063,"y":6.75,"w":1,"l":0.746},{"x":100.052,"y":7.5,"w":1,"l":0.746},{"x":101.063,"y":7.5,"w":1,"l":0.746},{"x":100.052,"y":8.25,"w":1,"l":0.746},{"x":101.063,"y":8.25,"w":1,"l":0.746},{"x":100.052,"y":9,"w":1,"l":0.746},{"x":101.063,"y":9,"w":1,"l":0.746},{"x":100.052,"y":9.75,"w":1,"l":0.746},{"x":101.063,"y":9.75,"w":1,"l":0.746},{"x":100.052,"y":10.5,"w":1,"l":0.746},{"x":101.063,"y":10.5,"w":1,"l":0.746},{"x":100.052,"y":11.25,"w":1,"l":0.746},{"x":101.063,"y":11.25,"w":1,"l":0.746},{"x":100.052,"y":12,"w":1,"l":0.746},{"x":101.063,"y":12,"w":1,"l":0.746},{"x":100.052,"y":12.75,"w":1,"l":0.746},{"x":101.063,"y":12.75,"w":1,"l":0.746},{"x":100.052,"y":13.5,"w":1,"l":0.746},{"x":101.063,"y":13.5,"w":1,"l":0.746},{"x":100.052,"y":14.25,"w":1,"l":0.746},{"x":101.063,"y":14.25,"w":1,"l":0.746},{"x":100.052,"y":15,"w":1,"l":0.746},{"x":101.063,"y":15,"w":1,"l":0.746},{"x":100.052,"y":15.75,"w":1,"l":0.746},{"x":101.063,"y":15.75,"w":1,"l":0.746},{"x":100.052,"y":16.5,"w":1,"l":0.746},{"x":101.063,"y":16.5,"w":1,"l":0.746},{"x":100.052,"y":17.25,"w":1,"l":0.746},{"x":101.063,"y":17.25,"w":1,"l":0.746},{"x":100.052,"y":18,"w":1,"l":0.746},{"x":101.063,"y":18,"w":1,"l":0.746},{"x":100.052,"y":18.75,"w":1,"l":0.746},{"x":101.063,"y":18.75,"w":1,"l":0.746},{"x":100.052,"y":19.5,"w":1,"l":0.746},{"x":101.063,"y":19.5,"w":1,"l":0.746},{"x":100.052,"y":20.25,"w":1,"l":0.746},{"x":101.063,"y":20.25,"w":1,"l":0.746},{"x":100.052,"y":21,"w":1,"l":0.746},{"x":101.063,"y":21,"w":1,"l":0.746},{"x":100.052,"y":21.75,"w":1,"l":0.746},{"x":101.063,"y":21.75,"w":1,"l":0.746},{"x":100.052,"y":22.5,"w":1,"l":0.746},{"x":101.063,"y":22.5,"w":1,"l":0.746},{"x":100.052,"y":23.25,"w":1,"l":0.746},{"x":101.063,"y":23.25,"w":1,"l":0.746},{"x":100.052,"y":24,"w":1,"l":0.746},{"x":101.063,"y":24,"w":1,"l":0.746},{"x":100.052,"y":24.75,"w":1,"l":0.746},{"x":101.063,"y":24.75,"w":1,"l":0.746},{"x":100.052,"y":25.5,"w":1,"l":0.746},{"x":101.063,"y":25.5,"w":1,"l":0.746},{"x":100.052,"y":26.25,"w":1,"l":0.746},{"x":101.063,"y":26.25,"w":1,"l":0.746},{"x":100.052,"y":27,"w":1,"l":0.746},{"x":101.063,"y":27,"w":1,"l":0.746},{"x":100.052,"y":27.75,"w":1,"l":0.746},{"x":101.063,"y":27.75,"w":1,"l":0.746},{"x":100.052,"y":28.5,"w":1,"l":0.746},{"x":101.063,"y":28.5,"w":1,"l":0.746},{"x":100.052,"y":29.25,"w":1,"l":0.746},{"x":101.063,"y":29.25,"w":1,"l":0.746},{"x":100.052,"y":30,"w":1,"l":0.746},{"x":101.063,"y":30,"w":1,"l":0.746},{"x":100.052,"y":30.75,"w":1,"l":0.746},{"x":101.063,"y":30.75,"w":1,"l":0.746},{"x":100.052,"y":31.5,"w":1,"l":0.746},{"x":101.063,"y":31.5,"w":1,"l":0.746},{"x":100.052,"y":32.25,"w":1,"l":0.746},{"x":101.063,"y":32.25,"w":1,"l":0.746},{"x":100.052,"y":33,"w":1,"l":0.746},{"x":101.063,"y":33,"w":1,"l":0.746},{"x":100.052,"y":33.75,"w":1,"l":0.746},{"x":101.063,"y":33.75,"w":1,"l":0.746},{"x":100.052,"y":34.5,"w":1,"l":0.746},{"x":101.063,"y":34.5,"w":1,"l":0.746},{"x":100.052,"y":35.25,"w":1,"l":0.746},{"x":101.063,"y":35.25,"w":1,"l":0.746},{"x":100.052,"y":36,"w":1,"l":0.746},{"x":101.063,"y":36,"w":1,"l":0.746},{"x":100.052,"y":36.75,"w":1,"l":0.746},{"x":101.063,"y":36.75,"w":1,"l":0.746},{"x":100.052,"y":37.5,"w":1,"l":0.746},{"x":101.063,"y":37.5,"w":1,"l":0.746},{"x":100.052,"y":38.25,"w":1,"l":0.746},{"x":101.063,"y":38.25,"w":1,"l":0.746},{"x":100.052,"y":39,"w":1,"l":0.746},{"x":101.063,"y":39,"w":1,"l":0.746},{"x":100.052,"y":39.75,"w":1,"l":0.746},{"x":101.063,"y":39.75,"w":1,"l":0.746},{"x":100.052,"y":40.5,"w":1,"l":0.746},{"x":101.063,"y":40.5,"w":1,"l":0.746},{"x":100.052,"y":41.25,"w":1,"l":0.746},{"x":101.063,"y":41.25,"w":1,"l":0.746},{"x":100.052,"y":42,"w":1,"l":0.746},{"x":101.063,"y":42,"w":1,"l":0.746},{"x":100.052,"y":42.75,"w":1,"l":0.746},{"x":101.063,"y":42.75,"w":1,"l":0.746},{"x":100.052,"y":43.5,"w":1,"l":0.746},{"x":101.063,"y":43.5,"w":1,"l":0.746},{"x":100.052,"y":44.25,"w":1,"l":0.746},{"x":101.063,"y":44.25,"w":1,"l":0.746},{"x":100.052,"y":45,"w":1,"l":0.746},{"x":101.063,"y":45,"w":1,"l":0.746}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":81.469,"y":1.5,"w":18.903,"h":0.124,"clr":0},{"x":0,"y":1.5,"w":81.809,"h":0.124,"clr":0},{"x":89.719,"y":1.5,"w":10.395,"h":0.03,"clr":0},{"x":0,"y":3,"w":100.372,"h":0.124,"clr":0},{"x":0,"y":4.5,"w":100.114,"h":0.03,"clr":0},{"x":6.188,"y":6,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":6,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":6.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":6.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":7.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":7.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":8.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":8.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":9,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":9,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":9.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":9.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":10.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":10.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":11.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":11.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":12,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":12,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":12.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":12.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":13.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":13.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":14.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":14.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":15,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":15,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":15.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":15.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":16.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":16.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":17.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":17.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":18,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":18,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":18.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":18.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":19.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":19.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":20.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":20.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":21,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":21,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":21.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":21.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":22.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":22.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":23.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":23.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":24,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":24,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":24.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":24.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":25.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":25.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":26.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":26.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":27,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":27,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":27.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":27.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":28.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":28.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":29.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":29.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":30,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":30,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":30.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":30.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":31.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":31.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":32.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":32.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":33,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":33,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":33.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":33.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":34.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":34.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":35.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":35.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":36,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":36,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":36.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":36.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":37.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":37.5,"w":12.458,"h":0.03,"clr":0},{"x":0,"y":38.25,"w":100.372,"h":0.124,"clr":0},{"x":15.469,"y":0,"w":0.083,"h":1.53,"clr":0},{"x":89.719,"y":0,"w":0.083,"h":1.53,"clr":0},{"x":81.469,"y":0.75,"w":0.082,"h":2.28,"clr":0},{"x":87.656,"y":3,"w":0.083,"h":34.53,"clr":0},{"x":100.062,"y":0.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":0.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":1.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":2.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":3.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":3.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":4.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":5.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":6.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":6.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":7.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":8.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":9.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":9.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":10.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":11.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":12.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":12.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":13.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":14.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":15.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":15.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":16.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":17.254,"w":1,"h":0.743,"clr":0},{"x":100.062,"y":18.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":18.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":19.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":20.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":21.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":21.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":22.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":23.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":24.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":24.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":25.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":26.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":27.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":27.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":28.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":29.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":30.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":30.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":31.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":32.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":33.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":33.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":34.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":35.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":36.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":36.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":37.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":38.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":39.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":39.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":40.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":41.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":42.004,"w":1,"h":0.743,"clr":0},{"x":100.062,"y":42.754,"w":1,"h":0.743,"clr":0},{"x":100.062,"y":43.504,"w":1,"h":0.743,"clr":0},{"x":100.062,"y":44.254,"w":1,"h":0.743,"clr":0},{"x":100.062,"y":45.004,"w":1,"h":0.743,"clr":0}],"Texts":[{"x":0.09000000000000002,"y":-0.124,"w":5.446,"clr":0,"A":"left","R":[{"T":"Schedule%20B","S":-1,"TS":[0,13.96,1,0]}]},{"x":32.919,"y":-0.124,"w":13.891000000000004,"clr":0,"A":"left","R":[{"T":"Additional%20Interest%20Statement","S":-1,"TS":[0,16,1,0]}]},{"x":90.669,"y":-0.124,"w":2.224,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,16,1,0]}]},{"x":2.153,"y":0.6259999999999999,"w":2.501,"clr":0,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13.96,1,0]}]},{"x":36.184,"y":0.6259999999999999,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,10.98,0,0]}]},{"x":37.349,"y":0.6259999999999999,"w":17.146,"clr":0,"A":"left","R":[{"T":"%20Attach%20to%20return%20(after%20all%20IRS%20forms)","S":44,"TS":[2,12,0,0]}]},{"x":82.247,"y":0.6259999999999999,"w":4.8340000000000005,"clr":0,"A":"left","R":[{"T":"Statement","S":-1,"TS":[0,13.96,1,0]}]},{"x":0.09000000000000002,"y":1.376,"w":11.798000000000002,"clr":0,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":-1,"TS":[2,10.98,0,0]}]},{"x":81.559,"y":1.314,"w":13.449000000000002,"clr":0,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[0,10.98,1,0]}]},{"x":6.278,"y":3.6260000000000003,"w":8.996,"clr":0,"A":"left","R":[{"T":"List%20name%20of%20payer.","S":44,"TS":[2,12,0,0]}]},{"x":87.747,"y":3.6260000000000003,"w":3.5749999999999997,"clr":0,"A":"left","R":[{"T":"Amount","S":44,"TS":[2,12,0,0]}]},{"x":6.278,"y":36.626,"w":2.29,"clr":0,"A":"left","R":[{"T":"Total","S":44,"TS":[2,12,0,0]}]},{"x":10.826,"y":36.626,"w":41.83600000000007,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,9,0,0]}]},{"x":53.949,"y":36.626,"w":31.312999999999985,"clr":0,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STMT","EN":0},"TI":8010,"AM":0,"x":90.527,"y":0.694,"w":5.321,"h":0.852},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8011,"AM":1024,"x":5.366,"y":2.166,"w":64.907,"h":0.834},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8012,"AM":0,"x":81.634,"y":2.115,"w":18.356,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_1_","EN":0},"TI":8013,"AM":0,"x":6.188,"y":5.288,"w":80.541,"h":0.833,"TU":"[1]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_1_","EN":0},"TI":8014,"AM":0,"x":87.883,"y":5.139,"w":12.045,"h":0.861,"TU":"Amount_Total . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_2_","EN":0},"TI":8015,"AM":0,"x":6.188,"y":6.038,"w":80.541,"h":0.833,"TU":"[2]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_2_","EN":0},"TI":8016,"AM":0,"x":87.801,"y":6.052,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_3_","EN":0},"TI":8017,"AM":0,"x":6.188,"y":6.788,"w":80.541,"h":0.833,"TU":"[3]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_3_","EN":0},"TI":8018,"AM":0,"x":87.801,"y":6.802,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_4_","EN":0},"TI":8019,"AM":0,"x":6.188,"y":7.538,"w":80.541,"h":0.833,"TU":"[4]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_4_","EN":0},"TI":8020,"AM":0,"x":87.801,"y":7.552,"w":12.21,"h":0.833,"TU":"Amount_Total . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . "},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_5_","EN":0},"TI":8021,"AM":0,"x":6.188,"y":8.288,"w":80.541,"h":0.833,"TU":"[5]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_5_","EN":0},"TI":8022,"AM":0,"x":87.801,"y":8.303,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_6_","EN":0},"TI":8023,"AM":0,"x":6.188,"y":9.038,"w":80.541,"h":0.833,"TU":"[6]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_6_","EN":0},"TI":8024,"AM":0,"x":87.801,"y":9.053,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_7_","EN":0},"TI":8025,"AM":0,"x":6.188,"y":9.788,"w":80.541,"h":0.833,"TU":"[7]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_7_","EN":0},"TI":8026,"AM":0,"x":87.801,"y":9.803,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_8_","EN":0},"TI":8027,"AM":0,"x":6.188,"y":10.538,"w":80.541,"h":0.833,"TU":"[8]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_8_","EN":0},"TI":8028,"AM":0,"x":87.801,"y":10.553,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_9_","EN":0},"TI":8029,"AM":0,"x":6.188,"y":11.288,"w":80.541,"h":0.833,"TU":"[9]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_9_","EN":0},"TI":8030,"AM":0,"x":87.801,"y":11.303,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_10_","EN":0},"TI":8031,"AM":0,"x":6.188,"y":12.038,"w":80.541,"h":0.833,"TU":"[10]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_10_","EN":0},"TI":8032,"AM":0,"x":87.801,"y":12.053,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_11_","EN":0},"TI":8033,"AM":0,"x":6.188,"y":12.788,"w":80.541,"h":0.833,"TU":"[11]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_11_","EN":0},"TI":8034,"AM":0,"x":87.801,"y":12.803,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_12_","EN":0},"TI":8035,"AM":0,"x":6.188,"y":13.538,"w":80.541,"h":0.833,"TU":"[12]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_12_","EN":0},"TI":8036,"AM":0,"x":87.801,"y":13.553,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_13_","EN":0},"TI":8037,"AM":0,"x":6.188,"y":14.288,"w":80.541,"h":0.833,"TU":"[13]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_13_","EN":0},"TI":8038,"AM":0,"x":87.801,"y":14.303,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_14_","EN":0},"TI":8039,"AM":0,"x":6.188,"y":15.038,"w":80.541,"h":0.833,"TU":"[14]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_14_","EN":0},"TI":8040,"AM":0,"x":87.801,"y":15.053,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_15_","EN":0},"TI":8041,"AM":0,"x":6.188,"y":15.788,"w":80.541,"h":0.833,"TU":"[15]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_15_","EN":0},"TI":8042,"AM":0,"x":87.801,"y":15.803,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_16_","EN":0},"TI":8043,"AM":0,"x":6.188,"y":16.538,"w":80.541,"h":0.833,"TU":"[16]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_16_","EN":0},"TI":8044,"AM":0,"x":87.801,"y":16.552,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_17_","EN":0},"TI":8045,"AM":0,"x":6.188,"y":17.288,"w":80.541,"h":0.833,"TU":"[17]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_17_","EN":0},"TI":8046,"AM":0,"x":87.801,"y":17.302,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_18_","EN":0},"TI":8047,"AM":0,"x":6.188,"y":18.038,"w":80.541,"h":0.833,"TU":"[18]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_18_","EN":0},"TI":8048,"AM":0,"x":87.801,"y":18.052,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_19_","EN":0},"TI":8049,"AM":0,"x":6.188,"y":18.788,"w":80.541,"h":0.833,"TU":"[19]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_19_","EN":0},"TI":8050,"AM":0,"x":87.801,"y":18.802,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_20_","EN":0},"TI":8051,"AM":0,"x":6.188,"y":19.538,"w":80.541,"h":0.833,"TU":"[20]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_20_","EN":0},"TI":8052,"AM":0,"x":87.801,"y":19.552,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_21_","EN":0},"TI":8053,"AM":0,"x":6.188,"y":20.288,"w":80.541,"h":0.833,"TU":"[21]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_21_","EN":0},"TI":8054,"AM":0,"x":87.801,"y":20.302,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_22_","EN":0},"TI":8055,"AM":0,"x":6.188,"y":21.038,"w":80.541,"h":0.833,"TU":"[22]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_22_","EN":0},"TI":8056,"AM":0,"x":87.801,"y":21.052,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_23_","EN":0},"TI":8057,"AM":0,"x":6.188,"y":21.788,"w":80.541,"h":0.833,"TU":"[23]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_23_","EN":0},"TI":8058,"AM":0,"x":87.801,"y":21.802,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_24_","EN":0},"TI":8059,"AM":0,"x":6.188,"y":22.538,"w":80.541,"h":0.833,"TU":"[24]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_24_","EN":0},"TI":8060,"AM":0,"x":87.801,"y":22.552,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_25_","EN":0},"TI":8061,"AM":0,"x":6.188,"y":23.288,"w":80.541,"h":0.833,"TU":"[25]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_25_","EN":0},"TI":8062,"AM":0,"x":87.801,"y":23.302,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_26_","EN":0},"TI":8063,"AM":0,"x":6.188,"y":24.038,"w":80.541,"h":0.833,"TU":"[26]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_26_","EN":0},"TI":8064,"AM":0,"x":87.801,"y":24.052,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_27_","EN":0},"TI":8065,"AM":0,"x":6.188,"y":24.788,"w":80.541,"h":0.833,"TU":"[27]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_27_","EN":0},"TI":8066,"AM":0,"x":87.801,"y":24.802,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_28_","EN":0},"TI":8067,"AM":0,"x":6.188,"y":25.538,"w":80.541,"h":0.833,"TU":"[28]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_28_","EN":0},"TI":8068,"AM":0,"x":87.801,"y":25.552,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_29_","EN":0},"TI":8069,"AM":0,"x":6.188,"y":26.288,"w":80.541,"h":0.833,"TU":"[29]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_29_","EN":0},"TI":8070,"AM":0,"x":87.801,"y":26.302,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_30_","EN":0},"TI":8071,"AM":0,"x":6.188,"y":27.038,"w":80.541,"h":0.833,"TU":"[30]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_30_","EN":0},"TI":8072,"AM":0,"x":87.801,"y":27.052,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_31_","EN":0},"TI":8073,"AM":0,"x":6.188,"y":27.788,"w":80.541,"h":0.833,"TU":"[31]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_31_","EN":0},"TI":8074,"AM":0,"x":87.801,"y":27.802,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_32_","EN":0},"TI":8075,"AM":0,"x":6.188,"y":28.538,"w":80.541,"h":0.833,"TU":"[32]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_32_","EN":0},"TI":8076,"AM":0,"x":87.801,"y":28.552,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_33_","EN":0},"TI":8077,"AM":0,"x":6.188,"y":29.288,"w":80.541,"h":0.833,"TU":"[33]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_33_","EN":0},"TI":8078,"AM":0,"x":87.801,"y":29.302,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_34_","EN":0},"TI":8079,"AM":0,"x":6.188,"y":30.038,"w":80.541,"h":0.833,"TU":"[34]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_34_","EN":0},"TI":8080,"AM":0,"x":87.801,"y":30.052,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_35_","EN":0},"TI":8081,"AM":0,"x":6.188,"y":30.788,"w":80.541,"h":0.833,"TU":"[35]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_35_","EN":0},"TI":8082,"AM":0,"x":87.801,"y":30.802,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_36_","EN":0},"TI":8083,"AM":0,"x":6.188,"y":31.538,"w":80.541,"h":0.833,"TU":"[36]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_36_","EN":0},"TI":8084,"AM":0,"x":87.801,"y":31.552,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_37_","EN":0},"TI":8085,"AM":0,"x":6.188,"y":32.288,"w":80.541,"h":0.833,"TU":"[37]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_37_","EN":0},"TI":8086,"AM":0,"x":87.801,"y":32.303,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_38_","EN":0},"TI":8087,"AM":0,"x":6.188,"y":33.038,"w":80.541,"h":0.833,"TU":"[38]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_38_","EN":0},"TI":8088,"AM":0,"x":87.801,"y":33.053,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_39_","EN":0},"TI":8089,"AM":0,"x":6.188,"y":33.788,"w":80.541,"h":0.833,"TU":"[39]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_39_","EN":0},"TI":8090,"AM":0,"x":87.801,"y":33.803,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_40_","EN":0},"TI":8091,"AM":0,"x":6.188,"y":34.538,"w":80.541,"h":0.833,"TU":"[40]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_40_","EN":0},"TI":8092,"AM":0,"x":87.801,"y":34.553,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_41_","EN":0},"TI":8093,"AM":0,"x":6.188,"y":35.288,"w":80.541,"h":0.833,"TU":"[41]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_41_","EN":0},"TI":8094,"AM":0,"x":87.801,"y":35.303,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_42_","EN":0},"TI":8095,"AM":0,"x":6.188,"y":36.038,"w":80.541,"h":0.833,"TU":"[42]"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_42_","EN":0},"TI":8096,"AM":0,"x":87.801,"y":36.053,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL","EN":0},"TI":8097,"AM":1024,"x":87.801,"y":36.803,"w":12.21,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Title":"fdibint.pfm : default","Author":"solson","Creator":"PScript5.dll Version 5.2.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131023051905-07'00'","ModDate":"D:20131203191644-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":36.383,"y":0,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":0.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":0.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":1.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":1.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":2.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":2.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":2.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":3,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":3.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":3.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":4.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":4.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":5.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":5.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":5.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":6,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":6.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":6.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":7.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":7.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":8.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":8.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":8.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":9,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":9.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":9.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":10.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":10.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":11.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":11.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":11.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":12,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":12.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":12.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":13.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":13.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":14.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":14.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":14.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":15,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":15.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":15.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":16.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":16.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":17.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":17.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":17.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":18,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":18.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":18.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":19.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":19.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":20.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":20.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":20.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":21,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":21.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":21.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":22.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":22.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":23.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":23.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":23.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":24,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":24.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":24.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":25.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":25.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":26.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":26.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":26.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":27,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":27.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":27.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":28.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":28.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":29.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":29.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":29.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":30,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":30.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":30.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":31.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":31.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":32.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":32.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":32.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":33,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":33.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":33.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":34.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":34.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":35.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":35.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":35.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":36,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":36.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":36.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":37.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":37.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":38.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":38.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":38.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":39,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":39.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":39.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":40.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":40.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":41.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":41.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":41.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":42,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":42.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":42.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":43.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":43.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":44.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":44.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":44.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":45,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":45.746,"w":1,"l":0.367,"oc":"#000000"}],"VLines":[{"x":36.383,"y":0,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":0,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":0.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":0.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":1.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":1.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":2.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":2.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":3,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":3,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":3.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":3.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":4.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":4.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":5.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":5.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":6,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":6,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":6.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":6.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":7.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":7.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":8.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":8.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":9,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":9,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":9.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":9.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":10.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":10.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":11.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":11.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":12,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":12,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":12.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":12.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":13.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":13.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":14.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":14.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":15,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":15,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":15.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":15.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":16.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":16.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":17.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":17.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":18,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":18,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":18.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":18.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":19.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":19.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":20.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":20.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":21,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":21,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":21.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":21.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":22.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":22.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":23.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":23.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":24,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":24,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":24.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":24.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":25.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":25.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":26.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":26.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":27,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":27,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":27.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":27.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":28.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":28.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":29.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":29.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":30,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":30,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":30.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":30.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":31.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":31.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":32.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":32.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":33,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":33,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":33.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":33.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":34.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":34.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":35.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":35.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":36,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":36,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":36.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":36.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":37.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":37.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":38.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":38.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":39,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":39,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":39.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":39.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":40.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":40.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":41.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":41.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":42,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":42,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":42.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":42.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":43.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":43.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":44.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":44.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":45,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":45,"w":1,"l":0.746,"oc":"#000000"}],"Fills":[{"x":29.625,"y":1.5,"w":6.874,"h":0.124,"oc":"#000000"},{"x":0,"y":1.5,"w":29.749,"h":0.124,"oc":"#000000"},{"x":32.625,"y":1.5,"w":3.78,"h":0.03,"oc":"#000000"},{"x":0,"y":3,"w":36.499,"h":0.124,"oc":"#000000"},{"x":0,"y":4.5,"w":36.405,"h":0.03,"oc":"#000000"},{"x":2.25,"y":6,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":6,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":6.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":6.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":7.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":7.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":8.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":8.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":9,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":9,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":9.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":9.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":10.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":10.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":11.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":11.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":12,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":12,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":12.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":12.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":13.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":13.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":14.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":14.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":15,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":15,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":15.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":15.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":16.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":16.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":17.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":17.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":18,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":18,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":18.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":18.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":19.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":19.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":20.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":20.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":21,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":21,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":21.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":21.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":22.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":22.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":23.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":23.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":24,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":24,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":24.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":24.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":25.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":25.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":26.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":26.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":27,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":27,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":27.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":27.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":28.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":28.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":29.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":29.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":30,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":30,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":30.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":30.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":31.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":31.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":32.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":32.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":33,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":33,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":33.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":33.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":34.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":34.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":35.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":35.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":36,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":36,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":36.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":36.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":37.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":37.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":0,"y":38.25,"w":36.499,"h":0.124,"oc":"#000000"},{"x":29.625,"y":0.75,"w":0.03,"h":2.28,"oc":"#000000"},{"x":31.875,"y":3,"w":0.03,"h":34.53,"oc":"#000000"}],"Texts":[{"x":-0.126,"y":-0.124,"w":5.446,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Schedule B","S":-1,"TS":[0,13.96,1,0]}]},{"x":11.811,"y":-0.124,"w":13.891,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Additional Interest Statement","S":-1,"TS":[0,16,1,0]}]},{"x":32.812,"y":-0.124,"w":2.224,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,16,1,0]}]},{"x":0.624,"y":0.6259999999999999,"w":2.501,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Part I","S":-1,"TS":[0,13.96,1,0]}]},{"x":12.999,"y":0.6259999999999999,"w":0.85,"clr":0,"sw":null,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,10.98,0,0]}]},{"x":13.423,"y":0.6259999999999999,"w":17.146,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":" Attach to return (after all IRS forms)","S":44,"TS":[2,12,0,0]}]},{"x":29.749,"y":0.6259999999999999,"w":4.834,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Statement","S":-1,"TS":[0,13.96,1,0]}]},{"x":-0.126,"y":1.376,"w":11.798,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Name(s) shown on return","S":-1,"TS":[2,10.98,0,0]}]},{"x":29.499,"y":1.314,"w":13.449,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Your social security number","S":-1,"TS":[0,10.98,1,0]}]},{"x":2.124,"y":3.6260000000000003,"w":8.996,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"List name of payer.","S":44,"TS":[2,12,0,0]}]},{"x":31.749,"y":3.6260000000000003,"w":3.575,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Amount","S":44,"TS":[2,12,0,0]}]},{"x":2.124,"y":36.626,"w":2.29,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Total","S":44,"TS":[2,12,0,0]}]},{"x":3.777,"y":36.626,"w":41.836,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .","S":-1,"TS":[2,9,0,0]}]},{"x":19.459,"y":36.626,"w":31.313,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ","S":-1,"TS":[2,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STMT","EN":0},"TI":629,"AM":0,"x":32.919,"y":0.694,"w":1.935,"h":0.852},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":630,"AM":1024,"x":1.951,"y":2.166,"w":23.603,"h":0.834},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":631,"AM":0,"x":29.685,"y":2.115,"w":6.675,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_1_","EN":0},"TI":632,"AM":0,"TU":"[1]","x":2.25,"y":5.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_1_","EN":0},"TI":633,"AM":0,"TU":"Amount_Total . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ","x":31.957,"y":5.139,"w":4.38,"h":0.861},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_2_","EN":0},"TI":634,"AM":0,"TU":"[2]","x":2.25,"y":6.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_2_","EN":0},"TI":635,"AM":0,"x":31.927,"y":6.052,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_3_","EN":0},"TI":636,"AM":0,"TU":"[3]","x":2.25,"y":6.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_3_","EN":0},"TI":637,"AM":0,"x":31.927,"y":6.802,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_4_","EN":0},"TI":638,"AM":0,"TU":"[4]","x":2.25,"y":7.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_4_","EN":0},"TI":639,"AM":0,"TU":"Amount_Total . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ","x":31.927,"y":7.552,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_5_","EN":0},"TI":640,"AM":0,"TU":"[5]","x":2.25,"y":8.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_5_","EN":0},"TI":641,"AM":0,"x":31.927,"y":8.303,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_6_","EN":0},"TI":642,"AM":0,"TU":"[6]","x":2.25,"y":9.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_6_","EN":0},"TI":643,"AM":0,"x":31.927,"y":9.053,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_7_","EN":0},"TI":644,"AM":0,"TU":"[7]","x":2.25,"y":9.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_7_","EN":0},"TI":645,"AM":0,"x":31.927,"y":9.803,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_8_","EN":0},"TI":646,"AM":0,"TU":"[8]","x":2.25,"y":10.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_8_","EN":0},"TI":647,"AM":0,"x":31.927,"y":10.553,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_9_","EN":0},"TI":648,"AM":0,"TU":"[9]","x":2.25,"y":11.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_9_","EN":0},"TI":649,"AM":0,"x":31.927,"y":11.303,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_10_","EN":0},"TI":650,"AM":0,"TU":"[10]","x":2.25,"y":12.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_10_","EN":0},"TI":651,"AM":0,"x":31.927,"y":12.053,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_11_","EN":0},"TI":652,"AM":0,"TU":"[11]","x":2.25,"y":12.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_11_","EN":0},"TI":653,"AM":0,"x":31.927,"y":12.803,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_12_","EN":0},"TI":654,"AM":0,"TU":"[12]","x":2.25,"y":13.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_12_","EN":0},"TI":655,"AM":0,"x":31.927,"y":13.553,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_13_","EN":0},"TI":656,"AM":0,"TU":"[13]","x":2.25,"y":14.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_13_","EN":0},"TI":657,"AM":0,"x":31.927,"y":14.303,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_14_","EN":0},"TI":658,"AM":0,"TU":"[14]","x":2.25,"y":15.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_14_","EN":0},"TI":659,"AM":0,"x":31.927,"y":15.053,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_15_","EN":0},"TI":660,"AM":0,"TU":"[15]","x":2.25,"y":15.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_15_","EN":0},"TI":661,"AM":0,"x":31.927,"y":15.803,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_16_","EN":0},"TI":662,"AM":0,"TU":"[16]","x":2.25,"y":16.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_16_","EN":0},"TI":663,"AM":0,"x":31.927,"y":16.552,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_17_","EN":0},"TI":664,"AM":0,"TU":"[17]","x":2.25,"y":17.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_17_","EN":0},"TI":665,"AM":0,"x":31.927,"y":17.302,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_18_","EN":0},"TI":666,"AM":0,"TU":"[18]","x":2.25,"y":18.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_18_","EN":0},"TI":667,"AM":0,"x":31.927,"y":18.052,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_19_","EN":0},"TI":668,"AM":0,"TU":"[19]","x":2.25,"y":18.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_19_","EN":0},"TI":669,"AM":0,"x":31.927,"y":18.802,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_20_","EN":0},"TI":670,"AM":0,"TU":"[20]","x":2.25,"y":19.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_20_","EN":0},"TI":671,"AM":0,"x":31.927,"y":19.552,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_21_","EN":0},"TI":672,"AM":0,"TU":"[21]","x":2.25,"y":20.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_21_","EN":0},"TI":673,"AM":0,"x":31.927,"y":20.302,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_22_","EN":0},"TI":674,"AM":0,"TU":"[22]","x":2.25,"y":21.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_22_","EN":0},"TI":675,"AM":0,"x":31.927,"y":21.052,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_23_","EN":0},"TI":676,"AM":0,"TU":"[23]","x":2.25,"y":21.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_23_","EN":0},"TI":677,"AM":0,"x":31.927,"y":21.802,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_24_","EN":0},"TI":678,"AM":0,"TU":"[24]","x":2.25,"y":22.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_24_","EN":0},"TI":679,"AM":0,"x":31.927,"y":22.552,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_25_","EN":0},"TI":680,"AM":0,"TU":"[25]","x":2.25,"y":23.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_25_","EN":0},"TI":681,"AM":0,"x":31.927,"y":23.302,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_26_","EN":0},"TI":682,"AM":0,"TU":"[26]","x":2.25,"y":24.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_26_","EN":0},"TI":683,"AM":0,"x":31.927,"y":24.052,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_27_","EN":0},"TI":684,"AM":0,"TU":"[27]","x":2.25,"y":24.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_27_","EN":0},"TI":685,"AM":0,"x":31.927,"y":24.802,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_28_","EN":0},"TI":686,"AM":0,"TU":"[28]","x":2.25,"y":25.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_28_","EN":0},"TI":687,"AM":0,"x":31.927,"y":25.552,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_29_","EN":0},"TI":688,"AM":0,"TU":"[29]","x":2.25,"y":26.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_29_","EN":0},"TI":689,"AM":0,"x":31.927,"y":26.302,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_30_","EN":0},"TI":690,"AM":0,"TU":"[30]","x":2.25,"y":27.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_30_","EN":0},"TI":691,"AM":0,"x":31.927,"y":27.052,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_31_","EN":0},"TI":692,"AM":0,"TU":"[31]","x":2.25,"y":27.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_31_","EN":0},"TI":693,"AM":0,"x":31.927,"y":27.802,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_32_","EN":0},"TI":694,"AM":0,"TU":"[32]","x":2.25,"y":28.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_32_","EN":0},"TI":695,"AM":0,"x":31.927,"y":28.552,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_33_","EN":0},"TI":696,"AM":0,"TU":"[33]","x":2.25,"y":29.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_33_","EN":0},"TI":697,"AM":0,"x":31.927,"y":29.302,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_34_","EN":0},"TI":698,"AM":0,"TU":"[34]","x":2.25,"y":30.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_34_","EN":0},"TI":699,"AM":0,"x":31.927,"y":30.052,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_35_","EN":0},"TI":700,"AM":0,"TU":"[35]","x":2.25,"y":30.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_35_","EN":0},"TI":701,"AM":0,"x":31.927,"y":30.802,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_36_","EN":0},"TI":702,"AM":0,"TU":"[36]","x":2.25,"y":31.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_36_","EN":0},"TI":703,"AM":0,"x":31.927,"y":31.552,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_37_","EN":0},"TI":704,"AM":0,"TU":"[37]","x":2.25,"y":32.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_37_","EN":0},"TI":705,"AM":0,"x":31.927,"y":32.303,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_38_","EN":0},"TI":706,"AM":0,"TU":"[38]","x":2.25,"y":33.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_38_","EN":0},"TI":707,"AM":0,"x":31.927,"y":33.053,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_39_","EN":0},"TI":708,"AM":0,"TU":"[39]","x":2.25,"y":33.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_39_","EN":0},"TI":709,"AM":0,"x":31.927,"y":33.803,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_40_","EN":0},"TI":710,"AM":0,"TU":"[40]","x":2.25,"y":34.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_40_","EN":0},"TI":711,"AM":0,"x":31.927,"y":34.553,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_41_","EN":0},"TI":712,"AM":0,"TU":"[41]","x":2.25,"y":35.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_41_","EN":0},"TI":713,"AM":0,"x":31.927,"y":35.303,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"INT_PAY_42_","EN":0},"TI":714,"AM":0,"TU":"[42]","x":2.25,"y":36.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"INT_AMT_42_","EN":0},"TI":715,"AM":0,"x":31.927,"y":36.053,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL","EN":0},"TI":716,"AM":1024,"x":31.927,"y":36.803,"w":4.44,"h":0.833}],"Boxsets":[]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHB3.json b/test/data/fd/form/FSCHB3.json index 99245773..dba9839a 100755 --- a/test/data/fd/form/FSCHB3.json +++ b/test/data/fd/form/FSCHB3.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"fdibdiv.pfm : default","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"x":100.052,"y":0,"w":1,"l":1.011},{"x":100.052,"y":0.746,"w":1,"l":1.011},{"x":100.052,"y":0.75,"w":1,"l":1.011},{"x":100.052,"y":1.496,"w":1,"l":1.011},{"x":100.052,"y":1.5,"w":1,"l":1.011},{"x":100.052,"y":2.246,"w":1,"l":1.011},{"x":100.052,"y":2.25,"w":1,"l":1.011},{"x":100.052,"y":2.996,"w":1,"l":1.011},{"x":100.052,"y":3,"w":1,"l":1.011},{"x":100.052,"y":3.746,"w":1,"l":1.011},{"x":100.052,"y":3.75,"w":1,"l":1.011},{"x":100.052,"y":4.496,"w":1,"l":1.011},{"x":100.052,"y":4.5,"w":1,"l":1.011},{"x":100.052,"y":5.246,"w":1,"l":1.011},{"x":100.052,"y":5.25,"w":1,"l":1.011},{"x":100.052,"y":5.996,"w":1,"l":1.011},{"x":100.052,"y":6,"w":1,"l":1.011},{"x":100.052,"y":6.746,"w":1,"l":1.011},{"x":100.052,"y":6.75,"w":1,"l":1.011},{"x":100.052,"y":7.496,"w":1,"l":1.011},{"x":100.052,"y":7.5,"w":1,"l":1.011},{"x":100.052,"y":8.246,"w":1,"l":1.011},{"x":100.052,"y":8.25,"w":1,"l":1.011},{"x":100.052,"y":8.996,"w":1,"l":1.011},{"x":100.052,"y":9,"w":1,"l":1.011},{"x":100.052,"y":9.746,"w":1,"l":1.011},{"x":100.052,"y":9.75,"w":1,"l":1.011},{"x":100.052,"y":10.496,"w":1,"l":1.011},{"x":100.052,"y":10.5,"w":1,"l":1.011},{"x":100.052,"y":11.246,"w":1,"l":1.011},{"x":100.052,"y":11.25,"w":1,"l":1.011},{"x":100.052,"y":11.996,"w":1,"l":1.011},{"x":100.052,"y":12,"w":1,"l":1.011},{"x":100.052,"y":12.746,"w":1,"l":1.011},{"x":100.052,"y":12.75,"w":1,"l":1.011},{"x":100.052,"y":13.496,"w":1,"l":1.011},{"x":100.052,"y":13.5,"w":1,"l":1.011},{"x":100.052,"y":14.246,"w":1,"l":1.011},{"x":100.052,"y":14.25,"w":1,"l":1.011},{"x":100.052,"y":14.996,"w":1,"l":1.011},{"x":100.052,"y":15,"w":1,"l":1.011},{"x":100.052,"y":15.746,"w":1,"l":1.011},{"x":100.052,"y":15.75,"w":1,"l":1.011},{"x":100.052,"y":16.496,"w":1,"l":1.011},{"x":100.052,"y":16.5,"w":1,"l":1.011},{"x":100.052,"y":17.246,"w":1,"l":1.011},{"x":100.052,"y":17.25,"w":1,"l":1.011},{"x":100.052,"y":17.996,"w":1,"l":1.011},{"x":100.052,"y":18,"w":1,"l":1.011},{"x":100.052,"y":18.746,"w":1,"l":1.011},{"x":100.052,"y":18.75,"w":1,"l":1.011},{"x":100.052,"y":19.496,"w":1,"l":1.011},{"x":100.052,"y":19.5,"w":1,"l":1.011},{"x":100.052,"y":20.246,"w":1,"l":1.011},{"x":100.052,"y":20.25,"w":1,"l":1.011},{"x":100.052,"y":20.996,"w":1,"l":1.011},{"x":100.052,"y":21,"w":1,"l":1.011},{"x":100.052,"y":21.746,"w":1,"l":1.011},{"x":100.052,"y":21.75,"w":1,"l":1.011},{"x":100.052,"y":22.496,"w":1,"l":1.011},{"x":100.052,"y":22.5,"w":1,"l":1.011},{"x":100.052,"y":23.246,"w":1,"l":1.011},{"x":100.052,"y":23.25,"w":1,"l":1.011},{"x":100.052,"y":23.996,"w":1,"l":1.011},{"x":100.052,"y":24,"w":1,"l":1.011},{"x":100.052,"y":24.746,"w":1,"l":1.011},{"x":100.052,"y":24.75,"w":1,"l":1.011},{"x":100.052,"y":25.496,"w":1,"l":1.011},{"x":100.052,"y":25.5,"w":1,"l":1.011},{"x":100.052,"y":26.246,"w":1,"l":1.011},{"x":100.052,"y":26.25,"w":1,"l":1.011},{"x":100.052,"y":26.996,"w":1,"l":1.011},{"x":100.052,"y":27,"w":1,"l":1.011},{"x":100.052,"y":27.746,"w":1,"l":1.011},{"x":100.052,"y":27.75,"w":1,"l":1.011},{"x":100.052,"y":28.496,"w":1,"l":1.011},{"x":100.052,"y":28.5,"w":1,"l":1.011},{"x":100.052,"y":29.246,"w":1,"l":1.011},{"x":100.052,"y":29.25,"w":1,"l":1.011},{"x":100.052,"y":29.996,"w":1,"l":1.011},{"x":100.052,"y":30,"w":1,"l":1.011},{"x":100.052,"y":30.746,"w":1,"l":1.011},{"x":100.052,"y":30.75,"w":1,"l":1.011},{"x":100.052,"y":31.496,"w":1,"l":1.011},{"x":100.052,"y":31.5,"w":1,"l":1.011},{"x":100.052,"y":32.246,"w":1,"l":1.011},{"x":100.052,"y":32.25,"w":1,"l":1.011},{"x":100.052,"y":32.996,"w":1,"l":1.011},{"x":100.052,"y":33,"w":1,"l":1.011},{"x":100.052,"y":33.746,"w":1,"l":1.011},{"x":100.052,"y":33.75,"w":1,"l":1.011},{"x":100.052,"y":34.496,"w":1,"l":1.011},{"x":100.052,"y":34.5,"w":1,"l":1.011},{"x":100.052,"y":35.246,"w":1,"l":1.011},{"x":100.052,"y":35.25,"w":1,"l":1.011},{"x":100.052,"y":35.996,"w":1,"l":1.011},{"x":100.052,"y":36,"w":1,"l":1.011},{"x":100.052,"y":36.746,"w":1,"l":1.011}],"VLines":[{"x":100.052,"y":0,"w":1,"l":0.746},{"x":101.063,"y":0,"w":1,"l":0.746},{"x":100.052,"y":0.75,"w":1,"l":0.746},{"x":101.063,"y":0.75,"w":1,"l":0.746},{"x":100.052,"y":1.5,"w":1,"l":0.746},{"x":101.063,"y":1.5,"w":1,"l":0.746},{"x":100.052,"y":2.25,"w":1,"l":0.746},{"x":101.063,"y":2.25,"w":1,"l":0.746},{"x":100.052,"y":3,"w":1,"l":0.746},{"x":101.063,"y":3,"w":1,"l":0.746},{"x":100.052,"y":3.75,"w":1,"l":0.746},{"x":101.063,"y":3.75,"w":1,"l":0.746},{"x":100.052,"y":4.5,"w":1,"l":0.746},{"x":101.063,"y":4.5,"w":1,"l":0.746},{"x":100.052,"y":5.25,"w":1,"l":0.746},{"x":101.063,"y":5.25,"w":1,"l":0.746},{"x":100.052,"y":6,"w":1,"l":0.746},{"x":101.063,"y":6,"w":1,"l":0.746},{"x":100.052,"y":6.75,"w":1,"l":0.746},{"x":101.063,"y":6.75,"w":1,"l":0.746},{"x":100.052,"y":7.5,"w":1,"l":0.746},{"x":101.063,"y":7.5,"w":1,"l":0.746},{"x":100.052,"y":8.25,"w":1,"l":0.746},{"x":101.063,"y":8.25,"w":1,"l":0.746},{"x":100.052,"y":9,"w":1,"l":0.746},{"x":101.063,"y":9,"w":1,"l":0.746},{"x":100.052,"y":9.75,"w":1,"l":0.746},{"x":101.063,"y":9.75,"w":1,"l":0.746},{"x":100.052,"y":10.5,"w":1,"l":0.746},{"x":101.063,"y":10.5,"w":1,"l":0.746},{"x":100.052,"y":11.25,"w":1,"l":0.746},{"x":101.063,"y":11.25,"w":1,"l":0.746},{"x":100.052,"y":12,"w":1,"l":0.746},{"x":101.063,"y":12,"w":1,"l":0.746},{"x":100.052,"y":12.75,"w":1,"l":0.746},{"x":101.063,"y":12.75,"w":1,"l":0.746},{"x":100.052,"y":13.5,"w":1,"l":0.746},{"x":101.063,"y":13.5,"w":1,"l":0.746},{"x":100.052,"y":14.25,"w":1,"l":0.746},{"x":101.063,"y":14.25,"w":1,"l":0.746},{"x":100.052,"y":15,"w":1,"l":0.746},{"x":101.063,"y":15,"w":1,"l":0.746},{"x":100.052,"y":15.75,"w":1,"l":0.746},{"x":101.063,"y":15.75,"w":1,"l":0.746},{"x":100.052,"y":16.5,"w":1,"l":0.746},{"x":101.063,"y":16.5,"w":1,"l":0.746},{"x":100.052,"y":17.25,"w":1,"l":0.746},{"x":101.063,"y":17.25,"w":1,"l":0.746},{"x":100.052,"y":18,"w":1,"l":0.746},{"x":101.063,"y":18,"w":1,"l":0.746},{"x":100.052,"y":18.75,"w":1,"l":0.746},{"x":101.063,"y":18.75,"w":1,"l":0.746},{"x":100.052,"y":19.5,"w":1,"l":0.746},{"x":101.063,"y":19.5,"w":1,"l":0.746},{"x":100.052,"y":20.25,"w":1,"l":0.746},{"x":101.063,"y":20.25,"w":1,"l":0.746},{"x":100.052,"y":21,"w":1,"l":0.746},{"x":101.063,"y":21,"w":1,"l":0.746},{"x":100.052,"y":21.75,"w":1,"l":0.746},{"x":101.063,"y":21.75,"w":1,"l":0.746},{"x":100.052,"y":22.5,"w":1,"l":0.746},{"x":101.063,"y":22.5,"w":1,"l":0.746},{"x":100.052,"y":23.25,"w":1,"l":0.746},{"x":101.063,"y":23.25,"w":1,"l":0.746},{"x":100.052,"y":24,"w":1,"l":0.746},{"x":101.063,"y":24,"w":1,"l":0.746},{"x":100.052,"y":24.75,"w":1,"l":0.746},{"x":101.063,"y":24.75,"w":1,"l":0.746},{"x":100.052,"y":25.5,"w":1,"l":0.746},{"x":101.063,"y":25.5,"w":1,"l":0.746},{"x":100.052,"y":26.25,"w":1,"l":0.746},{"x":101.063,"y":26.25,"w":1,"l":0.746},{"x":100.052,"y":27,"w":1,"l":0.746},{"x":101.063,"y":27,"w":1,"l":0.746},{"x":100.052,"y":27.75,"w":1,"l":0.746},{"x":101.063,"y":27.75,"w":1,"l":0.746},{"x":100.052,"y":28.5,"w":1,"l":0.746},{"x":101.063,"y":28.5,"w":1,"l":0.746},{"x":100.052,"y":29.25,"w":1,"l":0.746},{"x":101.063,"y":29.25,"w":1,"l":0.746},{"x":100.052,"y":30,"w":1,"l":0.746},{"x":101.063,"y":30,"w":1,"l":0.746},{"x":100.052,"y":30.75,"w":1,"l":0.746},{"x":101.063,"y":30.75,"w":1,"l":0.746},{"x":100.052,"y":31.5,"w":1,"l":0.746},{"x":101.063,"y":31.5,"w":1,"l":0.746},{"x":100.052,"y":32.25,"w":1,"l":0.746},{"x":101.063,"y":32.25,"w":1,"l":0.746},{"x":100.052,"y":33,"w":1,"l":0.746},{"x":101.063,"y":33,"w":1,"l":0.746},{"x":100.052,"y":33.75,"w":1,"l":0.746},{"x":101.063,"y":33.75,"w":1,"l":0.746},{"x":100.052,"y":34.5,"w":1,"l":0.746},{"x":101.063,"y":34.5,"w":1,"l":0.746},{"x":100.052,"y":35.25,"w":1,"l":0.746},{"x":101.063,"y":35.25,"w":1,"l":0.746},{"x":100.052,"y":36,"w":1,"l":0.746},{"x":101.063,"y":36,"w":1,"l":0.746}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"x":81.469,"y":1.5,"w":18.903,"h":0.124,"clr":0},{"x":0,"y":1.5,"w":81.809,"h":0.124,"clr":0},{"x":89.719,"y":1.5,"w":10.395,"h":0.03,"clr":0},{"x":0,"y":3,"w":100.372,"h":0.124,"clr":0},{"x":0,"y":4.5,"w":100.114,"h":0.03,"clr":0},{"x":6.188,"y":6,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":6,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":6.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":6.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":7.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":7.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":8.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":8.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":9,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":9,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":9.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":9.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":10.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":10.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":11.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":11.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":12,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":12,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":12.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":12.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":13.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":13.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":14.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":14.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":15,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":15,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":15.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":15.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":16.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":16.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":17.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":17.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":18,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":18,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":18.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":18.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":19.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":19.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":20.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":20.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":21,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":21,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":21.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":21.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":22.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":22.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":23.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":23.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":24,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":24,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":24.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":24.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":25.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":25.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":26.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":26.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":27,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":27,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":27.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":27.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":28.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":28.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":29.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":29.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":30,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":30,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":30.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":30.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":31.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":31.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":32.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":32.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":33,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":33,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":33.75,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":33.75,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":34.5,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":34.5,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":35.25,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":35.25,"w":12.458,"h":0.03,"clr":0},{"x":6.188,"y":36,"w":80.52,"h":0.03,"clr":0},{"x":87.656,"y":36,"w":12.458,"h":0.03,"clr":0},{"x":0,"y":36.75,"w":100.372,"h":0.124,"clr":0},{"x":15.469,"y":0,"w":0.083,"h":1.53,"clr":0},{"x":89.719,"y":0,"w":0.083,"h":1.53,"clr":0},{"x":80.953,"y":0.75,"w":0.082,"h":2.28,"clr":0},{"x":87.656,"y":3,"w":0.083,"h":33.03,"clr":0},{"x":100.062,"y":0.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":0.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":1.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":2.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":3.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":3.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":4.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":5.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":6.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":6.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":7.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":8.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":9.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":9.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":10.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":11.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":12.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":12.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":13.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":14.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":15.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":15.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":16.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":17.254,"w":1,"h":0.743,"clr":0},{"x":100.062,"y":18.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":18.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":19.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":20.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":21.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":21.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":22.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":23.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":24.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":24.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":25.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":26.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":27.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":27.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":28.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":29.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":30.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":30.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":31.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":32.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":33.004,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":33.754,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":34.504,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":35.254,"w":1,"h":0.742,"clr":0},{"x":100.062,"y":36.004,"w":1,"h":0.742,"clr":0}],"Texts":[{"x":0.09000000000000002,"y":-0.124,"w":5.446,"clr":0,"A":"left","R":[{"T":"Schedule%20B","S":-1,"TS":[2,13.96,1,0]}]},{"x":32.059,"y":-0.124,"w":15.058000000000002,"clr":0,"A":"left","R":[{"T":"Additional%20Dividends%20Statement","S":-1,"TS":[2,16,1,0]}]},{"x":90.325,"y":-0.124,"w":2.224,"clr":0,"A":"left","R":[{"T":"2013","S":-1,"TS":[2,17.98,1,0]}]},{"x":2.153,"y":0.6259999999999999,"w":2.779,"clr":0,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[2,13.96,1,0]}]},{"x":36.184,"y":0.6259999999999999,"w":0.85,"clr":0,"A":"left","R":[{"T":"%E2%96%B6","S":-1,"TS":[2,10.98,0,0]}]},{"x":37.349,"y":0.6259999999999999,"w":17.146,"clr":0,"A":"left","R":[{"T":"%20Attach%20to%20return%20(after%20all%20IRS%20forms)","S":44,"TS":[2,12,0,0]}]},{"x":81.568,"y":0.6080000000000001,"w":4.8340000000000005,"clr":0,"A":"left","R":[{"T":"Statement","S":-1,"TS":[2,13.64875,1,0]}]},{"x":0.09000000000000002,"y":1.376,"w":11.798000000000002,"clr":0,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return","S":-1,"TS":[2,10.98,0,0]}]},{"x":81.466,"y":1.23,"w":13.449000000000002,"clr":0,"A":"left","R":[{"T":"Your%20social%20security%20number","S":-1,"TS":[2,10.48125,1,0]}]},{"x":6.278,"y":3.6260000000000003,"w":8.996,"clr":0,"A":"left","R":[{"T":"List%20name%20of%20payer.","S":44,"TS":[2,12,0,0]}]},{"x":87.747,"y":3.6260000000000003,"w":3.5749999999999997,"clr":0,"A":"left","R":[{"T":"Amount","S":44,"TS":[2,12,0,0]}]},{"x":6.278,"y":35.126,"w":2.29,"clr":0,"A":"left","R":[{"T":"Total","S":44,"TS":[2,12,0,0]}]},{"x":10.826,"y":35.126,"w":41.83600000000007,"clr":0,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.","S":-1,"TS":[2,9,0,0]}]},{"x":53.949,"y":35.126,"w":31.312999999999985,"clr":0,"A":"left","R":[{"T":"%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":-1,"TS":[2,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STMT","EN":0},"TI":8098,"AM":0,"x":90.525,"y":0.694,"w":4.941,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8099,"AM":1024,"x":5.494,"y":2.166,"w":64.907,"h":0.834},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8100,"AM":1024,"x":81.634,"y":2.115,"w":18.356,"h":0.885,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_1_","EN":0},"TI":8101,"AM":0,"x":6.188,"y":5.288,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_1_","EN":0},"TI":8102,"AM":0,"x":87.883,"y":5.139,"w":12.045,"h":0.861},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_2_","EN":0},"TI":8103,"AM":0,"x":6.188,"y":6.038,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_2_","EN":0},"TI":8104,"AM":0,"x":87.801,"y":6.052,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_3_","EN":0},"TI":8105,"AM":0,"x":6.315,"y":6.741,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_3_","EN":0},"TI":8106,"AM":0,"x":87.801,"y":6.802,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_4_","EN":0},"TI":8107,"AM":0,"x":6.188,"y":7.538,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_4_","EN":0},"TI":8108,"AM":0,"x":87.801,"y":7.552,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_5_","EN":0},"TI":8109,"AM":0,"x":6.188,"y":8.288,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_5_","EN":0},"TI":8110,"AM":0,"x":87.801,"y":8.303,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_6_","EN":0},"TI":8111,"AM":0,"x":6.188,"y":9.038,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_6_","EN":0},"TI":8112,"AM":0,"x":87.801,"y":9.053,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_7_","EN":0},"TI":8113,"AM":0,"x":6.188,"y":9.788,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_7_","EN":0},"TI":8114,"AM":0,"x":87.801,"y":9.803,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_8_","EN":0},"TI":8115,"AM":0,"x":6.188,"y":10.538,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_8_","EN":0},"TI":8116,"AM":0,"x":87.801,"y":10.553,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_9_","EN":0},"TI":8117,"AM":0,"x":6.188,"y":11.288,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_9_","EN":0},"TI":8118,"AM":0,"x":87.801,"y":11.303,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_10_","EN":0},"TI":8119,"AM":0,"x":6.188,"y":12.038,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_10_","EN":0},"TI":8120,"AM":0,"x":87.801,"y":12.053,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_11_","EN":0},"TI":8121,"AM":0,"x":6.188,"y":12.788,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_11_","EN":0},"TI":8122,"AM":0,"x":87.801,"y":12.803,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_12_","EN":0},"TI":8123,"AM":0,"x":6.188,"y":13.538,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_12_","EN":0},"TI":8124,"AM":0,"x":87.801,"y":13.553,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_13_","EN":0},"TI":8125,"AM":0,"x":6.188,"y":14.288,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_13_","EN":0},"TI":8126,"AM":0,"x":87.801,"y":14.303,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_14_","EN":0},"TI":8127,"AM":0,"x":6.188,"y":15.038,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_14_","EN":0},"TI":8128,"AM":0,"x":87.801,"y":15.053,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_15_","EN":0},"TI":8129,"AM":0,"x":6.188,"y":15.788,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_15_","EN":0},"TI":8130,"AM":0,"x":87.801,"y":15.803,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_16_","EN":0},"TI":8131,"AM":0,"x":6.188,"y":16.538,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_16_","EN":0},"TI":8132,"AM":0,"x":87.801,"y":16.552,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_17_","EN":0},"TI":8133,"AM":0,"x":6.188,"y":17.288,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_17_","EN":0},"TI":8134,"AM":0,"x":87.801,"y":17.302,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_18_","EN":0},"TI":8135,"AM":0,"x":6.188,"y":18.038,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_18_","EN":0},"TI":8136,"AM":0,"x":87.801,"y":18.052,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_19_","EN":0},"TI":8137,"AM":0,"x":6.188,"y":18.788,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_19_","EN":0},"TI":8138,"AM":0,"x":87.801,"y":18.802,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_20_","EN":0},"TI":8139,"AM":0,"x":6.188,"y":19.538,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_20_","EN":0},"TI":8140,"AM":0,"x":87.801,"y":19.552,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_21_","EN":0},"TI":8141,"AM":0,"x":6.188,"y":20.288,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_21_","EN":0},"TI":8142,"AM":0,"x":87.801,"y":20.302,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_22_","EN":0},"TI":8143,"AM":0,"x":6.188,"y":21.038,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_22_","EN":0},"TI":8144,"AM":0,"x":87.801,"y":21.052,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_23_","EN":0},"TI":8145,"AM":0,"x":6.188,"y":21.788,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_23_","EN":0},"TI":8146,"AM":0,"x":87.801,"y":21.802,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_24_","EN":0},"TI":8147,"AM":0,"x":6.188,"y":22.538,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_24_","EN":0},"TI":8148,"AM":0,"x":87.801,"y":22.552,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_25_","EN":0},"TI":8149,"AM":0,"x":6.188,"y":23.288,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_25_","EN":0},"TI":8150,"AM":0,"x":87.801,"y":23.302,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_26_","EN":0},"TI":8151,"AM":0,"x":6.188,"y":24.038,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_26_","EN":0},"TI":8152,"AM":0,"x":87.801,"y":24.052,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_27_","EN":0},"TI":8153,"AM":0,"x":6.06,"y":24.788,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_27_","EN":0},"TI":8154,"AM":0,"x":87.801,"y":24.802,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_28_","EN":0},"TI":8155,"AM":0,"x":6.188,"y":25.538,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_28_","EN":0},"TI":8156,"AM":0,"x":87.801,"y":25.552,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_29_","EN":0},"TI":8157,"AM":0,"x":6.188,"y":26.288,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_29_","EN":0},"TI":8158,"AM":0,"x":87.801,"y":26.302,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_30_","EN":0},"TI":8159,"AM":0,"x":6.188,"y":27.038,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_30_","EN":0},"TI":8160,"AM":0,"x":87.801,"y":27.052,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_31_","EN":0},"TI":8161,"AM":0,"x":6.188,"y":27.788,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_31_","EN":0},"TI":8162,"AM":0,"x":87.801,"y":27.802,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_32_","EN":0},"TI":8163,"AM":0,"x":6.188,"y":28.538,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_32_","EN":0},"TI":8164,"AM":0,"x":87.801,"y":28.552,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_33_","EN":0},"TI":8165,"AM":0,"x":6.188,"y":29.288,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_33_","EN":0},"TI":8166,"AM":0,"x":87.801,"y":29.302,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_34_","EN":0},"TI":8167,"AM":0,"x":6.188,"y":30.038,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_34_","EN":0},"TI":8168,"AM":0,"x":87.801,"y":30.052,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_35_","EN":0},"TI":8169,"AM":0,"x":6.188,"y":30.788,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_35_","EN":0},"TI":8170,"AM":0,"x":87.801,"y":30.802,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_36_","EN":0},"TI":8171,"AM":0,"x":6.188,"y":31.538,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_36_","EN":0},"TI":8172,"AM":0,"x":87.801,"y":31.552,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_37_","EN":0},"TI":8173,"AM":0,"x":6.188,"y":32.288,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_37_","EN":0},"TI":8174,"AM":0,"x":87.801,"y":32.303,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_38_","EN":0},"TI":8175,"AM":0,"x":6.188,"y":33.038,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_38_","EN":0},"TI":8176,"AM":0,"x":87.801,"y":33.053,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_39_","EN":0},"TI":8177,"AM":0,"x":6.188,"y":33.788,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_39_","EN":0},"TI":8178,"AM":0,"x":87.801,"y":33.803,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_40_","EN":0},"TI":8179,"AM":0,"x":6.188,"y":34.538,"w":80.541,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_40_","EN":0},"TI":8180,"AM":0,"x":87.801,"y":34.553,"w":12.21,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL","EN":0},"TI":8181,"AM":1024,"x":87.801,"y":35.303,"w":12.21,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Title":"fdibdiv.pfm : default","Author":"solson","Creator":"PScript5.dll Version 5.2.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131023061943-07'00'","ModDate":"D:20131203191910-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":36.383,"y":0,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":0.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":0.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":1.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":1.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":2.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":2.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":2.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":3,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":3.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":3.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":4.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":4.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":5.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":5.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":5.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":6,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":6.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":6.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":7.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":7.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":8.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":8.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":8.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":9,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":9.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":9.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":10.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":10.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":11.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":11.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":11.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":12,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":12.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":12.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":13.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":13.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":14.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":14.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":14.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":15,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":15.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":15.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":16.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":16.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":17.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":17.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":17.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":18,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":18.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":18.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":19.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":19.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":20.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":20.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":20.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":21,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":21.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":21.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":22.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":22.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":23.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":23.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":23.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":24,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":24.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":24.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":25.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":25.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":26.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":26.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":26.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":27,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":27.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":27.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":28.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":28.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":29.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":29.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":29.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":30,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":30.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":30.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":31.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":31.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":32.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":32.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":32.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":33,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":33.746,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":33.75,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":34.496,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":34.5,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":35.246,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":35.25,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":35.996,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":36,"w":1,"l":0.367,"oc":"#000000"},{"x":36.383,"y":36.746,"w":1,"l":0.367,"oc":"#000000"}],"VLines":[{"x":36.383,"y":0,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":0,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":0.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":0.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":1.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":1.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":2.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":2.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":3,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":3,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":3.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":3.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":4.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":4.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":5.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":5.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":6,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":6,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":6.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":6.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":7.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":7.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":8.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":8.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":9,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":9,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":9.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":9.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":10.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":10.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":11.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":11.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":12,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":12,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":12.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":12.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":13.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":13.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":14.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":14.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":15,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":15,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":15.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":15.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":16.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":16.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":17.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":17.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":18,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":18,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":18.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":18.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":19.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":19.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":20.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":20.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":21,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":21,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":21.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":21.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":22.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":22.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":23.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":23.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":24,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":24,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":24.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":24.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":25.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":25.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":26.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":26.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":27,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":27,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":27.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":27.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":28.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":28.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":29.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":29.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":30,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":30,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":30.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":30.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":31.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":31.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":32.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":32.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":33,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":33,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":33.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":33.75,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":34.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":34.5,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":35.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":35.25,"w":1,"l":0.746,"oc":"#000000"},{"x":36.383,"y":36,"w":1,"l":0.746,"oc":"#000000"},{"x":36.75,"y":36,"w":1,"l":0.746,"oc":"#000000"}],"Fills":[{"x":29.625,"y":1.5,"w":6.874,"h":0.124,"oc":"#000000"},{"x":0,"y":1.5,"w":29.749,"h":0.124,"oc":"#000000"},{"x":32.625,"y":1.5,"w":3.78,"h":0.03,"oc":"#000000"},{"x":0,"y":3,"w":36.499,"h":0.124,"oc":"#000000"},{"x":0,"y":4.5,"w":36.405,"h":0.03,"oc":"#000000"},{"x":2.25,"y":6,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":6,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":6.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":6.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":7.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":7.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":8.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":8.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":9,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":9,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":9.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":9.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":10.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":10.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":11.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":11.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":12,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":12,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":12.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":12.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":13.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":13.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":14.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":14.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":15,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":15,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":15.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":15.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":16.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":16.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":17.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":17.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":18,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":18,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":18.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":18.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":19.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":19.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":20.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":20.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":21,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":21,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":21.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":21.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":22.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":22.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":23.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":23.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":24,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":24,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":24.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":24.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":25.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":25.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":26.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":26.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":27,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":27,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":27.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":27.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":28.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":28.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":29.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":29.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":30,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":30,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":30.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":30.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":31.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":31.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":32.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":32.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":33,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":33,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":33.75,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":33.75,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":34.5,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":34.5,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":35.25,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":35.25,"w":4.53,"h":0.03,"oc":"#000000"},{"x":2.25,"y":36,"w":29.28,"h":0.03,"oc":"#000000"},{"x":31.875,"y":36,"w":4.53,"h":0.03,"oc":"#000000"},{"x":0,"y":36.75,"w":36.499,"h":0.124,"oc":"#000000"},{"x":29.438,"y":0.75,"w":0.03,"h":2.28,"oc":"#000000"},{"x":31.875,"y":3,"w":0.03,"h":33.03,"oc":"#000000"}],"Texts":[{"x":-0.126,"y":-0.124,"w":5.446,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Schedule B","S":-1,"TS":[2,13.96,1,0]}]},{"x":11.499,"y":-0.124,"w":15.058,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Additional Dividends Statement","S":-1,"TS":[2,16,1,0]}]},{"x":32.686,"y":-0.124,"w":2.224,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"2013","S":-1,"TS":[2,17.98,1,0]}]},{"x":0.624,"y":0.6259999999999999,"w":2.779,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Part II","S":-1,"TS":[2,13.96,1,0]}]},{"x":12.999,"y":0.6259999999999999,"w":0.85,"clr":0,"sw":null,"A":"left","R":[{"T":"▶","S":-1,"TS":[2,10.98,0,0]}]},{"x":13.423,"y":0.6259999999999999,"w":17.146,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":" Attach to return (after all IRS forms)","S":44,"TS":[2,12,0,0]}]},{"x":29.502,"y":0.6080000000000001,"w":4.834,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Statement","S":-1,"TS":[2,13.64875,1,0]}]},{"x":-0.126,"y":1.376,"w":11.798,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Name(s) shown on return","S":-1,"TS":[2,10.98,0,0]}]},{"x":29.465,"y":1.23,"w":13.449,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"Your social security number","S":-1,"TS":[2,10.48125,1,0]}]},{"x":2.124,"y":3.6260000000000003,"w":8.996,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"List name of payer.","S":44,"TS":[2,12,0,0]}]},{"x":31.749,"y":3.6260000000000003,"w":3.575,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Amount","S":44,"TS":[2,12,0,0]}]},{"x":2.124,"y":35.126,"w":2.29,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":"Total","S":44,"TS":[2,12,0,0]}]},{"x":3.777,"y":35.126,"w":41.836,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .","S":-1,"TS":[2,9,0,0]}]},{"x":19.459,"y":35.126,"w":31.313,"clr":0,"sw":0.44271875,"A":"left","R":[{"T":" . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ","S":-1,"TS":[2,9,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"STMT","EN":0},"TI":1187,"AM":0,"x":32.918,"y":0.694,"w":1.797,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1188,"AM":1024,"x":1.998,"y":2.166,"w":23.603,"h":0.834},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1189,"AM":1024,"TU":"Your social security number","x":29.685,"y":2.115,"w":6.675,"h":0.885},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_1_","EN":0},"TI":1190,"AM":0,"x":2.25,"y":5.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_1_","EN":0},"TI":1191,"AM":0,"x":31.957,"y":5.139,"w":4.38,"h":0.861},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_2_","EN":0},"TI":1192,"AM":0,"x":2.25,"y":6.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_2_","EN":0},"TI":1193,"AM":0,"x":31.927,"y":6.052,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_3_","EN":0},"TI":1194,"AM":0,"x":2.296,"y":6.741,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_3_","EN":0},"TI":1195,"AM":0,"x":31.927,"y":6.802,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_4_","EN":0},"TI":1196,"AM":0,"x":2.25,"y":7.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_4_","EN":0},"TI":1197,"AM":0,"x":31.927,"y":7.552,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_5_","EN":0},"TI":1198,"AM":0,"x":2.25,"y":8.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_5_","EN":0},"TI":1199,"AM":0,"x":31.927,"y":8.303,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_6_","EN":0},"TI":1200,"AM":0,"x":2.25,"y":9.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_6_","EN":0},"TI":1201,"AM":0,"x":31.927,"y":9.053,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_7_","EN":0},"TI":1202,"AM":0,"x":2.25,"y":9.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_7_","EN":0},"TI":1203,"AM":0,"x":31.927,"y":9.803,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_8_","EN":0},"TI":1204,"AM":0,"x":2.25,"y":10.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_8_","EN":0},"TI":1205,"AM":0,"x":31.927,"y":10.553,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_9_","EN":0},"TI":1206,"AM":0,"x":2.25,"y":11.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_9_","EN":0},"TI":1207,"AM":0,"x":31.927,"y":11.303,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_10_","EN":0},"TI":1208,"AM":0,"x":2.25,"y":12.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_10_","EN":0},"TI":1209,"AM":0,"x":31.927,"y":12.053,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_11_","EN":0},"TI":1210,"AM":0,"x":2.25,"y":12.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_11_","EN":0},"TI":1211,"AM":0,"x":31.927,"y":12.803,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_12_","EN":0},"TI":1212,"AM":0,"x":2.25,"y":13.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_12_","EN":0},"TI":1213,"AM":0,"x":31.927,"y":13.553,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_13_","EN":0},"TI":1214,"AM":0,"x":2.25,"y":14.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_13_","EN":0},"TI":1215,"AM":0,"x":31.927,"y":14.303,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_14_","EN":0},"TI":1216,"AM":0,"x":2.25,"y":15.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_14_","EN":0},"TI":1217,"AM":0,"x":31.927,"y":15.053,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_15_","EN":0},"TI":1218,"AM":0,"x":2.25,"y":15.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_15_","EN":0},"TI":1219,"AM":0,"x":31.927,"y":15.803,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_16_","EN":0},"TI":1220,"AM":0,"x":2.25,"y":16.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_16_","EN":0},"TI":1221,"AM":0,"x":31.927,"y":16.552,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_17_","EN":0},"TI":1222,"AM":0,"x":2.25,"y":17.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_17_","EN":0},"TI":1223,"AM":0,"x":31.927,"y":17.302,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_18_","EN":0},"TI":1224,"AM":0,"x":2.25,"y":18.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_18_","EN":0},"TI":1225,"AM":0,"x":31.927,"y":18.052,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_19_","EN":0},"TI":1226,"AM":0,"x":2.25,"y":18.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_19_","EN":0},"TI":1227,"AM":0,"x":31.927,"y":18.802,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_20_","EN":0},"TI":1228,"AM":0,"x":2.25,"y":19.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_20_","EN":0},"TI":1229,"AM":0,"x":31.927,"y":19.552,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_21_","EN":0},"TI":1230,"AM":0,"x":2.25,"y":20.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_21_","EN":0},"TI":1231,"AM":0,"x":31.927,"y":20.302,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_22_","EN":0},"TI":1232,"AM":0,"x":2.25,"y":21.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_22_","EN":0},"TI":1233,"AM":0,"x":31.927,"y":21.052,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_23_","EN":0},"TI":1234,"AM":0,"x":2.25,"y":21.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_23_","EN":0},"TI":1235,"AM":0,"x":31.927,"y":21.802,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_24_","EN":0},"TI":1236,"AM":0,"x":2.25,"y":22.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_24_","EN":0},"TI":1237,"AM":0,"x":31.927,"y":22.552,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_25_","EN":0},"TI":1238,"AM":0,"x":2.25,"y":23.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_25_","EN":0},"TI":1239,"AM":0,"x":31.927,"y":23.302,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_26_","EN":0},"TI":1240,"AM":0,"x":2.25,"y":24.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_26_","EN":0},"TI":1241,"AM":0,"x":31.927,"y":24.052,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_27_","EN":0},"TI":1242,"AM":0,"x":2.204,"y":24.788,"w":29.287,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_27_","EN":0},"TI":1243,"AM":0,"x":31.927,"y":24.802,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_28_","EN":0},"TI":1244,"AM":0,"x":2.25,"y":25.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_28_","EN":0},"TI":1245,"AM":0,"x":31.927,"y":25.552,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_29_","EN":0},"TI":1246,"AM":0,"x":2.25,"y":26.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_29_","EN":0},"TI":1247,"AM":0,"x":31.927,"y":26.302,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_30_","EN":0},"TI":1248,"AM":0,"x":2.25,"y":27.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_30_","EN":0},"TI":1249,"AM":0,"x":31.927,"y":27.052,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_31_","EN":0},"TI":1250,"AM":0,"x":2.25,"y":27.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_31_","EN":0},"TI":1251,"AM":0,"x":31.927,"y":27.802,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_32_","EN":0},"TI":1252,"AM":0,"x":2.25,"y":28.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_32_","EN":0},"TI":1253,"AM":0,"x":31.927,"y":28.552,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_33_","EN":0},"TI":1254,"AM":0,"x":2.25,"y":29.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_33_","EN":0},"TI":1255,"AM":0,"x":31.927,"y":29.302,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_34_","EN":0},"TI":1256,"AM":0,"x":2.25,"y":30.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_34_","EN":0},"TI":1257,"AM":0,"x":31.927,"y":30.052,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_35_","EN":0},"TI":1258,"AM":0,"x":2.25,"y":30.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_35_","EN":0},"TI":1259,"AM":0,"x":31.927,"y":30.802,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_36_","EN":0},"TI":1260,"AM":0,"x":2.25,"y":31.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_36_","EN":0},"TI":1261,"AM":0,"x":31.927,"y":31.552,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_37_","EN":0},"TI":1262,"AM":0,"x":2.25,"y":32.288,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_37_","EN":0},"TI":1263,"AM":0,"x":31.927,"y":32.303,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_38_","EN":0},"TI":1264,"AM":0,"x":2.25,"y":33.038,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_38_","EN":0},"TI":1265,"AM":0,"x":31.927,"y":33.053,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_39_","EN":0},"TI":1266,"AM":0,"x":2.25,"y":33.788,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_39_","EN":0},"TI":1267,"AM":0,"x":31.927,"y":33.803,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DIV_PAYR_40_","EN":0},"TI":1268,"AM":0,"x":2.25,"y":34.538,"w":29.288,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"DIV_GD_40_","EN":0},"TI":1269,"AM":0,"x":31.927,"y":34.553,"w":4.44,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TOTAL","EN":0},"TI":1270,"AM":1024,"x":31.927,"y":35.303,"w":4.44,"h":0.833}],"Boxsets":[]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHC.json b/test/data/fd/form/FSCHC.json index 0fc9fdc8..ed50d661 100755 --- a/test/data/fd/form/FSCHC.json +++ b/test/data/fd/form/FSCHC.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":5.25,"w":1.5,"l":14.936},{"oc":"#221f1f","x":20.995,"y":5.25,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.064,"y":3,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.064,"y":5.25,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":6.75,"w":0.75,"l":70.624},{"oc":"#221f1f","x":76.682,"y":6.75,"w":3,"l":22.361},{"oc":"#221f1f","x":6.145,"y":8.25,"w":0.75,"l":70.667},{"oc":"#221f1f","x":76.553,"y":8.25,"w":3,"l":22.619},{"oc":"#221f1f","x":6.145,"y":9.75,"w":0.75,"l":70.624},{"oc":"#221f1f","x":76.682,"y":9.75,"w":0.75,"l":22.361},{"dsh":1,"oc":"#221f1f","x":41.827,"y":10.5,"w":0.75,"l":57.216},{"oc":"#221f1f","x":6.145,"y":11.25,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":66.782,"y":12,"w":0.75,"l":32.261},{"oc":"#221f1f","x":6.145,"y":15,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":15.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":74.594,"y":17.125,"w":0.75,"l":1.375},{"oc":"#221f1f","x":74.594,"y":16.625,"w":0.75,"l":1.375},{"oc":"#221f1f","x":77.92,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":17.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":18,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":18,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":18,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":18.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":19.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":19.5,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":19.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":20.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":21,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":21,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":21,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":21.75,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":22.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":29.657,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.37,"y":23.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":46.982,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":29.657,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.37,"y":24.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":46.982,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":29.657,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.37,"y":25.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":46.982,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":29.657,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.37,"y":26.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":46.982,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":29.657,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.37,"y":27,"w":0.75,"l":13.698},{"oc":"#221f1f","x":46.982,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":29.657,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.37,"y":29.25,"w":0.75,"l":13.698},{"oc":"#221f1f","x":46.982,"y":29.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":29.657,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.37,"y":30.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":46.982,"y":30.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.37,"y":31.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":46.982,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":29.657,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":29.657,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.37,"y":33,"w":0.75,"l":13.698},{"oc":"#221f1f","x":46.982,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":29.657,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":33.37,"y":33.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":46.982,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":23.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":24.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":25.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":26.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":27.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":27.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":28.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":30.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":31.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":32.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":33.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":77.92,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":81.632,"y":33.75,"w":0.75,"l":13.698},{"oc":"#221f1f","x":95.245,"y":33.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.188,"y":34.5,"w":1.125,"l":92.813},{"oc":"#221f1f","x":77.92,"y":35.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":35.25,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":35.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":36,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":36,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":36,"w":1.125,"l":3.798},{"oc":"#221f1f","x":60.595,"y":38.25,"w":0.75,"l":16.173},{"oc":"#221f1f","x":40.795,"y":39,"w":0.75,"l":22.361},{"oc":"#221f1f","x":77.92,"y":39.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":39.75,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":39.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":77.92,"y":42,"w":1.125,"l":3.798},{"oc":"#221f1f","x":81.632,"y":42,"w":1.125,"l":13.698},{"oc":"#221f1f","x":95.245,"y":42,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":46.5,"w":1.5,"l":47.111},{"oc":"#221f1f","x":53.17,"y":46.5,"w":1.5,"l":28.548},{"oc":"#221f1f","x":81.632,"y":46.5,"w":1.5,"l":17.411}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.15,"y":2.984,"w":1.5,"l":2.281},{"oc":"#221f1f","x":76.725,"y":5.219,"w":0.75,"l":1.594},{"oc":"#221f1f","x":99,"y":6.734,"w":3,"l":1.578},{"oc":"#221f1f","x":76.725,"y":6.734,"w":3,"l":1.578},{"oc":"#181616","x":84.15,"y":7.546,"w":0.75,"l":0.7},{"oc":"#181616","x":86.635,"y":7.546,"w":0.75,"l":0.7},{"oc":"#181616","x":89.121,"y":7.546,"w":0.75,"l":0.7},{"oc":"#181616","x":91.606,"y":7.546,"w":0.75,"l":0.7},{"oc":"#181616","x":94.092,"y":7.546,"w":0.75,"l":0.7},{"oc":"#181616","x":96.577,"y":7.546,"w":0.75,"l":0.7},{"oc":"#221f1f","x":76.725,"y":8.234,"w":0.75,"l":1.531},{"oc":"#181616","x":79.2,"y":9,"w":0.75,"l":0.731},{"dsh":1,"oc":"#181616","x":81.685,"y":9.075,"w":0.75,"l":0.563},{"oc":"#181616","x":84.171,"y":9,"w":0.75,"l":0.731},{"oc":"#181616","x":86.656,"y":9,"w":0.75,"l":0.731},{"oc":"#181616","x":89.141,"y":9,"w":0.75,"l":0.731},{"oc":"#181616","x":91.627,"y":9,"w":0.75,"l":0.731},{"oc":"#181616","x":93.985,"y":9,"w":0.75,"l":0.731},{"oc":"#181616","x":96.496,"y":9,"w":0.75,"l":0.731},{"oc":"#181616","x":98.956,"y":9,"w":0.75,"l":0.731},{"oc":"#221f1f","x":75.969,"y":16.625,"w":0.75,"l":0.5},{"oc":"#221f1f","x":74.594,"y":16.625,"w":0.75,"l":0.5},{"oc":"#221f1f","x":81.675,"y":15.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":15.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":17.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":17.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":17.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":17.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":17.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":17.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":17.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":20.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":20.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":20.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":29.7,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.413,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.413,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.7,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.738,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.738,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":29.7,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.413,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":29.7,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.413,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":29.7,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.413,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.413,"y":26.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":29.7,"y":26.985,"w":0.75,"l":2.281},{"oc":"#221f1f","x":50.738,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.025,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.738,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.413,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":29.7,"y":29.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.738,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.413,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.738,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":29.7,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.413,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.413,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":29.7,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.413,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":29.7,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":29.7,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.413,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.737,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":33.413,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":29.7,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.738,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.025,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":81.675,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.963,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":34.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.963,"y":35.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":35.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":35.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":35.984,"w":0.75,"l":3.789},{"oc":"#221f1f","x":77.963,"y":35.984,"w":0.75,"l":3.789},{"oc":"#221f1f","x":95.288,"y":35.984,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.288,"y":38.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":81.675,"y":39.735,"w":0.75,"l":2.289},{"oc":"#221f1f","x":77.963,"y":39.735,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.288,"y":39.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":41.234,"w":0.75,"l":0.789}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":15,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":21.75,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":29.7,"y":31.5,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":24.001,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":77.963,"y":28.501,"w":3.713,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":10.888,"y":11.857,"w":52.22999999999996,"clr":-1,"A":"left","R":[{"T":"Did%20you%20'materially%20participate'%20in%20the%20operation%20of%20this%20business%20during%202013%3F%20If%20'No'%2C%20see%20instructions%20for%20limit%20on%20losses%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.233,"y":11.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.41,"y":24.608,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"20a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.938,"y":2.009,"w":7.055999999999999,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20C%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":2.696,"w":5.9460000000000015,"clr":-1,"A":"left","R":[{"T":"(Form%201040)%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":3.7119999999999997,"w":12.783000000000007,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.213,"w":13.561000000000003,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":36.896,"y":2.225,"w":14.281000000000004,"clr":-1,"A":"left","R":[{"T":"Profit%20or%20Loss%20From%20Business%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":45.598,"y":2.757,"w":9.946000000000003,"clr":-1,"A":"left","R":[{"T":"(Sole%20Proprietorship)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":25.112,"y":3.4610000000000003,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.844,"y":4.086,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":26.114,"y":4.18,"w":39.179999999999986,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%201040NR%2C%20or%201041%3B%20partnerships%20generally%20must%20file%20Form%201065.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.741,"y":1.972,"w":9.171000000000003,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.963,"y":3.75,"w":5.892000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.963,"y":4.321,"w":6.615,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.94,"y":4.321,"w":1.112,"clr":-1,"A":"left","R":[{"T":"09","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":5.025,"w":8.614,"clr":-1,"A":"left","R":[{"T":"Name%20of%20proprietor%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.163,"y":5.025,"w":14.003999999999998,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20(SSN)","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.938,"y":6.583,"w":3.5020000000000002,"clr":-1,"A":"left","R":[{"T":"A%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":13.538,"y":6.606,"w":35.01199999999999,"clr":-1,"A":"left","R":[{"T":"Principal%20business%20or%20profession%2C%20including%20product%20or%20service%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.163,"y":6.544,"w":1.278,"clr":-1,"A":"left","R":[{"T":"B%20%20","S":-1,"TS":[0,10.440000000000001,1,0]}]},{"oc":"#221f1f","x":78.774,"y":6.545,"w":13.947000000000005,"clr":-1,"A":"left","R":[{"T":"Enter%20code%20from%20instructions%20","S":-1,"TS":[0,9.51,1,0]}]},{"oc":"#221f1f","x":82.209,"y":7.221,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.082,"w":3.5020000000000002,"clr":-1,"A":"left","R":[{"T":"C%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.779,"y":8.082,"w":26.680000000000007,"clr":-1,"A":"left","R":[{"T":"Business%20name.%20If%20no%20separate%20business%20name%2C%20leave%20blank.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.163,"y":8.025,"w":1.278,"clr":-1,"A":"left","R":[{"T":"D%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":78.723,"y":8.025,"w":12.947000000000003,"clr":-1,"A":"left","R":[{"T":"Employer%20ID%20number%20(EIN)%2C%20","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":92.674,"y":8.025,"w":5.001000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instr.)%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":5.938,"y":9.482,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"E%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":9.544,"w":20.229999999999997,"clr":-1,"A":"left","R":[{"T":"Business%20address%20(including%20suite%20or%20room%20no.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#181616","x":38.928,"y":9.544,"w":0.889,"clr":-1,"A":"left","R":[{"T":")%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#181616","x":40.048,"y":9.451,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.938,"y":10.357,"w":23.513000000000005,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20%20%20%20%20%20%20%20%20%20City%2C%20town%20or%20post%20office%2C%20state%2C%20and%20ZIP%20code%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.107,"w":0.889,"clr":-1,"A":"left","R":[{"T":"F%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":11.107,"w":9.116,"clr":-1,"A":"left","R":[{"T":"Accounting%20method%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.738,"y":11.107,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(1)%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":30.503,"y":11.107,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Cash","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.875,"y":11.107,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(2)%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":41.63,"y":11.107,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Accrual%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.25,"y":11.107,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(3)%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":54.151,"y":11.107,"w":6.835000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20(specify)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.733,"y":11.013,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.938,"y":11.857,"w":1.056,"clr":-1,"A":"left","R":[{"T":"G%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":90.072,"y":11.732,"w":1.723,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":96.236,"y":11.732,"w":1.278,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.937,"y":12.607,"w":1,"clr":-1,"A":"left","R":[{"T":"H%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.887,"y":12.607,"w":28.40300000000001,"clr":-1,"A":"left","R":[{"T":"If%20you%20started%20or%20acquired%20this%20business%20during%202013%2C%20check%20here%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.312,"y":12.607,"w":25.5,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.831,"y":12.513,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":5.938,"y":13.357,"w":0.278,"clr":-1,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":13.357,"w":43.96199999999996,"clr":-1,"A":"left","R":[{"T":"Did%20you%20make%20any%20payments%20in%202013%20that%20would%20require%20you%20to%20file%20Form(s)%201099%3F%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":71.938,"y":13.357,"w":12,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":90.072,"y":13.232,"w":1.723,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":96.236,"y":13.232,"w":1.278,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.937,"y":14.107,"w":0.556,"clr":-1,"A":"left","R":[{"T":"J","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.887,"y":14.107,"w":23.719000000000005,"clr":-1,"A":"left","R":[{"T":"If%20%22Yes%2C%22%20did%20you%20or%20will%20you%20file%20required%20Forms%201099%3F%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":45.125,"y":14.107,"w":31.5,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":90.072,"y":13.982,"w":1.723,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":96.236,"y":13.982,"w":1.278,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":6.836,"y":14.821,"w":2.668,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.363,"y":14.821,"w":3.7790000000000004,"clr":-1,"A":"left","R":[{"T":"Income%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.648,"y":15.701,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":15.670000000000002,"w":47.24299999999995,"clr":-1,"A":"left","R":[{"T":"Gross%20receipts%20or%20sales.%20See%20instructions%20for%20line%201%20and%20check%20the%20box%20if%20this%20income%20was%20reported%20to%20you%20on%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.886,"y":16.357,"w":31.173,"clr":-1,"A":"left","R":[{"T":"Form%20W-2%20and%20the%20'Statutory%20employee'%20box%20on%20that%20form%20was%20checked%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.435,"y":16.357,"w":15,"clr":-1,"A":"left","R":[{"T":".........%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":72.712,"y":16.263,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":79.187,"y":16.357,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.648,"y":17.107,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":17.107,"w":10.949000000000003,"clr":-1,"A":"left","R":[{"T":"Returns%20and%20allowances%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.563,"y":17.107,"w":37.5,"clr":-1,"A":"left","R":[{"T":".........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.187,"y":17.107,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.648,"y":17.857,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":17.857,"w":11.338000000000001,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%202%20from%20line%201","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.625,"y":17.857,"w":36,"clr":-1,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.187,"y":17.857,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.648,"y":18.607,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":18.607,"w":14.728000000000005,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20goods%20sold%20(from%20line%2042)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.75,"y":18.607,"w":33,"clr":-1,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.187,"y":18.607,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":36.875,"y":19.357,"w":30,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.187,"y":19.357,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.648,"y":20.107,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":20.107,"w":41.79599999999997,"clr":-1,"A":"left","R":[{"T":"Other%20income%2C%20including%20federal%20and%20state%20gasoline%20or%20fuel%20tax%20credit%20or%20refund%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.875,"y":20.107,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.187,"y":20.107,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":32.75,"y":20.857,"w":31.5,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":75.238,"y":20.763,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":79.187,"y":20.857,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11,1,0]}]},{"x":6.582,"y":21.572,"w":2.946,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.363,"y":21.634,"w":4.6690000000000005,"clr":-1,"A":"left","R":[{"T":"Expenses","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#221f1f","x":37.629,"y":21.572,"w":30.287999999999997,"clr":-1,"A":"left","R":[{"T":"Enter%20expenses%20for%20business%20use%20of%20your%20home%20only%20on%20line%2030.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.648,"y":22.357,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":22.357,"w":4.946000000000001,"clr":-1,"A":"left","R":[{"T":"Advertising","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":18.313,"y":22.357,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":30.924,"y":22.357,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":23.17,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":23.17,"w":13.061000000000005,"clr":-1,"A":"left","R":[{"T":"Car%20and%20truck%20expenses%20(see%20","S":-1,"TS":[0,10.76,0,0]}]},{"oc":"#221f1f","x":10.886,"y":23.857,"w":5.390000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)","S":-1,"TS":[0,10.76,0,0]}]},{"oc":"#221f1f","x":18.311,"y":23.857,"w":7.73,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,10.76,0,0]}]},{"oc":"#221f1f","x":30.924,"y":23.857,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.884,"y":24.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":24.607,"w":10.114,"clr":-1,"A":"left","R":[{"T":"Commissions%20and%20fees","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.461,"y":24.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":30.542,"y":24.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.884,"y":25.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":25.357,"w":14.171000000000005,"clr":-1,"A":"left","R":[{"T":"Contract%20labor%20(see%20instructions)","S":-1,"TS":[0,10.04,0,0]}]},{"oc":"#221f1f","x":30.542,"y":25.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.884,"y":26.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":26.107,"w":4.502000000000001,"clr":-1,"A":"left","R":[{"T":"Depletion%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":18.313,"y":26.107,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":30.542,"y":26.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.884,"y":26.707,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":26.707,"w":13.229000000000005,"clr":-1,"A":"left","R":[{"T":"Depreciation%20and%20section%20179%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.889,"y":27.27,"w":10.673000000000005,"clr":-1,"A":"left","R":[{"T":"expense%20deduction%20(not%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.889,"y":27.832,"w":10.838000000000006,"clr":-1,"A":"left","R":[{"T":"included%20in%20Part%20III)%20(see%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.395,"w":5.668000000000001,"clr":-1,"A":"left","R":[{"T":"instructions).","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":30.542,"y":28.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.884,"y":29.17,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":29.17,"w":12.505000000000003,"clr":-1,"A":"left","R":[{"T":"Employee%20benefit%20programs%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":29.857,"w":10.061000000000003,"clr":-1,"A":"left","R":[{"T":"(other%20than%20on%20line%2019).","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.402,"y":29.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":30.542,"y":29.857,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.884,"y":30.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":30.607,"w":13.118000000000006,"clr":-1,"A":"left","R":[{"T":"Insurance%20(other%20than%20health)%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":30.542,"y":30.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.884,"y":31.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":31.357,"w":3.6130000000000004,"clr":-1,"A":"left","R":[{"T":"Interest%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.413,"y":32.107,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":32.107,"w":13.284000000000008,"clr":-1,"A":"left","R":[{"T":"Mortgage%20(paid%20to%20banks%2C%20etc.)","S":-1,"TS":[0,10.36,0,0]}]},{"oc":"#221f1f","x":30.147,"y":32.107,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"16a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.413,"y":32.857,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":32.857,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"Other","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":16.25,"y":32.857,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":30.122,"y":32.857,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"16b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.884,"y":33.576,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":33.576,"w":14.284000000000004,"clr":-1,"A":"left","R":[{"T":"Legal%20and%20professional%20services%20","S":-1,"TS":[0,10.04,0,0]}]},{"oc":"#221f1f","x":30.542,"y":33.607,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.434,"y":22.358,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.438,"y":22.358,"w":14.561000000000005,"clr":-1,"A":"left","R":[{"T":"Office%20expense%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.804,"y":22.358,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":51.434,"y":23.108,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.438,"y":23.108,"w":14.340000000000003,"clr":-1,"A":"left","R":[{"T":"Pension%20and%20profit-sharing%20plans","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":75.826,"y":23.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":78.804,"y":23.108,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":51.434,"y":23.858,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.438,"y":23.858,"w":14.116000000000007,"clr":-1,"A":"left","R":[{"T":"Rent%20or%20lease%20(see%20instructions)%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":52.963,"y":24.608,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.438,"y":24.608,"w":16.396,"clr":-1,"A":"left","R":[{"T":"Vehicles%2C%20machinery%2C%20and%20equipment%20","S":-1,"TS":[0,10.52,0,0]}]},{"oc":"#221f1f","x":52.963,"y":25.358,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.438,"y":25.358,"w":10.671000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20business%20property","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":71.762,"y":25.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":73.824,"y":25.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":75.887,"y":25.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.384,"y":25.358,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"20b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":51.434,"y":26.108,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.438,"y":26.108,"w":11.394000000000005,"clr":-1,"A":"left","R":[{"T":"Repairs%20and%20maintenance","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":71.941,"y":26.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.003,"y":26.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.066,"y":26.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.804,"y":26.108,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":51.434,"y":26.858,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.438,"y":26.858,"w":14.45100000000001,"clr":-1,"A":"left","R":[{"T":"Supplies%20(not%20included%20in%20Part%20III)","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":76.094,"y":26.858,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":78.804,"y":26.858,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":51.434,"y":27.608,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.438,"y":27.608,"w":8.559000000000001,"clr":-1,"A":"left","R":[{"T":"Taxes%20and%20licenses","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":67.813,"y":27.608,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.804,"y":27.608,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":51.434,"y":28.358,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"24%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.438,"y":28.358,"w":14.895000000000003,"clr":-1,"A":"left","R":[{"T":"Travel%2C%20meals%2C%20and%20entertainment%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":52.963,"y":29.108,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.438,"y":29.108,"w":2.778,"clr":-1,"A":"left","R":[{"T":"Travel","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.563,"y":29.108,"w":13.5,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.41,"y":29.108,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"24a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":52.963,"y":29.921,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.438,"y":29.921,"w":10.449000000000003,"clr":-1,"A":"left","R":[{"T":"Deductible%20meals%20and%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.438,"y":30.608,"w":14.005000000000004,"clr":-1,"A":"left","R":[{"T":"entertainment%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.066,"y":30.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.384,"y":30.608,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"24b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":51.434,"y":31.357999999999997,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.438,"y":31.357999999999997,"w":3.222,"clr":-1,"A":"left","R":[{"T":"Utilities","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":61.625,"y":31.357999999999997,"w":12,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.804,"y":31.357999999999997,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":51.434,"y":32.108,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.438,"y":32.108,"w":15.059000000000005,"clr":-1,"A":"left","R":[{"T":"Wages%20(less%20employment%20credits).","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.804,"y":32.108,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":51.434,"y":32.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":52.963,"y":32.857,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.438,"y":32.857,"w":13.783000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20expenses%20(from%20line%2048)%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.07,"y":32.857,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.41,"y":32.857,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"27a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":52.963,"y":33.607,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":55.438,"y":33.607,"w":11.225000000000001,"clr":-1,"A":"left","R":[{"T":"Reserved%20for%20future%20use","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":71.964,"y":33.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":74.027,"y":33.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":76.089,"y":33.607,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.384,"y":33.607,"w":1.723,"clr":-1,"A":"left","R":[{"T":"27b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":20.511,"y":34.357,"w":29.96100000000001,"clr":-1,"A":"left","R":[{"T":"before%20expenses%20for%20business%20use%20of%20home.%20Add%20lines%208%20through%2027a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.688,"y":34.357,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":75.225,"y":34.264,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":78.804,"y":34.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.884,"y":35.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":35.107,"w":22.953000000000007,"clr":-1,"A":"left","R":[{"T":"Tentative%20profit%20or%20(loss).%20Subtract%20line%2028%20from%20line%207","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.063,"y":35.107,"w":25.5,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.804,"y":35.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"29%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.884,"y":35.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":35.919,"w":45.35499999999996,"clr":-1,"A":"left","R":[{"T":"Expenses%20for%20business%20use%20of%20your%20home.%20Do%20not%20report%20these%20expenses%20elsewhere.%20Attach%20Form%208829%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.894,"y":36.607,"w":23.175000000000008,"clr":-1,"A":"left","R":[{"T":"unless%20using%20the%20simplified%20method%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":42.961,"y":36.607,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":38.145,"w":21.34400000000001,"clr":-1,"A":"left","R":[{"T":"and%20(b)%20the%20part%20of%20your%20home%20used%20for%20business%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.206,"y":38.107,"w":8.614000000000004,"clr":-1,"A":"left","R":[{"T":".%20Use%20the%20Simplified","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":38.857,"w":34.184,"clr":-1,"A":"left","R":[{"T":"Method%20Worksheet%20in%20the%20instructions%20to%20figure%20the%20amount%20to%20enter%20on%20line%2030%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":59.563,"y":38.857,"w":13.5,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.804,"y":38.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":68.571,"y":40.42,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":73.411,"y":41.336,"w":0.334,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[0,17.28,0,0]}]},{"oc":"#221f1f","x":78.804,"y":41.107,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.884,"y":42.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":42.607,"w":43.01799999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20a%20loss%2C%20check%20the%20box%20that%20describes%20your%20investment%20in%20this%20activity%20(see%20instructions).%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":73.423,"y":44.759,"w":0.334,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[0,17,0,0]}]},{"oc":"#221f1f","x":78.41,"y":43.982,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"32a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":83.54,"y":43.982,"w":10.725000000000001,"clr":-1,"A":"left","R":[{"T":"All%20investment%20is%20at%20risk.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.385,"y":44.732,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"32b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":83.54,"y":44.615,"w":10.949000000000003,"clr":-1,"A":"left","R":[{"T":"Some%20investment%20is%20not%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.54,"y":45.215,"w":3.223,"clr":-1,"A":"left","R":[{"T":"at%20risk.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.938,"y":46.357,"w":40.20000000000005,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20the%20separate%20instructions.%20","S":-1,"TS":[3,11,1,0]}]},{"oc":"#221f1f","x":62.736,"y":46.375,"w":7.671000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011334P%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.126,"y":46.375,"w":16.799999999999997,"clr":-1,"A":"left","R":[{"T":"Schedule%20C%20(Form%201040)%202013%20","S":-1,"TS":[3,10,1,0]}]},{"x":18.383,"y":28.352,"w":29.009999999999994,"clr":0,"A":"left","R":[{"T":"Form%204562","S":51,"TS":[0,9,0,0]}]},{"x":7.378,"y":6.604,"w":55.56,"clr":0,"A":"left","R":[{"T":"REQUIRED%3A","S":-1,"TS":[0,8.90278,0,0]}]},{"oc":"#221f1f","x":85.825,"y":3.2670000000000003,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":26.383,"y":3.5549999999999997,"w":38.45299999999996,"clr":-1,"A":"left","R":[{"T":"For%20information%20on%20Schedule%20C%20and%20its%20instructions%2C%20go%20towww.irs.gov%2Fschedulec.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.883,"y":34.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.716,"y":34.357,"w":7.503,"clr":-1,"A":"left","R":[{"T":"Total%20expenses%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.883,"y":39.607,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.878,"y":41.107,"w":43.63299999999995,"clr":-1,"A":"left","R":[{"T":"(If%20you%20checked%20the%20box%20on%20line%201%2C%20see%20instructions).%20Estates%20and%20trusts%2C%20enter%20on%20Form%201041%2C%20line%203.%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":10.888,"y":39.607,"w":8.945000000000004,"clr":-1,"A":"left","R":[{"T":"Net%20profit%20or%20(loss).","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":22.539,"y":39.607,"w":13.284000000000006,"clr":-1,"A":"left","R":[{"T":"%20Subtract%20line%2030%20from%20line%2029.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":37.295,"w":14.003000000000005,"clr":-1,"A":"left","R":[{"T":"Simplified%20method%20filers%20only%3A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":28.838,"y":37.295,"w":21.512000000000004,"clr":-1,"A":"left","R":[{"T":"%20enter%20the%20total%20square%20footage%20of%3A%20(a)%20your%20home%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":40.42,"w":11.730000000000002,"clr":-1,"A":"left","R":[{"T":"%E2%82%AC%20%20If%20a%20profit%2C%20enter%20on%20both%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":25.336,"y":40.42,"w":8.671000000000003,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2012","S":-1,"TS":[0,10.68,1,0]}]},{"oc":"#221f1f","x":36.253,"y":40.42,"w":1.778,"clr":-1,"A":"left","R":[{"T":"%20(or%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":38.621,"y":40.42,"w":10.115000000000002,"clr":-1,"A":"left","R":[{"T":"Form%201040NR%2C%20line%2013","S":-1,"TS":[0,10.68,1,0]}]},{"oc":"#221f1f","x":51.595,"y":40.42,"w":3.947,"clr":-1,"A":"left","R":[{"T":")%20and%20on%20","S":-1,"TS":[0,10.68,0,0]}]},{"oc":"#221f1f","x":56.868,"y":40.42,"w":9.171000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20SE%2C%20line%202","S":-1,"TS":[0,10.68,1,0]}]},{"oc":"#221f1f","x":10.888,"y":41.857,"w":7.004000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%82%AC%20%20If%20a%20loss%2C%20you%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.659,"y":41.857,"w":2.6670000000000003,"clr":-1,"A":"left","R":[{"T":"must%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.021,"y":41.857,"w":6.004000000000001,"clr":-1,"A":"left","R":[{"T":"%20go%20to%20line%2032.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":43.482,"w":19.957000000000008,"clr":-1,"A":"left","R":[{"T":"%E2%82%AC%20%20If%20you%20checked%2032a%2C%20enter%20the%20loss%20on%20both%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.006,"y":43.482,"w":8.671000000000003,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2012","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":46.992,"y":43.482,"w":2.056,"clr":-1,"A":"left","R":[{"T":"%2C%20(or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":49.788,"y":43.482,"w":10.115000000000002,"clr":-1,"A":"left","R":[{"T":"Form%201040NR%2C%20line%2013","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":62.759,"y":43.482,"w":2.557,"clr":-1,"A":"left","R":[{"T":")%20and%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":20.857,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":20.857,"w":7.225000000000001,"clr":-1,"A":"left","R":[{"T":"Gross%20income.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":20.306,"y":20.857,"w":8.283,"clr":-1,"A":"left","R":[{"T":"%20Add%20lines%205%20and%206%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.648,"y":19.357,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":19.357,"w":6.557000000000002,"clr":-1,"A":"left","R":[{"T":"Gross%20profit.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":19.136,"y":19.357,"w":11.616000000000001,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%204%20from%20line%203%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":44.17,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"on%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":12.63,"y":44.17,"w":9.171000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20SE%2C%20line%202","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":24.457,"y":44.17,"w":34.35199999999999,"clr":-1,"A":"left","R":[{"T":".%20If%20you%20checked%20the%20box%20on%20line%201%2C%20(see%20the%20line%2031%20instructions).%20Estates%20and%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.887,"y":44.857,"w":6.948,"clr":-1,"A":"left","R":[{"T":"trusts%2C%20enter%20on%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":19.924,"y":44.857,"w":8.115000000000002,"clr":-1,"A":"left","R":[{"T":"Form%201041%2C%20line%203","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":30.451,"y":44.857,"w":0.556,"clr":-1,"A":"left","R":[{"T":".%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.887,"y":45.576,"w":11.952000000000007,"clr":-1,"A":"left","R":[{"T":"%E2%82%AC%20%20If%20you%20checked%2032b%2C%20you%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.117,"y":45.576,"w":2.3890000000000002,"clr":-1,"A":"left","R":[{"T":"must","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":29.269,"y":45.576,"w":3.2800000000000002,"clr":-1,"A":"left","R":[{"T":"%20attach%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.607,"y":45.576,"w":5.002,"clr":-1,"A":"left","R":[{"T":"Form%206198","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":40.083,"y":45.576,"w":12.004000000000001,"clr":-1,"A":"left","R":[{"T":".%20Your%20loss%20may%20be%20limited.%20","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8182,"AM":0,"x":6.188,"y":5.875,"w":70.281,"h":0.875,"TU":"Name of proprietor."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8183,"AM":0,"x":76.725,"y":5.875,"w":22.275,"h":0.875,"TU":"Social security number (SSN)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A","EN":0},"TI":8184,"AM":0,"x":6.123,"y":7.469,"w":70.409,"h":0.833,"TU":"Line A. Required. Principal business or profession, including product or service (see instructions)."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"B","EN":0},"TI":8185,"AM":0,"x":84.274,"y":7.5,"w":14.726,"h":0.833,"TU":"Line B. Enter code from instructions. 6 Digits.","MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"C","EN":0},"TI":8186,"AM":0,"x":6.188,"y":8.992,"w":70.345,"h":0.833,"TU":"Line C. Business name. If no separate business name, leave blank."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"D","EN":0},"TI":8187,"AM":0,"x":76.725,"y":8.875,"w":22.275,"h":0.875,"TU":"Line D. Employer I D number (E I N), (see instructions). 9 Digits.","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EA","EN":0},"TI":8188,"AM":0,"x":41.87,"y":9.75,"w":57.13,"h":0.833,"TU":"Line E. Business address (including suite or room number)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":8189,"AM":0,"x":41.868,"y":10.523,"w":29.746,"h":0.833,"TU":"Line E. City, town or post office."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":8190,"AM":0,"x":76.658,"y":10.415,"w":4.516,"h":0.902,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":8191,"AM":0,"x":86.818,"y":10.551,"w":12.23,"h":0.833,"TU":"Zip Code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FD","EN":0},"TI":8195,"AM":0,"x":66.44,"y":11.262,"w":32.549,"h":0.833,"TU":"Line F. (3) Other. (Specify)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":8204,"AM":0,"x":81.611,"y":16.5,"w":13.613,"h":0.833,"TU":"Line 1. Gross receipts or sales. See instructions for line 1 and check the box if this income was reported to you on Form W-2 and the \"Statutory employee\" box on that form was checked."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":8205,"AM":0,"x":81.6,"y":17.25,"w":13.613,"h":0.833,"TU":"Line 2. Returns and allowances. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":8206,"AM":1024,"x":81.675,"y":18,"w":13.612,"h":0.833,"TU":"Line 3. Subtract line 2 from line 1. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":8207,"AM":1024,"x":81.675,"y":18.75,"w":13.612,"h":0.833,"TU":"Line 4. Cost of goods sold (from line 42). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":8208,"AM":1024,"x":81.675,"y":19.473,"w":13.612,"h":0.833,"TU":"Line 5. Gross profit. Subtract line 4 from line 3. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":8209,"AM":0,"x":81.675,"y":20.25,"w":13.612,"h":0.833,"TU":"Line 6. Other income, including federal and state gasoline or fuel tax credit or refund (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":8210,"AM":1024,"x":81.675,"y":20.973,"w":13.612,"h":0.833,"TU":"Line 7. Gross income. Add lines 5 and 6. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":8211,"AM":0,"x":33.413,"y":22.5,"w":13.613,"h":0.833,"TU":"Line 8. Advertising. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":8212,"AM":0,"x":33.487,"y":24,"w":13.612,"h":0.833,"TU":"Line 9. Car and truck expenses (see instructions)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":8213,"AM":0,"x":33.413,"y":24.75,"w":13.613,"h":0.833,"TU":"Line 10. Commissions and fees. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRLBR","EN":0},"TI":8214,"AM":0,"x":33.413,"y":25.5,"w":13.613,"h":0.833,"TU":"Line 11. Contract labor (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":8215,"AM":0,"x":33.413,"y":26.25,"w":13.613,"h":0.833,"TU":"Line 12. Depletion. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":8216,"AM":0,"x":33.487,"y":28.5,"w":13.612,"h":0.833,"TU":"Line 13. Depreciation and section 179 expense deduction (not included in part 3) (see instructions). Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4562C"}},"id":{"Id":"Add_F4562C","EN":0},"TI":8217,"AM":0,"x":24.223,"y":28.671,"w":3.903,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":8218,"AM":0,"x":33.562,"y":29.973,"w":13.484,"h":0.833,"TU":"Line 14. Employee benefit programs (other than on line 19). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":8219,"AM":0,"x":33.413,"y":30.723,"w":13.613,"h":0.833,"TU":"Line 15. Insurance (other than health). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16A","EN":0},"TI":8220,"AM":0,"x":33.413,"y":32.25,"w":13.613,"h":0.833,"TU":"Line 16a. Interest: Mortgage (paid to banks, etcetera). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16B","EN":0},"TI":8221,"AM":0,"x":33.413,"y":33,"w":13.613,"h":0.833,"TU":"Line 16b. Interest: Other. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":8222,"AM":0,"x":33.413,"y":33.75,"w":13.613,"h":0.833,"TU":"Line 17. Legal and professional services. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":8223,"AM":0,"x":81.675,"y":22.501,"w":13.612,"h":0.833,"TU":"Line 18. Office expense (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":8224,"AM":0,"x":81.675,"y":23.251,"w":13.612,"h":0.833,"TU":"Line 19. Pension and profit-sharing plans. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20A3","EN":0},"TI":8225,"AM":0,"x":81.675,"y":24.751,"w":13.612,"h":0.833,"TU":"Line 20. Rent or lease (see instructions): a. Vehicles, machinery, and equipment. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20B","EN":0},"TI":8226,"AM":0,"x":81.675,"y":25.501,"w":13.612,"h":0.833,"TU":"Line 20. b. other business property. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":8227,"AM":0,"x":81.675,"y":26.251,"w":13.612,"h":0.833,"TU":"Line 21. Repairs and maintenance. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":8228,"AM":0,"x":81.825,"y":26.974,"w":13.42,"h":0.833,"TU":"Line 22. Supplies (not included in Part 3). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":8229,"AM":0,"x":81.675,"y":27.751,"w":13.612,"h":0.833,"TU":"Line 23. Taxes and licenses. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24A","EN":0},"TI":8230,"AM":0,"x":81.675,"y":29.251,"w":13.612,"h":0.833,"TU":"Line 24. Travel, meals, and entertainment: a. Travel. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24D","EN":0},"TI":8231,"AM":0,"x":81.675,"y":30.751,"w":13.612,"h":0.833,"TU":"Line 24. b. Deductible meals and entertainment (see instructions). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":8232,"AM":0,"x":81.675,"y":31.474,"w":13.612,"h":0.833,"TU":"Line 25. Utilities. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":8233,"AM":0,"x":81.675,"y":32.251,"w":13.612,"h":0.833,"TU":"Line 26. Wages (less employment credits). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":8234,"AM":1024,"x":81.675,"y":33,"w":13.612,"h":0.833,"TU":"Line 27a. Other expenses (from line 48). Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":8235,"AM":1024,"x":81.75,"y":34.5,"w":13.612,"h":0.833,"TU":"Line 28. Total expenses before expenses for business use of home. Add lines 8 through 27a. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":8236,"AM":1024,"x":81.675,"y":35.25,"w":13.612,"h":0.833,"TU":"Line 29. Tentative profit or (loss). Subtract line 28 from line 7. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8829"}},"id":{"Id":"Add_F8829","EN":0},"TI":8237,"AM":0,"x":71.232,"y":36.72,"w":4.814,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":8238,"AM":0,"x":81.75,"y":39,"w":13.612,"h":0.833,"TU":"Line 30. Expenses for business use of your home. Do not report these expenses elsewhere. Attach Form 8829 unless using the simplified method (see instructions). Use the Simplified Method Worksheet in the instructions to figure the amount to enter on line 30. Dollars."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L31A","EN":0},"TI":8239,"AM":0,"x":72.21,"y":40.985,"w":5.82,"h":0.976},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":8240,"AM":0,"x":81.675,"y":41.081,"w":13.612,"h":0.919,"TU":"Line 31. Net profit or (loss). Subtract line 30 from line 29. If a profit, enter on both Form 1040, line 12 (or Form 1040NR, line 13) and on Schedule S E, line 2. (If you checked the box on line 1, see instructions). Estates and trusts, enter on Form 1041, line 3. If a loss, you must go to line 32. Dollars."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6198C"}},"id":{"Id":"Add_F6198C","EN":0},"TI":8243,"AM":0,"x":63.113,"y":45.667,"w":5.562,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1","EN":0},"TI":8192,"AM":0,"x":28.674,"y":11.2,"w":1.821,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F2","EN":0},"TI":8193,"AM":0,"x":39.919,"y":11.305,"w":1.682,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F3","EN":0},"TI":8194,"AM":0,"x":52.103,"y":11.278,"w":1.756,"h":0.833,"checked":false}],"id":{"Id":"FRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GIY","EN":0},"TI":8196,"AM":0,"x":88.045,"y":11.915,"w":1.97,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GIN","EN":0},"TI":8197,"AM":0,"x":94.446,"y":11.956,"w":1.727,"h":0.833,"checked":false}],"id":{"Id":"GIRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HX","EN":0},"TI":8198,"AM":0,"x":88.225,"y":12.73,"w":1.899,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQDY","EN":0},"TI":8199,"AM":0,"x":88.195,"y":13.44,"w":1.82,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQDN","EN":0},"TI":8200,"AM":0,"x":94.389,"y":13.447,"w":1.933,"h":0.833,"checked":false}],"id":{"Id":"REQDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099Y","EN":0},"TI":8201,"AM":0,"x":88.326,"y":14.236,"w":1.52,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099N","EN":0},"TI":8202,"AM":0,"x":94.372,"y":14.25,"w":1.707,"h":0.833,"checked":false}],"id":{"Id":"F1099RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GROSSB","EN":0},"TI":8203,"AM":0,"x":74.247,"y":16.509,"w":2.345,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32A","EN":0},"TI":8241,"AM":0,"x":81.381,"y":44.148,"w":2.013,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32B","EN":0},"TI":8242,"AM":0,"x":81.456,"y":44.877,"w":1.896,"h":0.833,"checked":false}],"id":{"Id":"L32RB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":3,"w":1.5,"l":86.711},{"oc":"#221f1f","x":92.77,"y":3,"w":1.5,"l":6.273},{"oc":"#221f1f","x":6.145,"y":3.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":76.682,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":9,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":9,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":10.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":12,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":12,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":13.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":15,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":15,"w":1.125,"l":14.936},{"oc":"#221f1f","x":95.245,"y":15,"w":1.125,"l":3.798},{"oc":"#221f1f","x":76.682,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":16.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":16.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":76.682,"y":18,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.395,"y":18,"w":1.125,"l":14.936},{"oc":"#221f1f","x":95.245,"y":18,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":19.5,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":21.75,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":65.545,"y":23.25,"w":0.75,"l":6.273},{"dsh":1,"oc":"#221f1f","x":71.732,"y":23.25,"w":0.75,"l":5.036},{"dsh":1,"oc":"#221f1f","x":76.682,"y":23.25,"w":0.75,"l":5.036},{"dsh":1,"oc":"#221f1f","x":17.799,"y":26.25,"w":0.75,"l":16.894},{"dsh":1,"oc":"#221f1f","x":56.962,"y":26.25,"w":0.75,"l":16.094},{"dsh":1,"oc":"#221f1f","x":80.371,"y":26.25,"w":0.75,"l":18.672},{"oc":"#221f1f","x":6.145,"y":32.25,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":33,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":7.382,"y":34.5,"w":0.75,"l":71.861},{"oc":"#221f1f","x":80.395,"y":34.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":34.5,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":7.382,"y":36,"w":0.75,"l":71.861},{"oc":"#221f1f","x":80.395,"y":36,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":36,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":7.382,"y":37.5,"w":0.75,"l":71.861},{"oc":"#221f1f","x":80.395,"y":37.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":37.5,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":7.382,"y":39,"w":0.75,"l":71.861},{"oc":"#221f1f","x":80.395,"y":39,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":39,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":7.382,"y":40.5,"w":0.75,"l":71.861},{"oc":"#221f1f","x":80.395,"y":40.5,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":40.5,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":7.382,"y":42,"w":0.75,"l":71.861},{"oc":"#221f1f","x":80.395,"y":42,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":42,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":7.382,"y":43.501,"w":0.75,"l":71.861},{"oc":"#221f1f","x":80.395,"y":43.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":43.501,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":7.382,"y":45.001,"w":0.75,"l":71.861},{"oc":"#221f1f","x":80.395,"y":45.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":95.245,"y":45.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":46.501,"w":1.125,"l":74.336},{"oc":"#221f1f","x":80.395,"y":46.501,"w":1.125,"l":14.936},{"oc":"#221f1f","x":95.245,"y":46.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.145,"y":47.25,"w":1.5,"l":92.899},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":2.398},{"oc":"#221f1f","x":0.086,"y":48.542,"w":0.75,"l":2.398}],"VLines":[{"oc":"#221f1f","x":80.438,"y":8.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.725,"y":8.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":8.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":8.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":8.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":9.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":10.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":10.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":11.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":11.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":11.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":13.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.725,"y":13.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":13.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":14.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":14.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":14.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":15.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":16.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.725,"y":16.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":16.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":17.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.438,"y":17.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":17.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":17.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":37.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":37.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":38.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":38.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":41.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":41.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":43.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":43.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":44.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":44.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":76.725,"y":46.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":46.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":46.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":2.484,"y":48.542,"w":0.75,"l":0.926},{"oc":"#221f1f","x":0.086,"y":48.542,"w":0.75,"l":0.926}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":3,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":19.5,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":32.25,"w":6.188,"h":0.75,"clr":-1},{"x":0,"y":48.511,"w":2.57,"h":0.989,"clr":31},{"oc":"#7f7f7f","x":0.172,"y":48.574,"w":2.226,"h":0.864,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.574,"w":2.226,"h":0.864,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.983,"w":1.4,"h":0.454,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.983,"w":1.4,"h":0.454,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":13.598000000000008,"clr":-1,"A":"left","R":[{"T":"Schedule%20C%20(Form%201040)%202013%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.698,"y":2.009,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.795,"y":2.009,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":10,"TS":[0,14,1,0]}]},{"x":6.329,"y":2.821,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.6,"y":2.821,"w":9.890000000000002,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20Goods%20Sold%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":31.5,"y":2.821,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.884,"y":4.42,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":4.42,"w":8.373000000000003,"clr":-1,"A":"left","R":[{"T":"Method(s)%20used%20to%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":5.107,"w":10.742,"clr":-1,"A":"left","R":[{"T":"value%20closing%20inventory%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":29.45,"y":5.107,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":34.521,"y":5.107,"w":2.3890000000000002,"clr":-1,"A":"left","R":[{"T":"Cost%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.825,"y":5.107,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":46.775,"y":5.107,"w":10.945000000000002,"clr":-1,"A":"left","R":[{"T":"Lower%20of%20cost%20or%20market%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.338,"y":5.107,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":70.288,"y":5.107,"w":11.817000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20(attach%20explanation)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.884,"y":5.919,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"34%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":5.919,"w":49.102999999999966,"clr":-1,"A":"left","R":[{"T":"Was%20there%20any%20change%20in%20determining%20quantities%2C%20costs%2C%20or%20valuations%20between%20opening%20and%20closing%20inventory%3F%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":6.607,"w":12.168000000000003,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20attach%20explanation","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.625,"y":6.607,"w":39,"clr":-1,"A":"left","R":[{"T":"..........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.132,"y":6.482,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":95.038,"y":6.482,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.884,"y":8.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":8.107,"w":42.11599999999997,"clr":-1,"A":"left","R":[{"T":"Inventory%20at%20beginning%20of%20year.%20If%20different%20from%20last%20year%E2%80%99s%20closing%20inventory%2C%20attach%20explanation","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.876,"y":8.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":71.939,"y":8.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.001,"y":8.107,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.567,"y":8.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.884,"y":9.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":9.607,"w":25.186,"clr":-1,"A":"left","R":[{"T":"Purchases%20less%20cost%20of%20items%20withdrawn%20for%20personal%20use","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.188,"y":9.607,"w":21,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.567,"y":9.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.884,"y":11.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":11.107,"w":26.08000000000001,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20labor.%20Do%20not%20include%20any%20amounts%20paid%20to%20yourself","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.188,"y":11.107,"w":21,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.567,"y":11.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.884,"y":12.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":12.607,"w":10.039,"clr":-1,"A":"left","R":[{"T":"Materials%20and%20supplies","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.563,"y":12.607,"w":36,"clr":-1,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.567,"y":12.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.884,"y":14.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":14.107,"w":5.205000000000001,"clr":-1,"A":"left","R":[{"T":"Other%20costs","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":18.313,"y":14.107,"w":42,"clr":-1,"A":"left","R":[{"T":"............................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.567,"y":14.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.884,"y":15.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":15.607,"w":10.671,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2035%20through%2039","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.563,"y":15.607,"w":36,"clr":-1,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.567,"y":15.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.884,"y":17.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":17.107,"w":10.557000000000002,"clr":-1,"A":"left","R":[{"T":"Inventory%20at%20end%20of%20year","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.563,"y":17.107,"w":36,"clr":-1,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.567,"y":17.107,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.884,"y":18.545,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":18.545,"w":9.890000000000002,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20goods%20sold.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.573,"y":18.545,"w":28.175000000000008,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2041%20from%20line%2040.%20Enter%20the%20result%20here%20and%20on%20line%204","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.688,"y":18.545,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.567,"y":18.607,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":-1,"TS":[0,11,1,0]}]},{"x":6.294,"y":19.321,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.6,"y":19.446,"w":14.170000000000003,"clr":-1,"A":"left","R":[{"T":"Information%20on%20Your%20Vehicle.%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":37.645,"y":19.446,"w":8.558000000000002,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":50.292,"y":19.446,"w":2.334,"clr":-1,"A":"left","R":[{"T":"only%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":14.6,"y":20.134,"w":48.93899999999995,"clr":-1,"A":"left","R":[{"T":"and%20are%20not%20required%20to%20file%20Form%204562%20for%20this%20business.%20See%20the%20instructions%20for%20line%2013%20to%20find%20out%20if%20you%20must%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.6,"y":20.821,"w":6.947000000000001,"clr":-1,"A":"left","R":[{"T":"file%20Form%204562.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.884,"y":22.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":22.357,"w":38.32299999999998,"clr":-1,"A":"left","R":[{"T":"When%20did%20you%20place%20your%20vehicle%20in%20service%20for%20business%20purposes%3F%20(month%2C%20day%2C%20year)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.441,"y":22.221,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":71.578,"y":22.339,"w":0.611,"clr":-1,"A":"left","R":[{"T":"%2F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.533,"y":22.339,"w":0.611,"clr":-1,"A":"left","R":[{"T":"%2F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.884,"y":23.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":23.857,"w":52.44099999999995,"clr":-1,"A":"left","R":[{"T":"Of%20the%20total%20number%20of%20miles%20you%20drove%20your%20vehicle%20during%202013%2C%20enter%20the%20number%20of%20miles%20you%20used%20your%20vehicle%20for%3A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.413,"y":25.357,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":25.294,"w":4.334,"clr":-1,"A":"left","R":[{"T":"Business%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":35.638,"y":25.294,"w":1.167,"clr":-1,"A":"left","R":[{"T":"b%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":37.242,"y":25.294,"w":13.337000000000002,"clr":-1,"A":"left","R":[{"T":"Commuting%20(see%20instructions)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74,"y":25.294,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":75.172,"y":25.294,"w":3.0570000000000004,"clr":-1,"A":"left","R":[{"T":"%20Other%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.884,"y":26.857,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":26.857,"w":29.52200000000001,"clr":-1,"A":"left","R":[{"T":"Was%20your%20vehicle%20available%20for%20personal%20use%20during%20off-duty%20hours%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.375,"y":26.857,"w":22.5,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.878,"y":26.732,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":94.983,"y":26.732,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.884,"y":28.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"46%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":28.357,"w":32.373999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20you%20(or%20your%20spouse)%20have%20another%20vehicle%20available%20for%20personal%20use%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.438,"y":28.357,"w":21,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.375,"y":28.232,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":95.038,"y":28.232,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.884,"y":29.857,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"47a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":29.857,"w":22.358000000000008,"clr":-1,"A":"left","R":[{"T":"Do%20you%20have%20evidence%20to%20support%20your%20deduction%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.063,"y":29.857,"w":30,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.477,"y":29.732,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":94.78,"y":29.732,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.412,"y":31.293999999999997,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.887,"y":31.293999999999997,"w":14.501000000000005,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20is%20the%20evidence%20written%3F","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.75,"y":31.293999999999997,"w":37.5,"clr":-1,"A":"left","R":[{"T":".........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":86.359,"y":31.232,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":94.808,"y":31.232,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No%20","S":-1,"TS":[0,11,1,0]}]},{"x":6.548,"y":32.071,"w":3.168,"clr":1,"A":"left","R":[{"T":"Part%20V%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.6,"y":32.071,"w":8.448,"clr":-1,"A":"left","R":[{"T":"Other%20Expenses.%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":28.194,"y":32.071,"w":30.285000000000007,"clr":-1,"A":"left","R":[{"T":"List%20below%20business%20expenses%20not%20included%20on%20lines%208%E2%80%9326%20or%20line%2030.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.884,"y":46.295,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"48%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":46.295,"w":10.837000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20other%20expenses.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":24.778,"y":46.295,"w":11.707000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20here%20and%20on%20line%2027a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.063,"y":46.295,"w":24,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.567,"y":46.357,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"48%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":82.126,"y":47.125,"w":14.17200000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20C%20(Form%201040)%202013%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":54.174,"y":19.446,"w":22.231000000000012,"clr":-1,"A":"left","R":[{"T":"if%20you%20are%20claiming%20car%20or%20truck%20expenses%20on%20line%209%20","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":8244,"AM":1024,"x":22.766,"y":2.108,"w":47.798,"h":0.899,"TU":"Name of proprietor."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":8245,"AM":1024,"x":71.747,"y":2.024,"w":22.275,"h":0.875,"TU":"Social security number (SSN)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":8251,"AM":0,"x":80.438,"y":8.25,"w":14.85,"h":0.833,"TU":"Line 35. Inventory at beginning of year. If different from last year's closing inventory, attach explanation. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":8252,"AM":0,"x":80.438,"y":9.75,"w":14.85,"h":0.833,"TU":"Line 36. Purchases less cost of items withdrawn for personal use. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":8253,"AM":0,"x":80.438,"y":11.25,"w":14.85,"h":0.833,"TU":"Line 37. Cost of labor. Do not include any amounts paid to yourself. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":8254,"AM":0,"x":80.438,"y":12.75,"w":14.85,"h":0.833,"TU":"Line 38. Materials and supplies. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":8255,"AM":0,"x":80.438,"y":14.25,"w":14.85,"h":0.833,"TU":"Line 39. Other costs. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":8256,"AM":1024,"x":80.438,"y":15.75,"w":14.85,"h":0.833,"TU":"Line 40. Add lines 35 through 39. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":8257,"AM":0,"x":80.438,"y":17.25,"w":14.85,"h":0.833,"TU":"Line 41. Inventory at end of year. Dollars."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":8258,"AM":1024,"x":80.438,"y":18.75,"w":14.85,"h":0.833,"TU":"Line 42. Cost of goods sold. Subtract line 41 from line 40. Enter the result here and on line 4. Dollars."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"VEHICLE_L43_1_","EN":0},"TI":8259,"AM":0,"x":66.761,"y":22.388,"w":13.799,"h":0.833,"TU":"Line 43. When did you place your vehicle in service for business purposes? (month, day, year). ","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L44A_1_","EN":0},"TI":8260,"AM":0,"x":17.841,"y":25.5,"w":16.809,"h":0.833,"TU":"Line 44. Of the total number of miles you drove your vehicle during 2013, enter the number of miles you used your vehicle for: a. Business."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L44B_1_","EN":0},"TI":8261,"AM":0,"x":57.005,"y":25.5,"w":16.008,"h":0.833,"TU":"Line 44. b. Commuting (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L44C_1_","EN":0},"TI":8262,"AM":0,"x":80.414,"y":25.5,"w":18.586,"h":0.833,"TU":"Line 44. c. Other."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_1_","EN":0},"TI":8271,"AM":0,"x":7.425,"y":33.75,"w":71.775,"h":0.833,"TU":"Part 5. Other Expenses. List below business expenses not included on lines 8-26 or line 30. 9 lines available for entry."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_1_","EN":0},"TI":8272,"AM":0,"x":80.438,"y":33.75,"w":14.85,"h":0.833,"TU":"Part 5 Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_2_","EN":0},"TI":8273,"AM":0,"x":7.425,"y":35.25,"w":71.775,"h":0.833,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 2."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_2_","EN":0},"TI":8274,"AM":0,"x":80.438,"y":35.25,"w":14.85,"h":0.833,"TU":"Part 5 Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_3_","EN":0},"TI":8275,"AM":0,"x":7.425,"y":36.75,"w":71.775,"h":0.833,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 3."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_3_","EN":0},"TI":8276,"AM":0,"x":80.438,"y":36.75,"w":14.85,"h":0.833,"TU":"Part 5 Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_4_","EN":0},"TI":8277,"AM":0,"x":7.425,"y":38.25,"w":71.775,"h":0.833,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 4."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_4_","EN":0},"TI":8278,"AM":0,"x":80.438,"y":38.25,"w":14.85,"h":0.833,"TU":"Part 5 Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_5_","EN":0},"TI":8279,"AM":0,"x":7.425,"y":39.75,"w":71.775,"h":0.833,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 5."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_5_","EN":0},"TI":8280,"AM":0,"x":80.438,"y":39.75,"w":14.85,"h":0.833,"TU":"Part 5 Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_6_","EN":0},"TI":8281,"AM":0,"x":7.425,"y":41.25,"w":71.775,"h":0.833,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 6."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_6_","EN":0},"TI":8282,"AM":0,"x":80.438,"y":41.25,"w":14.85,"h":0.833,"TU":"Part 5 Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_7_","EN":0},"TI":8283,"AM":0,"x":7.425,"y":42.75,"w":71.775,"h":0.833,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 7."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_7_","EN":0},"TI":8284,"AM":0,"x":80.438,"y":42.75,"w":14.85,"h":0.833,"TU":"Part 5 Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_8_","EN":0},"TI":8285,"AM":0,"x":7.425,"y":44.25,"w":71.775,"h":0.833,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 8."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_8_","EN":0},"TI":8286,"AM":0,"x":80.438,"y":44.25,"w":14.85,"h":0.833,"TU":"Part 5 Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_9_","EN":0},"TI":8287,"AM":0,"x":7.988,"y":45.751,"w":71.212,"h":0.833,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 9."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_9_","EN":0},"TI":8288,"AM":0,"x":80.438,"y":45.751,"w":14.85,"h":0.833,"TU":"Part 5 Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L48","EN":0},"TI":8289,"AM":1024,"x":80.438,"y":46.5,"w":14.85,"h":0.833,"TU":"Line 48. Total other expenses. Enter here and on line 27a. Dollars."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33A","EN":0},"TI":8246,"AM":0,"x":31.968,"y":5.048,"w":2.645,"h":0.907,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33B","EN":0},"TI":8247,"AM":0,"x":43.797,"y":5.048,"w":2.345,"h":0.853,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33C","EN":0},"TI":8248,"AM":0,"x":67.526,"y":5.082,"w":2.57,"h":0.989,"checked":false}],"id":{"Id":"L33BXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L34Y","EN":0},"TI":8249,"AM":0,"x":82.279,"y":6.627,"w":2.495,"h":0.907,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L34N","EN":0},"TI":8250,"AM":0,"x":92.012,"y":6.572,"w":2.57,"h":0.989,"checked":false}],"id":{"Id":"L34RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L46Y","EN":0},"TI":8263,"AM":0,"x":84.141,"y":26.984,"w":1.744,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L46N","EN":0},"TI":8264,"AM":0,"x":92.799,"y":27.014,"w":1.444,"h":0.833,"checked":false}],"id":{"Id":"L46RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L45Y","EN":0},"TI":8265,"AM":0,"x":84.103,"y":28.467,"w":1.744,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L45N","EN":0},"TI":8266,"AM":0,"x":92.703,"y":28.458,"w":1.744,"h":0.833,"checked":false}],"id":{"Id":"L45RB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L47AY","EN":0},"TI":8267,"AM":0,"x":84.053,"y":29.976,"w":1.744,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L47AN","EN":0},"TI":8268,"AM":0,"x":92.653,"y":29.967,"w":1.744,"h":0.833,"checked":false}],"id":{"Id":"L47ARB_1_","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L47BY","EN":0},"TI":8269,"AM":0,"x":84.078,"y":31.485,"w":1.744,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L47BN","EN":0},"TI":8270,"AM":0,"x":92.678,"y":31.449,"w":1.744,"h":0.833,"checked":false}],"id":{"Id":"L48BRB_1_","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.7","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Profit or Loss From Business","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Adobe Acrobat Pro 10.1.8","CreationDate":"D:20131127101938-08'00'","ModDate":"D:20140113180441-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":5.25,"w":1.5,"l":5.431,"oc":"#221f1f"},{"x":7.634,"y":5.25,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.569,"y":3,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.569,"y":5.25,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.234,"y":6.75,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":27.884,"y":6.75,"w":3,"l":8.131,"oc":"#221f1f"},{"x":2.234,"y":8.25,"w":0.75,"l":25.697,"oc":"#221f1f"},{"x":27.838,"y":8.25,"w":3,"l":8.225,"oc":"#221f1f"},{"x":2.234,"y":9.75,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":27.884,"y":9.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":15.21,"y":10.5,"w":0.75,"l":20.806,"oc":"#221f1f","dsh":1},{"x":2.234,"y":11.25,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":24.284,"y":12,"w":0.75,"l":11.731,"oc":"#221f1f","dsh":1},{"x":2.234,"y":15,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":15.75,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":27.125,"y":17.125,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":27.125,"y":16.625,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":28.334,"y":17.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":17.25,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":17.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":18,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":18,"w":1.125,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":18,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":18.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":18.75,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":18.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":19.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":19.5,"w":1.125,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":19.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":20.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":20.25,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":20.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":21,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":21,"w":1.125,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":21,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":21.75,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":22.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":10.784,"y":23.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":12.134,"y":23.25,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":17.084,"y":23.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":10.784,"y":24.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":12.134,"y":24.75,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":17.084,"y":24.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":10.784,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":12.134,"y":25.5,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":17.084,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":10.784,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":12.134,"y":26.25,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":17.084,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":10.784,"y":27,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":12.134,"y":27,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":17.084,"y":27,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":10.784,"y":29.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":12.134,"y":29.25,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":17.084,"y":29.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":10.784,"y":30.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":12.134,"y":30.75,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":17.084,"y":30.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":12.134,"y":31.5,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":17.084,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":10.784,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":10.784,"y":33,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":12.134,"y":33,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":17.084,"y":33,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":10.784,"y":33.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":12.134,"y":33.75,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":17.084,"y":33.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":23.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":23.251,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":23.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":24.001,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":24.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":24.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":25.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":25.501,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":25.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":26.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":26.251,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":26.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":27.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":27.001,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":27.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":27.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":27.751,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":27.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":28.501,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":30.001,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":31.501,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":32.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":32.251,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":32.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":33.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":33.001,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":33.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":33.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":33.75,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":33.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.25,"y":34.5,"w":1.125,"l":33.75,"oc":"#221f1f"},{"x":28.334,"y":35.25,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":35.25,"w":1.125,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":35.25,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":36,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":36,"w":1.125,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":36,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":38.25,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":14.834,"y":39,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":28.334,"y":39.75,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":39.75,"w":1.125,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":39.75,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.334,"y":42,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":29.684,"y":42,"w":1.125,"l":4.981,"oc":"#221f1f"},{"x":34.634,"y":42,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":46.5,"w":1.5,"l":17.131,"oc":"#221f1f"},{"x":19.334,"y":46.5,"w":1.5,"l":10.381,"oc":"#221f1f"},{"x":29.684,"y":46.5,"w":1.5,"l":6.331,"oc":"#221f1f"}],"VLines":[{"x":7.65,"y":2.234,"w":1.5,"l":3.047,"oc":"#221f1f"},{"x":30.6,"y":2.234,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":2.984,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":27.9,"y":5.219,"w":0.75,"l":1.594,"oc":"#221f1f"},{"x":36,"y":6.734,"w":3,"l":1.578,"oc":"#221f1f"},{"x":27.9,"y":6.734,"w":3,"l":1.578,"oc":"#221f1f"},{"x":30.6,"y":7.546,"w":0.75,"l":0.7,"oc":"#181616"},{"x":31.504,"y":7.546,"w":0.75,"l":0.7,"oc":"#181616"},{"x":32.407,"y":7.546,"w":0.75,"l":0.7,"oc":"#181616"},{"x":33.311,"y":7.546,"w":0.75,"l":0.7,"oc":"#181616"},{"x":34.215,"y":7.546,"w":0.75,"l":0.7,"oc":"#181616"},{"x":35.119,"y":7.546,"w":0.75,"l":0.7,"oc":"#181616"},{"x":27.9,"y":8.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.8,"y":9,"w":0.75,"l":0.731,"oc":"#181616"},{"x":29.704,"y":9.075,"w":0.75,"l":0.563,"oc":"#181616","dsh":1},{"x":30.608,"y":9,"w":0.75,"l":0.731,"oc":"#181616"},{"x":31.511,"y":9,"w":0.75,"l":0.731,"oc":"#181616"},{"x":32.415,"y":9,"w":0.75,"l":0.731,"oc":"#181616"},{"x":33.319,"y":9,"w":0.75,"l":0.731,"oc":"#181616"},{"x":34.176,"y":9,"w":0.75,"l":0.731,"oc":"#181616"},{"x":35.089,"y":9,"w":0.75,"l":0.731,"oc":"#181616"},{"x":35.984,"y":9,"w":0.75,"l":0.731,"oc":"#181616"},{"x":27.625,"y":16.625,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":27.125,"y":16.625,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":29.7,"y":15.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.35,"y":15.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":15.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":16.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":17.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.35,"y":17.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.7,"y":17.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":17.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.35,"y":17.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":17.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":17.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":18.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.7,"y":18.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":18.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.35,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":20.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.7,"y":20.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":20.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.35,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":10.8,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.15,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.45,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.15,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.45,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.45,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":10.8,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.15,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.45,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":10.8,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.15,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.45,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":10.8,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.15,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.45,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.15,"y":26.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":10.8,"y":26.985,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":18.45,"y":26.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":17.1,"y":26.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.45,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.15,"y":29.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":10.8,"y":29.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.45,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.15,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.45,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":10.8,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.15,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.45,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.15,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":10.8,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.45,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.15,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":10.8,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.45,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":10.8,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.15,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.45,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.15,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":10.8,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.45,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.1,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.35,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.7,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.35,"y":34.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.7,"y":34.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":34.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.35,"y":35.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.7,"y":35.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":35.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.7,"y":35.984,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":28.35,"y":35.984,"w":0.75,"l":3.789,"oc":"#221f1f"},{"x":34.65,"y":35.984,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":34.65,"y":38.984,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.7,"y":39.735,"w":0.75,"l":2.289,"oc":"#221f1f"},{"x":28.35,"y":39.735,"w":0.75,"l":2.289,"oc":"#221f1f"},{"x":34.65,"y":39.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":41.234,"w":0.75,"l":0.789,"oc":"#221f1f"}],"Fills":[{"x":2.25,"y":15,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.25,"y":21.75,"w":2.25,"h":0.75,"oc":"#221f1f"}],"Texts":[{"x":3.8,"y":11.857,"w":52.23,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Did you 'materially participate' in the operation of this business during 2013? If 'No', see instructions for limit on losses ","S":-1,"TS":[0,11,0,0]}]},{"x":30.471,"y":11.857,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.354,"y":24.608,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20a","S":-1,"TS":[0,11,1,0]}]},{"x":2,"y":2.009,"w":7.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"SCHEDULE C ","S":10,"TS":[0,14,1,0]}]},{"x":2,"y":2.696,"w":5.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(Form 1040) ","S":10,"TS":[0,14,1,0]}]},{"x":2,"y":3.7119999999999997,"w":12.783,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":2,"y":4.213,"w":13.561,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Internal Revenue Service (99) ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":13.258,"y":2.225,"w":14.281,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Profit or Loss From Business ","S":11,"TS":[0,18,1,0]}]},{"x":16.422,"y":2.757,"w":9.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(Sole Proprietorship)","S":-1,"TS":[0,11,1,0]}]},{"x":8.973,"y":3.4610000000000003,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":9.348,"y":3.492,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":1,"TS":[0,8,0,0]}]},{"x":22.924,"y":3.5549999999999997,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":28.777,"y":3.4610000000000003,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":8.875,"y":4.086,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":9.25,"y":4.117,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":1,"TS":[0,8,0,0]}]},{"x":9.337,"y":4.18,"w":39.18,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach to Form 1040, 1040NR, or 1041; partnerships generally must file Form 1065.","S":-1,"TS":[0,11,1,0]}]},{"x":31.019,"y":1.972,"w":9.171,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.1,"y":3.75,"w":5.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.1,"y":4.321,"w":6.615,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":34.001,"y":4.321,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"09","S":10,"TS":[0,14,1,0]}]},{"x":34.696,"y":4.321,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":5.025,"w":8.614,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Name of proprietor ","S":2,"TS":[0,10,0,0]}]},{"x":27.9,"y":5.025,"w":14.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Social security number (SSN)","S":8,"TS":[0,10,1,0]}]},{"x":2,"y":6.583,"w":3.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A ","S":-1,"TS":[0,11,1,0]}]},{"x":4.764,"y":6.606,"w":35.012,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Principal business or profession, including product or service (see instructions) ","S":-1,"TS":[0,11,0,0]}]},{"x":27.9,"y":6.544,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B ","S":-1,"TS":[0,10.440000000000001,1,0]}]},{"x":28.486,"y":6.545,"w":13.947,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Enter code from instructions ","S":-1,"TS":[0,9.51,1,0]}]},{"x":29.735,"y":7.221,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":2,"y":8.082,"w":3.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"C ","S":-1,"TS":[0,11,1,0]}]},{"x":3.761,"y":8.082,"w":26.68,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Business name. If no separate business name, leave blank. ","S":-1,"TS":[0,11,0,0]}]},{"x":27.9,"y":8.025,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"D ","S":8,"TS":[0,10,1,0]}]},{"x":28.467,"y":8.025,"w":12.947,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Employer ID number (EIN), ","S":-1,"TS":[0,9.3,1,0]}]},{"x":33.541,"y":8.025,"w":5.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(see instr.) ","S":-1,"TS":[0,9.3,0,0]}]},{"x":2,"y":9.482,"w":0.945,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"E ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":9.544,"w":20.23,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Business address (including suite or room no.","S":-1,"TS":[0,11,0,0]}]},{"x":13.997,"y":9.544,"w":0.889,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":") ","S":-1,"TS":[0,11,0,0]}]},{"x":14.404,"y":9.451,"w":1,"oc":"#181616","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":2,"y":10.357,"w":23.513,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" City, town or post office, state, and ZIP code ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":11.107,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"F ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":11.107,"w":9.116,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Accounting method: ","S":-1,"TS":[0,11,0,0]}]},{"x":9.2,"y":11.107,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(1) ","S":-1,"TS":[0,11,1,0]}]},{"x":10.933,"y":11.107,"w":2.334,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Cash","S":-1,"TS":[0,11,0,0]}]},{"x":13.25,"y":11.107,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(2) ","S":-1,"TS":[0,11,1,0]}]},{"x":14.979,"y":11.107,"w":3.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Accrual ","S":-1,"TS":[0,11,0,0]}]},{"x":17.75,"y":11.107,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(3) ","S":-1,"TS":[0,11,1,0]}]},{"x":19.532,"y":11.107,"w":6.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Other (specify) ","S":-1,"TS":[0,11,0,0]}]},{"x":22.912,"y":11.107,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":23.016,"y":11.013,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":23.391,"y":11.045,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":2,"y":11.857,"w":1.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"G ","S":-1,"TS":[0,11,1,0]}]},{"x":31.624,"y":11.857,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":32.594,"y":11.732,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"x":34.836,"y":11.732,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":12.607,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"H ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":12.607,"w":28.403,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If you started or acquired this business during 2013, check here ","S":-1,"TS":[0,11,0,0]}]},{"x":18.5,"y":12.607,"w":25.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"x":31.052,"y":12.513,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":2,"y":13.357,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"I","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":13.357,"w":43.962,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Did you make any payments in 2013 that would require you to file Form(s) 1099? (see instructions) ","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":13.357,"w":12,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11,0,0]}]},{"x":32.594,"y":13.232,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"x":34.836,"y":13.232,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":14.107,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"J","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":14.107,"w":23.719,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If \"Yes,\" did you or will you file required Forms 1099? ","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":14.107,"w":31.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"x":32.594,"y":13.982,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"x":34.836,"y":13.982,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":2.327,"y":14.821,"w":2.668,"clr":1,"sw":0.32553125,"A":"left","R":[{"T":"Part I ","S":-1,"TS":[0,13,0,0]}]},{"x":4.7,"y":14.821,"w":3.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Income ","S":10,"TS":[0,14,1,0]}]},{"x":2.622,"y":15.701,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":15.670000000000002,"w":47.243,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Gross receipts or sales. See instructions for line 1 and check the box if this income was reported to you on ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":16.357,"w":31.173,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form W-2 and the 'Statutory employee' box on that form was checked ","S":-1,"TS":[0,11,0,0]}]},{"x":19.999,"y":16.357,"w":13.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"x":26.142,"y":16.357,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":26.282,"y":16.263,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":28.636,"y":16.357,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1","S":-1,"TS":[0,11,1,0]}]},{"x":2.622,"y":17.107,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":17.107,"w":10.949,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Returns and allowances ","S":-1,"TS":[0,11,0,0]}]},{"x":9.5,"y":17.107,"w":37.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".........................","S":-1,"TS":[0,11,0,0]}]},{"x":28.636,"y":17.107,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.622,"y":17.857,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":17.857,"w":11.338,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Subtract line 2 from line 1","S":-1,"TS":[0,11,0,0]}]},{"x":10.25,"y":17.857,"w":36,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,0]}]},{"x":28.636,"y":17.857,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.622,"y":18.607,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":18.607,"w":14.728,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Cost of goods sold (from line 42) ","S":-1,"TS":[0,11,0,0]}]},{"x":11.75,"y":18.607,"w":33,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11,0,0]}]},{"x":28.636,"y":18.607,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":-1,"TS":[0,11,1,0]}]},{"x":13.25,"y":19.357,"w":30,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11,0,0]}]},{"x":28.636,"y":19.357,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.622,"y":20.107,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":20.107,"w":41.796,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Other income, including federal and state gasoline or fuel tax credit or refund (see instructions)","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":20.107,"w":6,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"x":28.636,"y":20.107,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":-1,"TS":[0,11,1,0]}]},{"x":11.75,"y":20.857,"w":31.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"x":27.2,"y":20.763,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":28.636,"y":20.857,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.234,"y":21.572,"w":2.946,"clr":1,"sw":0.32553125,"A":"left","R":[{"T":"Part II ","S":-1,"TS":[0,13,0,0]}]},{"x":4.7,"y":21.634,"w":4.669,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Expenses","S":-1,"TS":[0,13.5,1,0]}]},{"x":13.524,"y":21.572,"w":30.288,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Enter expenses for business use of your home only on line 30. ","S":9,"TS":[0,12,1,0]}]},{"x":2.622,"y":22.357,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":22.357,"w":4.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Advertising","S":-1,"TS":[0,11,0,0]}]},{"x":6.5,"y":22.357,"w":7.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"x":11.086,"y":22.357,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":-1,"TS":[0,11,0,0]}]},{"x":2.622,"y":23.17,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.9,"y":23.857,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":23.17,"w":13.061,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Car and truck expenses (see ","S":-1,"TS":[0,10.76,0,0]}]},{"x":3.8,"y":23.857,"w":5.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"instructions)","S":-1,"TS":[0,10.76,0,0]}]},{"x":6.5,"y":23.857,"w":7.73,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".....","S":-1,"TS":[0,10.76,0,0]}]},{"x":11.086,"y":23.857,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":-1,"TS":[0,11,0,0]}]},{"x":2.344,"y":24.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":24.607,"w":10.114,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Commissions and fees","S":-1,"TS":[0,11,0,0]}]},{"x":9.463,"y":24.607,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":10.947,"y":24.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":-1,"TS":[0,11,0,0]}]},{"x":2.344,"y":25.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":25.357,"w":14.171,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Contract labor (see instructions)","S":-1,"TS":[0,10.04,0,0]}]},{"x":10.947,"y":25.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":-1,"TS":[0,11,0,0]}]},{"x":2.344,"y":26.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":26.107,"w":4.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Depletion ","S":-1,"TS":[0,11,0,0]}]},{"x":6.5,"y":26.107,"w":7.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"x":10.947,"y":26.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":-1,"TS":[0,11,0,0]}]},{"x":2.344,"y":26.707,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.9,"y":27.27,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2.9,"y":27.832,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2.9,"y":28.395,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":26.707,"w":13.229,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Depreciation and section 179 ","S":-1,"TS":[0,10.68,0,0]}]},{"x":3.8,"y":27.27,"w":10.673,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"expense deduction (not ","S":-1,"TS":[0,10.68,0,0]}]},{"x":3.8,"y":27.832,"w":10.838,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"included in Part III) (see ","S":-1,"TS":[0,10.68,0,0]}]},{"x":3.8,"y":28.395,"w":5.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"instructions).","S":-1,"TS":[0,10.68,0,0]}]},{"x":10.947,"y":28.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":-1,"TS":[0,11,0,0]}]},{"x":2.344,"y":29.17,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.9,"y":29.857,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":29.17,"w":12.505,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Employee benefit programs ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":29.857,"w":10.061,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(other than on line 19).","S":-1,"TS":[0,11,0,0]}]},{"x":9.442,"y":29.857,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":10.947,"y":29.857,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11,0,0]}]},{"x":2.344,"y":30.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":30.607,"w":13.118,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Insurance (other than health) ","S":-1,"TS":[0,10.68,0,0]}]},{"x":10.947,"y":30.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15 ","S":-1,"TS":[0,11,0,0]}]},{"x":2.344,"y":31.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":31.357,"w":3.613,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Interest:","S":-1,"TS":[0,11,0,0]}]},{"x":2.9,"y":32.107,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":32.107,"w":13.284,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Mortgage (paid to banks, etc.)","S":-1,"TS":[0,10.36,0,0]}]},{"x":10.803,"y":32.107,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16a","S":-1,"TS":[0,11,0,0]}]},{"x":2.9,"y":32.857,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":32.857,"w":2.501,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Other","S":-1,"TS":[0,11,0,0]}]},{"x":5.75,"y":32.857,"w":9,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"x":10.794,"y":32.857,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16b","S":-1,"TS":[0,11,0,0]}]},{"x":2.344,"y":33.576,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"17 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":33.576,"w":14.284,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Legal and professional services ","S":-1,"TS":[0,10.04,0,0]}]},{"x":10.947,"y":33.607,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11,0,0]}]},{"x":18.544,"y":22.358,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"18 ","S":-1,"TS":[0,11,1,0]}]},{"x":20,"y":22.358,"w":14.561,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Office expense (see instructions)","S":-1,"TS":[0,11,0,0]}]},{"x":28.497,"y":22.358,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"18 ","S":-1,"TS":[0,11,1,0]}]},{"x":18.544,"y":23.108,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"19 ","S":-1,"TS":[0,11,1,0]}]},{"x":20,"y":23.108,"w":14.34,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Pension and profit-sharing plans","S":-1,"TS":[0,10.6,0,0]}]},{"x":27.414,"y":23.108,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":28.497,"y":23.108,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"19 ","S":-1,"TS":[0,11,1,0]}]},{"x":18.544,"y":23.858,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20 ","S":-1,"TS":[0,11,1,0]}]},{"x":20,"y":23.858,"w":14.116,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Rent or lease (see instructions):","S":-1,"TS":[0,11,0,0]}]},{"x":19.1,"y":24.608,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"x":20,"y":24.608,"w":16.396,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Vehicles, machinery, and equipment ","S":-1,"TS":[0,10.52,0,0]}]},{"x":19.1,"y":25.358,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":20,"y":25.358,"w":10.671,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Other business property","S":-1,"TS":[0,11,0,0]}]},{"x":25.936,"y":25.358,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.686,"y":25.358,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.436,"y":25.358,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.344,"y":25.358,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20b ","S":-1,"TS":[0,11,1,0]}]},{"x":18.544,"y":26.108,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21 ","S":-1,"TS":[0,11,1,0]}]},{"x":20,"y":26.108,"w":11.394,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Repairs and maintenance","S":-1,"TS":[0,11,0,0]}]},{"x":26.001,"y":26.108,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.751,"y":26.108,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.501,"y":26.108,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.497,"y":26.108,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21 ","S":-1,"TS":[0,11,1,0]}]},{"x":18.544,"y":26.858,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22 ","S":-1,"TS":[0,11,1,0]}]},{"x":20,"y":26.858,"w":14.451,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Supplies (not included in Part III)","S":-1,"TS":[0,10.84,0,0]}]},{"x":27.512,"y":26.858,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.84,0,0]}]},{"x":28.497,"y":26.858,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22 ","S":-1,"TS":[0,11,1,0]}]},{"x":18.544,"y":27.608,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23 ","S":-1,"TS":[0,11,1,0]}]},{"x":20,"y":27.608,"w":8.559,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Taxes and licenses","S":-1,"TS":[0,11,0,0]}]},{"x":24.5,"y":27.608,"w":7.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"x":28.497,"y":27.608,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23 ","S":-1,"TS":[0,11,1,0]}]},{"x":18.544,"y":28.358,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24 ","S":-1,"TS":[0,11,1,0]}]},{"x":20,"y":28.358,"w":14.895,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Travel, meals, and entertainment:","S":-1,"TS":[0,11,0,0]}]},{"x":19.1,"y":29.108,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"x":20,"y":29.108,"w":2.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Travel","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":29.108,"w":13.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"x":28.354,"y":29.108,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24a ","S":-1,"TS":[0,11,1,0]}]},{"x":19.1,"y":29.921,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":19.1,"y":30.608,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":29.921,"w":10.449,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Deductible meals and ","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":30.608,"w":14.005,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"entertainment (see instructions)","S":-1,"TS":[0,11,0,0]}]},{"x":27.501,"y":30.608,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.344,"y":30.608,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24b ","S":-1,"TS":[0,11,1,0]}]},{"x":18.544,"y":31.357999999999997,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"25 ","S":-1,"TS":[0,11,1,0]}]},{"x":20,"y":31.357999999999997,"w":3.222,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Utilities","S":-1,"TS":[0,11,0,0]}]},{"x":22.25,"y":31.357999999999997,"w":12,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11,0,0]}]},{"x":28.497,"y":31.357999999999997,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"25 ","S":-1,"TS":[0,11,1,0]}]},{"x":18.544,"y":32.108,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26 ","S":-1,"TS":[0,11,1,0]}]},{"x":20,"y":32.108,"w":15.059,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Wages (less employment credits).","S":-1,"TS":[0,11,0,0]}]},{"x":28.497,"y":32.108,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26 ","S":-1,"TS":[0,11,1,0]}]},{"x":18.544,"y":32.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27 ","S":-1,"TS":[0,11,1,0]}]},{"x":19.1,"y":32.857,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":32.857,"w":13.783,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Other expenses (from line 48) .","S":-1,"TS":[0,11,0,0]}]},{"x":27.503,"y":32.857,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.354,"y":32.857,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27a","S":-1,"TS":[0,11,1,0]}]},{"x":19.1,"y":33.607,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":20,"y":33.607,"w":11.225,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Reserved for future use","S":-1,"TS":[0,11,1,0]}]},{"x":26.01,"y":33.607,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,1,0]}]},{"x":26.76,"y":33.607,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,1,0]}]},{"x":27.51,"y":33.607,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,1,0]}]},{"x":28.344,"y":33.607,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27b","S":-1,"TS":[0,11,1,0]}]},{"x":7.299,"y":34.357,"w":29.961,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"before expenses for business use of home. Add lines 8 through 27a","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":34.357,"w":9,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"x":27.196,"y":34.264,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":28.497,"y":34.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":35.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"29 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":35.107,"w":22.953,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Tentative profit or (loss). Subtract line 28 from line 7","S":-1,"TS":[0,11,0,0]}]},{"x":15.5,"y":35.107,"w":25.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"x":28.497,"y":35.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"29 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":35.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"30 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":35.919,"w":45.355,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Expenses for business use of your home. Do not report these expenses elsewhere. Attach Form 8829 ","S":-1,"TS":[0,11,0,0]}]},{"x":3.803,"y":36.607,"w":23.175,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"unless using the simplified method (see instructions)","S":-1,"TS":[0,11,0,0]}]},{"x":15.463,"y":36.607,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":". ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":38.145,"w":21.344,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"and (b) the part of your home used for business:","S":-1,"TS":[0,11,0,0]}]},{"x":22.825,"y":38.107,"w":8.614,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":". Use the Simplified","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":38.857,"w":34.184,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Method Worksheet in the instructions to figure the amount to enter on line 30 ","S":-1,"TS":[0,11,0,0]}]},{"x":21.5,"y":38.857,"w":13.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"x":28.497,"y":38.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"30 ","S":-1,"TS":[0,11,1,0]}]},{"x":19.56,"y":40.42,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,10.68,0,0]}]},{"x":20.51,"y":40.42,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,10.68,0,0]}]},{"x":24.776,"y":40.42,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":". ","S":-1,"TS":[0,10.68,0,0]}]},{"x":26.536,"y":41.336,"w":0.334,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[0,17.28,0,0]}]},{"x":28.497,"y":41.107,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":42.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":42.607,"w":43.018,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If you have a loss, check the box that describes your investment in this activity (see instructions). ","S":-1,"TS":[0,11,0,0]}]},{"x":26.54,"y":44.759,"w":0.334,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[0,17,0,0]}]},{"x":28.354,"y":43.982,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32a ","S":-1,"TS":[0,11,1,0]}]},{"x":30.219,"y":43.982,"w":10.725,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"All investment is at risk. ","S":-1,"TS":[0,11,0,0]}]},{"x":28.344,"y":44.732,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32b ","S":-1,"TS":[0,11,1,0]}]},{"x":30.219,"y":44.615,"w":10.949,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Some investment is not ","S":-1,"TS":[0,11,0,0]}]},{"x":30.219,"y":45.215,"w":3.223,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"at risk. ","S":-1,"TS":[0,11,0,0]}]},{"x":2,"y":46.357,"w":40.2,"oc":"#221f1f","sw":null,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see the separate instructions. ","S":-1,"TS":[3,11,1,0]}]},{"x":22.654,"y":46.375,"w":7.671,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Cat. No. 11334P ","S":2,"TS":[0,10,0,0]}]},{"x":29.705,"y":46.375,"w":16.8,"oc":"#221f1f","sw":null,"A":"left","R":[{"T":"Schedule C (Form 1040) 2013 ","S":-1,"TS":[3,10,1,0]}]},{"x":6.526,"y":28.352,"w":29.01,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Form 4562","S":51,"TS":[0,9,0,0]}]},{"x":2.524,"y":6.604,"w":55.56,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"REQUIRED:","S":-1,"TS":[0,8.90278,0,0]}]},{"x":31.05,"y":3.2670000000000003,"w":2.224,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2013","S":-1,"TS":[0,23,0,0]}]},{"x":9.435,"y":3.5549999999999997,"w":38.453,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For information on Schedule C and its instructions, go towww.irs.gov/schedulec.","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":34.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.737,"y":34.357,"w":2.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Total ","S":-1,"TS":[0,11,1,0]}]},{"x":5.071,"y":34.357,"w":4.836,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"expenses ","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":39.607,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,1,0]}]},{"x":3.7969999999999997,"y":41.107,"w":43.633,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(If you checked the box on line 1, see instructions). Estates and trusts, enter on Form 1041, line 3. ","S":-1,"TS":[0,10.68,0,0]}]},{"x":2.9,"y":39.607,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":39.607,"w":8.945,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Net profit or (loss).","S":-1,"TS":[0,11,1,0]}]},{"x":8.037,"y":39.607,"w":13.284,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Subtract line 30 from line 29. ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":37.295,"w":14.003,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Simplified method filers only:","S":-1,"TS":[0,11,1,0]}]},{"x":10.328,"y":37.295,"w":21.512,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" enter the total square footage of: (a) your home:","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":40.42,"w":11.73,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"€ If a profit, enter on both ","S":-1,"TS":[0,10.68,0,0]}]},{"x":9.054,"y":40.42,"w":8.671,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1040, line 12","S":-1,"TS":[0,10.68,1,0]}]},{"x":13.024,"y":40.42,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" (or ","S":-1,"TS":[0,10.68,0,0]}]},{"x":13.885,"y":40.42,"w":10.115,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1040NR, line 13","S":-1,"TS":[0,10.68,1,0]}]},{"x":18.603,"y":40.42,"w":3.947,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":") and on ","S":-1,"TS":[0,10.68,0,0]}]},{"x":20.52,"y":40.42,"w":9.171,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule SE, line 2","S":-1,"TS":[0,10.68,1,0]}]},{"x":3.8,"y":41.857,"w":7.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"€ If a loss, you ","S":-1,"TS":[0,11,0,0]}]},{"x":6.99,"y":41.857,"w":2.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"must ","S":-1,"TS":[0,11,1,0]}]},{"x":8.212,"y":41.857,"w":6.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" go to line 32.","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":43.482,"w":19.957,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"€ If you checked 32a, enter the loss on both ","S":-1,"TS":[0,11,0,0]}]},{"x":12.934,"y":43.482,"w":8.671,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1040, line 12","S":-1,"TS":[0,11,1,0]}]},{"x":16.929,"y":43.482,"w":2.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":", (or ","S":-1,"TS":[0,11,0,0]}]},{"x":17.946,"y":43.482,"w":10.115,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1040NR, line 13","S":-1,"TS":[0,11,1,0]}]},{"x":22.663,"y":43.482,"w":2.557,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":") and ","S":-1,"TS":[0,11,0,0]}]},{"x":2.622,"y":20.857,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":20.857,"w":7.225,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Gross income. ","S":-1,"TS":[0,11,1,0]}]},{"x":7.225,"y":20.857,"w":8.283,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Add lines 5 and 6 ","S":-1,"TS":[0,11,0,0]}]},{"x":2.622,"y":19.357,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":19.357,"w":6.557,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Gross profit. ","S":-1,"TS":[0,11,1,0]}]},{"x":6.8,"y":19.357,"w":11.616,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Subtract line 4 from line 3 ","S":-1,"TS":[0,11,0,0]}]},{"x":3.801,"y":44.17,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"on ","S":-1,"TS":[0,11,0,0]}]},{"x":4.434,"y":44.17,"w":9.171,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule SE, line 2","S":-1,"TS":[0,11,1,0]}]},{"x":8.735,"y":44.17,"w":34.352,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":". If you checked the box on line 1, (see the line 31 instructions). Estates and ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":44.857,"w":6.948,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"trusts, enter on ","S":-1,"TS":[0,11,0,0]}]},{"x":7.086,"y":44.857,"w":8.115,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1041, line 3","S":-1,"TS":[0,11,1,0]}]},{"x":10.914,"y":44.857,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":". ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":45.576,"w":11.952,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"€ If you checked 32b, you ","S":-1,"TS":[0,11,0,0]}]},{"x":9.338,"y":45.576,"w":2.389,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"must","S":-1,"TS":[0,11,1,0]}]},{"x":10.484,"y":45.576,"w":3.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" attach ","S":-1,"TS":[0,11,0,0]}]},{"x":12.062,"y":45.576,"w":5.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 6198","S":-1,"TS":[0,11,1,0]}]},{"x":14.417,"y":45.576,"w":12.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":". Your loss may be limited. ","S":-1,"TS":[0,11,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":567,"AM":0,"TU":"Name of proprietor.","x":2.25,"y":5.875,"w":25.557,"h":0.875},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":568,"AM":0,"TU":"Social security number (SSN).","x":27.9,"y":5.875,"w":8.1,"h":0.875},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A","EN":0},"TI":569,"AM":0,"TU":"Line A. Required. Principal business or profession, including product or service (see instructions).","x":2.227,"y":7.469,"w":25.603,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"B","EN":0},"TI":570,"AM":0,"TU":"Line B. Enter code from instructions. 6 Digits.","x":30.645,"y":7.5,"w":5.355,"h":0.833,"MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"C","EN":0},"TI":571,"AM":0,"TU":"Line C. Business name. If no separate business name, leave blank.","x":2.25,"y":8.992,"w":25.58,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"D","EN":0},"TI":572,"AM":0,"TU":"Line D. Employer I D number (E I N), (see instructions). 9 Digits.","x":27.9,"y":8.875,"w":8.1,"h":0.875,"MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"EA","EN":0},"TI":573,"AM":0,"TU":"Line E. Business address (including suite or room number).","x":15.226,"y":9.75,"w":20.774,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":574,"AM":0,"TU":"Line E. City, town or post office.","x":15.225,"y":10.523,"w":10.817,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":575,"AM":0,"TU":"State","x":27.876,"y":10.415,"w":1.324,"h":0.902,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"no entry"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":576,"AM":0,"TU":"Zip Code.","x":31.57,"y":10.551,"w":4.447,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FD","EN":0},"TI":580,"AM":0,"TU":"Line F. (3) Other. (Specify).","x":24.16,"y":11.262,"w":11.836,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":589,"AM":0,"TU":"Line 1. Gross receipts or sales. See instructions for line 1 and check the box if this income was reported to you on Form W-2 and the \"Statutory employee\" box on that form was checked.","x":29.677,"y":16.5,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":590,"AM":0,"TU":"Line 2. Returns and allowances. Dollars.","x":29.673,"y":17.25,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":591,"AM":1024,"TU":"Line 3. Subtract line 2 from line 1. Dollars.","x":29.7,"y":18,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":592,"AM":1024,"TU":"Line 4. Cost of goods sold (from line 42). Dollars.","x":29.7,"y":18.75,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":593,"AM":1024,"TU":"Line 5. Gross profit. Subtract line 4 from line 3. Dollars.","x":29.7,"y":19.473,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":594,"AM":0,"TU":"Line 6. Other income, including federal and state gasoline or fuel tax credit or refund (see instructions). Dollars.","x":29.7,"y":20.25,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":595,"AM":1024,"TU":"Line 7. Gross income. Add lines 5 and 6. Dollars.","x":29.7,"y":20.973,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":596,"AM":0,"TU":"Line 8. Advertising. Dollars.","x":12.15,"y":22.5,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":597,"AM":0,"TU":"Line 9. Car and truck expenses (see instructions)","x":12.177,"y":24,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":598,"AM":0,"TU":"Line 10. Commissions and fees. Dollars.","x":12.15,"y":24.75,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"CONTRLBR","EN":0},"TI":599,"AM":0,"TU":"Line 11. Contract labor (see instructions). Dollars.","x":12.15,"y":25.5,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":600,"AM":0,"TU":"Line 12. Depletion. Dollars.","x":12.15,"y":26.25,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":601,"AM":0,"TU":"Line 13. Depreciation and section 179 expense deduction (not included in part 3) (see instructions). Dollars.","x":12.177,"y":28.5,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4562C"}},"id":{"Id":"A3","EN":0},"TI":602,"AM":0,"x":8.808,"y":28.671,"w":1.419,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":603,"AM":0,"TU":"Line 14. Employee benefit programs (other than on line 19). Dollars.","x":12.204,"y":29.973,"w":4.903,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":604,"AM":0,"TU":"Line 15. Insurance (other than health). Dollars.","x":12.15,"y":30.723,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16A","EN":0},"TI":605,"AM":0,"TU":"Line 16a. Interest: Mortgage (paid to banks, etcetera). Dollars.","x":12.15,"y":32.25,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16B","EN":0},"TI":606,"AM":0,"TU":"Line 16b. Interest: Other. Dollars.","x":12.15,"y":33,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":607,"AM":0,"TU":"Line 17. Legal and professional services. Dollars.","x":12.15,"y":33.75,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":608,"AM":0,"TU":"Line 18. Office expense (see instructions). Dollars.","x":29.7,"y":22.501,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":609,"AM":0,"TU":"Line 19. Pension and profit-sharing plans. Dollars.","x":29.7,"y":23.251,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L20A3","EN":0},"TI":610,"AM":0,"TU":"Line 20. Rent or lease (see instructions): a. Vehicles, machinery, and equipment. Dollars.","x":29.7,"y":24.751,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20B","EN":0},"TI":611,"AM":0,"TU":"Line 20. b. other business property. Dollars.","x":29.7,"y":25.501,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":612,"AM":0,"TU":"Line 21. Repairs and maintenance. Dollars.","x":29.7,"y":26.251,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":613,"AM":0,"TU":"Line 22. Supplies (not included in Part 3). Dollars.","x":29.754,"y":26.974,"w":4.88,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":614,"AM":0,"TU":"Line 23. Taxes and licenses. Dollars.","x":29.7,"y":27.751,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24A","EN":0},"TI":615,"AM":0,"TU":"Line 24. Travel, meals, and entertainment: a. Travel. Dollars.","x":29.7,"y":29.251,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24D","EN":0},"TI":616,"AM":0,"TU":"Line 24. b. Deductible meals and entertainment (see instructions). Dollars.","x":29.7,"y":30.751,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":617,"AM":0,"TU":"Line 25. Utilities. Dollars.","x":29.7,"y":31.474,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":618,"AM":0,"TU":"Line 26. Wages (less employment credits). Dollars.","x":29.7,"y":32.251,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":619,"AM":1024,"TU":"Line 27a. Other expenses (from line 48). Dollars.","x":29.7,"y":33,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":620,"AM":1024,"TU":"Line 28. Total expenses before expenses for business use of home. Add lines 8 through 27a. Dollars.","x":29.727,"y":34.5,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":621,"AM":1024,"TU":"Line 29. Tentative profit or (loss). Subtract line 28 from line 7. Dollars.","x":29.7,"y":35.25,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8829"}},"id":{"Id":"A2","EN":0},"TI":622,"AM":0,"x":25.903,"y":36.72,"w":1.75,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":623,"AM":0,"TU":"Line 30. Expenses for business use of your home. Do not report these expenses elsewhere. Attach Form 8829 unless using the simplified method (see instructions). Use the Simplified Method Worksheet in the instructions to figure the amount to enter on line 30. Dollars.","x":29.727,"y":39,"w":4.95,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L31A","EN":0},"TI":624,"AM":0,"x":26.258,"y":40.985,"w":2.116,"h":0.976},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":625,"AM":0,"TU":"Line 31. Net profit or (loss). Subtract line 30 from line 29. If a profit, enter on both Form 1040, line 12 (or Form 1040NR, line 13) and on Schedule S E, line 2. (If you checked the box on line 1, see instructions). Estates and trusts, enter on Form 1041, line 3. If a loss, you must go to line 32. Dollars.","x":29.7,"y":41.081,"w":4.95,"h":0.919},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6198C"}},"id":{"Id":"A1","EN":0},"TI":628,"AM":0,"x":22.95,"y":45.667,"w":2.023,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1","EN":0},"TI":577,"AM":0,"TU":"Line F. Checkboxes. Accounting Method.","x":10.427,"y":11.2,"w":0.662,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F2","EN":0},"TI":578,"AM":0,"TU":"Line F. Checkboxes. Accounting Method.","x":14.516,"y":11.305,"w":0.612,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F3","EN":0},"TI":579,"AM":0,"TU":"Line F. Checkboxes. Accounting Method.","x":18.946,"y":11.278,"w":0.639,"h":0.833,"checked":false}],"id":{"Id":"FRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GIY","EN":0},"TI":581,"AM":0,"TU":"Line G. Checkboxes.","x":32.016,"y":11.915,"w":0.716,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GIN","EN":0},"TI":582,"AM":0,"TU":"Line G. Checkboxes.","x":34.344,"y":11.956,"w":0.628,"h":0.833,"checked":false}],"id":{"Id":"GIRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"HX","EN":0},"TI":583,"AM":0,"TU":"Line H. If you started or acquired this business during 2013, check here.","x":32.082,"y":12.73,"w":0.691,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQDY","EN":0},"TI":584,"AM":0,"TU":"Line I. Checkboxes.","x":32.071,"y":13.44,"w":0.662,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQDN","EN":0},"TI":585,"AM":0,"TU":"Line I. Checkboxes.","x":34.323,"y":13.447,"w":0.703,"h":0.833,"checked":false}],"id":{"Id":"REQDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099Y","EN":0},"TI":586,"AM":0,"TU":"Line J. Checkboxes.","x":32.119,"y":14.236,"w":0.553,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099N","EN":0},"TI":587,"AM":0,"TU":"Line J. Checkboxes.","x":34.317,"y":14.25,"w":0.621,"h":0.833,"checked":false}],"id":{"Id":"F1099RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GROSSB","EN":0},"TI":588,"AM":0,"TU":"Line 1. Checkbox.","x":26.999,"y":16.509,"w":0.853,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32A","EN":0},"TI":626,"AM":0,"TU":"Line 32. Checkboxes.","x":29.593,"y":44.148,"w":0.732,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L32B","EN":0},"TI":627,"AM":0,"TU":"Line 32. Checkboxes.","x":29.62,"y":44.877,"w":0.689,"h":0.833,"checked":false}],"id":{"Id":"L32RB","EN":0}}]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":3,"w":1.5,"l":31.531,"oc":"#221f1f"},{"x":33.734,"y":3,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":2.234,"y":3.75,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":27.884,"y":9,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":9,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":9,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":27.884,"y":10.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":10.5,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":10.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":27.884,"y":12,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":12,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":12,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":27.884,"y":13.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":13.5,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":13.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":27.884,"y":15,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":15,"w":1.125,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":15,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":27.884,"y":16.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":16.5,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":16.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":27.884,"y":18,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":18,"w":1.125,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":18,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":19.5,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":21.75,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":23.834,"y":23.25,"w":0.75,"l":2.281,"oc":"#221f1f","dsh":1},{"x":26.084,"y":23.25,"w":0.75,"l":1.831,"oc":"#221f1f","dsh":1},{"x":27.884,"y":23.25,"w":0.75,"l":1.831,"oc":"#221f1f","dsh":1},{"x":6.472,"y":26.25,"w":0.75,"l":6.143,"oc":"#221f1f","dsh":1},{"x":20.713,"y":26.25,"w":0.75,"l":5.852,"oc":"#221f1f","dsh":1},{"x":29.226,"y":26.25,"w":0.75,"l":6.79,"oc":"#221f1f","dsh":1},{"x":2.234,"y":32.25,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":33,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.684,"y":34.5,"w":0.75,"l":26.131,"oc":"#221f1f","dsh":1},{"x":29.234,"y":34.5,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":34.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.684,"y":36,"w":0.75,"l":26.131,"oc":"#221f1f","dsh":1},{"x":29.234,"y":36,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":36,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.684,"y":37.5,"w":0.75,"l":26.131,"oc":"#221f1f","dsh":1},{"x":29.234,"y":37.5,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":37.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.684,"y":39,"w":0.75,"l":26.131,"oc":"#221f1f","dsh":1},{"x":29.234,"y":39,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":39,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.684,"y":40.5,"w":0.75,"l":26.131,"oc":"#221f1f","dsh":1},{"x":29.234,"y":40.5,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":40.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.684,"y":42,"w":0.75,"l":26.131,"oc":"#221f1f","dsh":1},{"x":29.234,"y":42,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":42,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.684,"y":43.501,"w":0.75,"l":26.131,"oc":"#221f1f","dsh":1},{"x":29.234,"y":43.501,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":43.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.684,"y":45.001,"w":0.75,"l":26.131,"oc":"#221f1f","dsh":1},{"x":29.234,"y":45.001,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":45.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":46.501,"w":1.125,"l":27.031,"oc":"#221f1f"},{"x":29.234,"y":46.501,"w":1.125,"l":5.431,"oc":"#221f1f"},{"x":34.634,"y":46.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":47.25,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":29.25,"y":8.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.9,"y":8.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":8.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.25,"y":8.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.9,"y":8.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":8.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":9.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.25,"y":10.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.9,"y":10.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":10.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":11.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.25,"y":11.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.9,"y":11.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":11.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.25,"y":13.484,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":27.9,"y":13.484,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.65,"y":13.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":14.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.25,"y":14.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.9,"y":14.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":14.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":15.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.25,"y":16.484,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":27.9,"y":16.484,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.65,"y":16.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":17.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.25,"y":17.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.9,"y":17.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":17.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":18.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.25,"y":32.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":32.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.25,"y":34.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":34.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.25,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.25,"y":37.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":37.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.25,"y":38.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":38.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.25,"y":40.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":40.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.25,"y":41.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":41.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.25,"y":43.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":43.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.25,"y":44.985,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.65,"y":44.985,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":27.9,"y":46.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.25,"y":46.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":46.484,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.25,"y":3,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.25,"y":19.5,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.25,"y":32.25,"w":2.25,"h":0.75,"oc":"#221f1f"}],"Texts":[{"x":2,"y":1.972,"w":13.598,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule C (Form 1040) 2013 ","S":2,"TS":[0,10,0,0]}]},{"x":34.276,"y":2.009,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":2.009,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":10,"TS":[0,14,1,0]}]},{"x":2.142,"y":2.821,"w":3.423,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III ","S":-1,"TS":[0,13,0,0]}]},{"x":5.15,"y":2.821,"w":9.89,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Cost of Goods Sold ","S":10,"TS":[0,14,1,0]}]},{"x":11.296,"y":2.821,"w":7.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions) ","S":-1,"TS":[0,13,0,0]}]},{"x":2.344,"y":4.42,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"33 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.9,"y":5.107,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":4.42,"w":8.373,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Method(s) used to ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":5.107,"w":10.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"value closing inventory: ","S":-1,"TS":[0,11,0,0]}]},{"x":10.55,"y":5.107,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,11,1,0]}]},{"x":12.394,"y":5.107,"w":2.389,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cost ","S":-1,"TS":[0,11,0,0]}]},{"x":15.05,"y":5.107,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":16.85,"y":5.107,"w":10.945,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Lower of cost or market ","S":-1,"TS":[0,11,0,0]}]},{"x":23.6,"y":5.107,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c ","S":-1,"TS":[0,11,1,0]}]},{"x":25.4,"y":5.107,"w":11.817,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other (attach explanation) ","S":-1,"TS":[0,11,0,0]}]},{"x":2.344,"y":5.919,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"34 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.9,"y":6.607,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":5.919,"w":49.103,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Was there any change in determining quantities, costs, or valuations between opening and closing inventory? ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":6.607,"w":12.168,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If “Yes,” attach explanation","S":-1,"TS":[0,11,0,0]}]},{"x":10.25,"y":6.607,"w":39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........................","S":-1,"TS":[0,11,0,0]}]},{"x":30.798,"y":6.482,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes ","S":-1,"TS":[0,11,1,0]}]},{"x":34.4,"y":6.482,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No ","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":8.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"35 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":8.107,"w":42.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Inventory at beginning of year. If different from last year’s closing inventory, attach explanation","S":-1,"TS":[0,11,0,0]}]},{"x":25.25,"y":8.107,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26,"y":8.107,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":8.107,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.047,"y":8.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"35 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":9.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"36 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":9.607,"w":25.186,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Purchases less cost of items withdrawn for personal use","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":9.607,"w":21,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"x":28.047,"y":9.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"36 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":11.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"37 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":11.107,"w":26.08,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cost of labor. Do not include any amounts paid to yourself","S":-1,"TS":[0,11,0,0]}]},{"x":17,"y":11.107,"w":21,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"x":28.047,"y":11.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"37 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":12.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"38 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":12.607,"w":10.039,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Materials and supplies","S":-1,"TS":[0,11,0,0]}]},{"x":9.5,"y":12.607,"w":36,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,0]}]},{"x":28.047,"y":12.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"38 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":14.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"39 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":14.107,"w":5.205,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other costs","S":-1,"TS":[0,11,0,0]}]},{"x":6.5,"y":14.107,"w":42,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............................","S":-1,"TS":[0,11,0,0]}]},{"x":28.047,"y":14.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"39 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":15.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"40 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":15.607,"w":10.671,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 35 through 39","S":-1,"TS":[0,11,0,0]}]},{"x":9.5,"y":15.607,"w":36,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,0]}]},{"x":28.047,"y":15.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"40 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":17.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"41 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":17.107,"w":10.557,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Inventory at end of year","S":-1,"TS":[0,11,0,0]}]},{"x":9.5,"y":17.107,"w":36,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,0]}]},{"x":28.047,"y":17.107,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"41 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":18.545,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"42 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":18.545,"w":9.89,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Cost of goods sold. ","S":-1,"TS":[0,11,1,0]}]},{"x":8.413,"y":18.545,"w":28.175,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 41 from line 40. Enter the result here and on line 4","S":-1,"TS":[0,11,0,0]}]},{"x":23,"y":18.545,"w":9,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"x":28.047,"y":18.607,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"42 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.13,"y":19.321,"w":3.463,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part IV ","S":-1,"TS":[0,13,0,0]}]},{"x":5.15,"y":19.446,"w":14.17,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Information on Your Vehicle. ","S":10,"TS":[0,14,1,0]}]},{"x":13.53,"y":19.446,"w":8.558,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete this part ","S":-1,"TS":[0,13,0,0]}]},{"x":18.129,"y":19.446,"w":2.334,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"only ","S":10,"TS":[0,14,1,0]}]},{"x":32.906,"y":19.446,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":5.15,"y":20.134,"w":48.939,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and are not required to file Form 4562 for this business. See the instructions for line 13 to find out if you must ","S":-1,"TS":[0,13,0,0]}]},{"x":5.15,"y":20.821,"w":6.947,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"file Form 4562. ","S":-1,"TS":[0,13,0,0]}]},{"x":2.344,"y":22.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"43 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":22.357,"w":38.323,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"When did you place your vehicle in service for business purposes? (month, day, year) ","S":-1,"TS":[0,11,0,0]}]},{"x":23.638,"y":22.221,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":25.869,"y":22.339,"w":0.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/ ","S":3,"TS":[0,12,0,0]}]},{"x":27.671,"y":22.339,"w":0.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"/ ","S":3,"TS":[0,12,0,0]}]},{"x":2.344,"y":23.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"44 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":23.857,"w":52.441,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Of the total number of miles you drove your vehicle during 2013, enter the number of miles you used your vehicle for: ","S":-1,"TS":[0,11,0,0]}]},{"x":2.9,"y":25.357,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":25.294,"w":4.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business ","S":-1,"TS":[0,11,0,0]}]},{"x":12.8,"y":25.294,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":13.384,"y":25.294,"w":13.337,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Commuting (see instructions) ","S":-1,"TS":[0,11,0,0]}]},{"x":26.75,"y":25.294,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c ","S":-1,"TS":[0,11,1,0]}]},{"x":27.176,"y":25.294,"w":3.057,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Other ","S":-1,"TS":[0,11,0,0]}]},{"x":2.344,"y":26.857,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"45 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":26.857,"w":29.522,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Was your vehicle available for personal use during off-duty hours?","S":-1,"TS":[0,11,0,0]}]},{"x":19.25,"y":26.857,"w":22.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,11,0,0]}]},{"x":31.069,"y":26.732,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes ","S":-1,"TS":[0,11,1,0]}]},{"x":34.38,"y":26.732,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No ","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":28.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"46 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":28.357,"w":32.374,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you (or your spouse) have another vehicle available for personal use?","S":-1,"TS":[0,11,0,0]}]},{"x":20,"y":28.357,"w":21,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,11,0,0]}]},{"x":31.25,"y":28.232,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes ","S":-1,"TS":[0,11,1,0]}]},{"x":34.4,"y":28.232,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No ","S":-1,"TS":[0,11,1,0]}]},{"x":2.344,"y":29.857,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"47a","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":29.857,"w":22.358,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you have evidence to support your deduction?","S":-1,"TS":[0,11,0,0]}]},{"x":15.5,"y":29.857,"w":30,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,11,0,0]}]},{"x":31.287,"y":29.732,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes ","S":-1,"TS":[0,11,1,0]}]},{"x":34.306,"y":29.732,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No ","S":-1,"TS":[0,11,1,0]}]},{"x":2.9,"y":31.293999999999997,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":31.293999999999997,"w":14.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If “Yes,” is the evidence written?","S":-1,"TS":[0,11,0,0]}]},{"x":11.75,"y":31.293999999999997,"w":37.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........................","S":-1,"TS":[0,11,0,0]}]},{"x":31.244,"y":31.232,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes ","S":-1,"TS":[0,11,1,0]}]},{"x":34.316,"y":31.232,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No ","S":-1,"TS":[0,11,1,0]}]},{"x":2.222,"y":32.071,"w":3.168,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part V ","S":-1,"TS":[0,13,0,0]}]},{"x":5.15,"y":32.071,"w":8.448,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Other Expenses. ","S":10,"TS":[0,14,1,0]}]},{"x":10.093,"y":32.071,"w":30.285,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"List below business expenses not included on lines 8–26 or line 30. ","S":-1,"TS":[0,13,0,0]}]},{"x":2.344,"y":46.295,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"48 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":46.295,"w":10.837,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Total other expenses. ","S":-1,"TS":[0,11,1,0]}]},{"x":8.851,"y":46.295,"w":11.707,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter here and on line 27a","S":-1,"TS":[0,11,0,0]}]},{"x":15.5,"y":46.295,"w":24,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"................","S":-1,"TS":[0,11,0,0]}]},{"x":28.047,"y":46.357,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"48 ","S":-1,"TS":[0,11,1,0]}]},{"x":29.705,"y":47.125,"w":14.172,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule C (Form 1040) 2013 ","S":8,"TS":[0,10,1,0]}]},{"x":19.541,"y":19.446,"w":22.231,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"if you are claiming car or truck expenses on line 9 ","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":2129,"AM":1024,"TU":"Name of proprietor.","x":8.278,"y":2.108,"w":17.381,"h":0.899},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2130,"AM":1024,"TU":"Social security number (SSN).","x":26.09,"y":2.024,"w":8.1,"h":0.875},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":2136,"AM":0,"TU":"Line 35. Inventory at beginning of year. If different from last year's closing inventory, attach explanation. Dollars.","x":29.25,"y":8.25,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":2137,"AM":0,"TU":"Line 36. Purchases less cost of items withdrawn for personal use. Dollars.","x":29.25,"y":9.75,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37","EN":0},"TI":2138,"AM":0,"TU":"Line 37. Cost of labor. Do not include any amounts paid to yourself. Dollars.","x":29.25,"y":11.25,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":2139,"AM":0,"TU":"Line 38. Materials and supplies. Dollars.","x":29.25,"y":12.75,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":2140,"AM":0,"TU":"Line 39. Other costs. Dollars.","x":29.25,"y":14.25,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":2141,"AM":1024,"TU":"Line 40. Add lines 35 through 39. Dollars.","x":29.25,"y":15.75,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":2142,"AM":0,"TU":"Line 41. Inventory at end of year. Dollars.","x":29.25,"y":17.25,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":2143,"AM":1024,"TU":"Line 42. Cost of goods sold. Subtract line 41 from line 40. Enter the result here and on line 4. Dollars.","x":29.25,"y":18.75,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"VEHICLE_L43_1_","EN":0},"TI":2144,"AM":0,"TU":"Line 43. When did you place your vehicle in service for business purposes? (month, day, year). ","x":24.277,"y":22.388,"w":5.018,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L44A_1_","EN":0},"TI":2145,"AM":0,"TU":"Line 44. Of the total number of miles you drove your vehicle during 2013, enter the number of miles you used your vehicle for: a. Business.","x":6.488,"y":25.5,"w":6.112,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L44B_1_","EN":0},"TI":2146,"AM":0,"TU":"Line 44. b. Commuting (see instructions).","x":20.729,"y":25.5,"w":5.821,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L44C_1_","EN":0},"TI":2147,"AM":0,"TU":"Line 44. c. Other.","x":29.241,"y":25.5,"w":6.759,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_1_","EN":0},"TI":2156,"AM":0,"TU":"Part 5. Other Expenses. List below business expenses not included on lines 8-26 or line 30. 9 lines available for entry.","x":2.7,"y":33.75,"w":26.1,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_1_","EN":0},"TI":2157,"AM":0,"TU":"Part 5 Amount.","x":29.25,"y":33.75,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_2_","EN":0},"TI":2158,"AM":0,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 2.","x":2.7,"y":35.25,"w":26.1,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_2_","EN":0},"TI":2159,"AM":0,"TU":"Part 5 Amount.","x":29.25,"y":35.25,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_3_","EN":0},"TI":2160,"AM":0,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 3.","x":2.7,"y":36.75,"w":26.1,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_3_","EN":0},"TI":2161,"AM":0,"TU":"Part 5 Amount.","x":29.25,"y":36.75,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_4_","EN":0},"TI":2162,"AM":0,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 4.","x":2.7,"y":38.25,"w":26.1,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_4_","EN":0},"TI":2163,"AM":0,"TU":"Part 5 Amount.","x":29.25,"y":38.25,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_5_","EN":0},"TI":2164,"AM":0,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 5.","x":2.7,"y":39.75,"w":26.1,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_5_","EN":0},"TI":2165,"AM":0,"TU":"Part 5 Amount.","x":29.25,"y":39.75,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_6_","EN":0},"TI":2166,"AM":0,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 6.","x":2.7,"y":41.25,"w":26.1,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_6_","EN":0},"TI":2167,"AM":0,"TU":"Part 5 Amount.","x":29.25,"y":41.25,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_7_","EN":0},"TI":2168,"AM":0,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 7.","x":2.7,"y":42.75,"w":26.1,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_7_","EN":0},"TI":2169,"AM":0,"TU":"Part 5 Amount.","x":29.25,"y":42.75,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_8_","EN":0},"TI":2170,"AM":0,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 8.","x":2.7,"y":44.25,"w":26.1,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_8_","EN":0},"TI":2171,"AM":0,"TU":"Part 5 Amount.","x":29.25,"y":44.25,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L48T_9_","EN":0},"TI":2172,"AM":0,"TU":"Part 5. Other Expenses. 9 lines available for entry. Item 9.","x":2.905,"y":45.751,"w":25.895,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L48A_9_","EN":0},"TI":2173,"AM":0,"TU":"Part 5 Amount.","x":29.25,"y":45.751,"w":5.4,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L48","EN":0},"TI":2174,"AM":1024,"TU":"Line 48. Total other expenses. Enter here and on line 27a. Dollars.","x":29.25,"y":46.5,"w":5.4,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33A","EN":0},"TI":2131,"AM":0,"TU":"Line 33. Checkboxes. Method(s) used to value closing inventory.","x":11.625,"y":5.048,"w":0.962,"h":0.907,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33B","EN":0},"TI":2132,"AM":0,"TU":"Line 33. Checkboxes. Method(s) used to value closing inventory.","x":15.926,"y":5.048,"w":0.853,"h":0.853,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L33C","EN":0},"TI":2133,"AM":0,"TU":"Line 33. Checkboxes. Method(s) used to value closing inventory.","x":24.555,"y":5.082,"w":0.934,"h":0.989,"checked":false}],"id":{"Id":"L33BXRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L34Y","EN":0},"TI":2134,"AM":0,"TU":"Line 34. Checkboxes.","x":29.92,"y":6.627,"w":0.907,"h":0.907,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L34N","EN":0},"TI":2135,"AM":0,"TU":"Line 34. Checkboxes.","x":33.459,"y":6.572,"w":0.934,"h":0.989,"checked":false}],"id":{"Id":"L34RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L46Y[1]","EN":0},"TI":2148,"AM":0,"TU":"Line 45. Checkboxes.","x":30.597,"y":27.017,"w":0.634,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L46N[1]","EN":0},"TI":2149,"AM":0,"TU":"Line 45. Checkboxes.","x":33.745,"y":27.014,"w":0.525,"h":0.833,"checked":false}],"id":{"Id":"L46RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L45Y[1]","EN":0},"TI":2150,"AM":0,"TU":"Line 46. Checkboxes.","x":30.583,"y":28.467,"w":0.634,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L45N[1]","EN":0},"TI":2151,"AM":0,"TU":"Line 46. Checkboxes.","x":33.71,"y":28.458,"w":0.634,"h":0.833,"checked":false}],"id":{"Id":"L45RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L47Y[1]","EN":0},"TI":2152,"AM":0,"TU":"Line 47a. Checkboxes.","x":30.565,"y":29.976,"w":0.634,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L47N[1]","EN":0},"TI":2153,"AM":0,"TU":"Line 47a. Checkboxes.","x":33.692,"y":29.967,"w":0.634,"h":0.833,"checked":false}],"id":{"Id":"L47ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L48Y[1]","EN":0},"TI":2154,"AM":0,"TU":"Line 47b. Checkboxes.","x":30.574,"y":31.485,"w":0.634,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L48N[1]","EN":0},"TI":2155,"AM":0,"TU":"Line 47b. Checkboxes.","x":33.701,"y":31.449,"w":0.634,"h":0.833,"checked":false}],"id":{"Id":"L48BRB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHCEZS.json b/test/data/fd/form/FSCHCEZS.json index 2a9d810e..3fef7861 100755 --- a/test/data/fd/form/FSCHCEZS.json +++ b/test/data/fd/form/FSCHCEZS.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.997,"y":5.251,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.066,"y":3.001,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":5.251,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":70.624},{"oc":"#221f1f","x":76.684,"y":6.751,"w":1.125,"l":22.361},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":18.951,"y":12.033,"w":0.75,"l":1.853},{"oc":"#221f1f","x":20.804,"y":9.507,"w":0.75,"l":1.751},{"oc":"#221f1f","x":24.752,"y":16.876,"w":0.75,"l":27.225},{"oc":"#221f1f","x":24.752,"y":8.673,"w":0.75,"l":27.225},{"oc":"#221f1f","x":51.977,"y":16.501,"w":0.75,"l":7.945},{"oc":"#221f1f","x":55.69,"y":13.501,"w":0.75,"l":8.663},{"oc":"#221f1f","x":55.69,"y":12.001,"w":0.75,"l":8.663},{"oc":"#221f1f","x":55.69,"y":13.501,"w":0.75,"l":4.24},{"oc":"#221f1f","x":59.787,"y":9.691,"w":0.75,"l":3.188},{"oc":"#221f1f","x":68.065,"y":16.664,"w":0.75,"l":27.225},{"oc":"#221f1f","x":68.065,"y":9.001,"w":0.75,"l":27.225},{"oc":"#221f1f","x":6.147,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":17.251,"w":0.75,"l":67.019},{"oc":"#221f1f","x":6.147,"y":18.751,"w":0.75,"l":70.731},{"oc":"#221f1f","x":76.684,"y":17.251,"w":2.625,"l":3.798},{"oc":"#221f1f","x":80.397,"y":17.251,"w":2.625,"l":18.756},{"oc":"#221f1f","x":6.147,"y":20.251,"w":0.75,"l":70.624},{"oc":"#221f1f","x":76.684,"y":18.751,"w":2.625,"l":3.798},{"oc":"#221f1f","x":80.397,"y":18.751,"w":2.625,"l":18.648},{"oc":"#221f1f","x":76.684,"y":20.251,"w":0.75,"l":22.361},{"oc":"#221f1f","x":9.859,"y":21.751,"w":0.75,"l":89.186},{"oc":"#221f1f","x":9.859,"y":23.251,"w":0.75,"l":89.186},{"oc":"#221f1f","x":6.147,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":24.751,"w":0.75,"l":74.336},{"oc":"#221f1f","x":84.109,"y":24.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":85.39,"y":24.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":85.39,"y":24.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":92.772,"y":24.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":92.815,"y":24.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":92.815,"y":24.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.147,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":25.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":27.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":29.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":29.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":29.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":30.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":34.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":36.001,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":72.587,"y":36.751,"w":0.75,"l":16.558},{"dsh":1,"oc":"#221f1f","x":18.564,"y":39.751,"w":0.75,"l":14.894},{"dsh":1,"oc":"#221f1f","x":55.004,"y":39.751,"w":0.75,"l":15.579},{"dsh":1,"oc":"#221f1f","x":78.807,"y":39.751,"w":0.75,"l":16.525},{"oc":"#221f1f","x":6.147,"y":45.749,"w":1.5,"l":53.299},{"oc":"#221f1f","x":59.359,"y":45.749,"w":1.5,"l":19.886},{"oc":"#221f1f","x":79.159,"y":45.749,"w":1.5,"l":19.886}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.152,"y":2.985,"w":1.5,"l":2.281},{"oc":"#221f1f","x":76.727,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":20.804,"y":9.539,"w":0.75,"l":2.463},{"oc":"#221f1f","x":51.977,"y":8.673,"w":0.75,"l":8.203},{"oc":"#221f1f","x":24.752,"y":8.673,"w":0.75,"l":8.203},{"oc":"#221f1f","x":59.929,"y":13.501,"w":0.75,"l":3.015},{"oc":"#221f1f","x":64.352,"y":12.001,"w":0.75,"l":1.5},{"oc":"#221f1f","x":55.69,"y":12.001,"w":0.75,"l":1.5},{"oc":"#221f1f","x":59.787,"y":9.691,"w":0.75,"l":2.295},{"oc":"#221f1f","x":95.29,"y":9.001,"w":0.75,"l":7.663},{"oc":"#221f1f","x":68.065,"y":9.001,"w":0.75,"l":7.663},{"oc":"#221f1f","x":76.727,"y":17.236,"w":2.625,"l":0.781},{"oc":"#221f1f","x":76.727,"y":17.985,"w":2.625,"l":0.781},{"oc":"#221f1f","x":99.002,"y":17.196,"w":2.625,"l":1.57},{"oc":"#181616","x":84.152,"y":18.001,"w":0.75,"l":0.7},{"oc":"#181616","x":86.638,"y":18.001,"w":0.75,"l":0.7},{"oc":"#181616","x":89.123,"y":18.001,"w":0.75,"l":0.7},{"oc":"#181616","x":91.608,"y":18.001,"w":0.75,"l":0.7},{"oc":"#181616","x":94.094,"y":18.001,"w":0.75,"l":0.7},{"oc":"#181616","x":96.579,"y":18.001,"w":0.75,"l":0.7},{"oc":"#221f1f","x":76.727,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":19.485,"w":0.75,"l":0.781},{"oc":"#181616","x":79.202,"y":19.501,"w":0.75,"l":0.731},{"dsh":1,"oc":"#181616","x":81.688,"y":19.576,"w":0.75,"l":0.563},{"oc":"#181616","x":84.173,"y":19.501,"w":0.75,"l":0.731},{"oc":"#181616","x":86.658,"y":19.501,"w":0.75,"l":0.731},{"oc":"#181616","x":89.143,"y":19.501,"w":0.75,"l":0.731},{"oc":"#181616","x":91.629,"y":19.501,"w":0.75,"l":0.731},{"oc":"#181616","x":93.987,"y":19.501,"w":0.75,"l":0.731},{"oc":"#181616","x":96.498,"y":19.501,"w":0.75,"l":0.731},{"oc":"#181616","x":98.958,"y":19.501,"w":0.75,"l":0.731},{"oc":"#221f1f","x":86.765,"y":24.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":85.39,"y":24.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":94.19,"y":24.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":92.815,"y":24.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":92.815,"y":24.626,"w":0.75,"l":0.125},{"oc":"#221f1f","x":84.152,"y":26.985,"w":0.75,"l":2.289},{"oc":"#221f1f","x":80.44,"y":26.985,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":29.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":29.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":30.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.44,"y":30.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":84.152,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":7.126,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":25.876,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":34.876,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":0,"y":48.675,"w":2.27,"h":0.825,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":48.737,"w":1.926,"h":0.7,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.737,"w":1.926,"h":0.7,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":48.949,"w":1.287,"h":0.489,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.949,"w":1.287,"h":0.489,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.949,"w":1.456,"h":0.489,"clr":-1}],"Texts":[{"oc":"#221f1f","x":82.288,"y":9.942,"w":5.558,"clr":-1,"A":"left","R":[{"T":"Form%204562%2C%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.94,"y":2.01,"w":8.667,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20C-EZ%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":2.697,"w":5.9460000000000015,"clr":-1,"A":"left","R":[{"T":"(Form%201040)%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.8129999999999997,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.314,"w":13.279000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":38.871,"y":2.101,"w":12.280000000000003,"clr":-1,"A":"left","R":[{"T":"Net%20Profit%20From%20Business%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":45.6,"y":2.795,"w":9.946000000000003,"clr":-1,"A":"left","R":[{"T":"(Sole%20Proprietorship)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":27.425,"y":3.5279999999999996,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":28.886,"y":3.6210000000000004,"w":35.234999999999985,"clr":-1,"A":"left","R":[{"T":"Partnerships%2C%20joint%20ventures%2C%20etc.%2C%20generally%20must%20file%20Form%201065%20or%201065-B.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":28.57,"y":4.153,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":30.031,"y":4.246,"w":18.729000000000006,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%201040NR%2C%20or%201041.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":53.569,"y":4.153,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":55.031,"y":4.246,"w":13.004000000000003,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20on%20page%202.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9729999999999999,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.3310000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.829,"y":3.3310000000000004,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.965,"y":3.8449999999999998,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":4.291,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.942,"y":4.291,"w":1.834,"clr":-1,"A":"left","R":[{"T":"09A","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":8.482000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20proprietor","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.165,"y":4.938,"w":14.003999999999998,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20(SSN)","S":8,"TS":[0,10,1,0]}]},{"x":6.838,"y":6.947,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":6.89,"w":9.502000000000002,"clr":-1,"A":"left","R":[{"T":"General%20Information","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.177,"y":9.965,"w":6.502000000000001,"clr":-1,"A":"left","R":[{"T":"You%20May%20Use%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.177,"y":10.652,"w":7.334999999999999,"clr":-1,"A":"left","R":[{"T":"Schedule%20C-EZ%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.177,"y":11.339,"w":5.001000000000001,"clr":-1,"A":"left","R":[{"T":"Instead%20of%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.177,"y":12.027,"w":6.002000000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20C%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.177,"y":12.714,"w":5.612,"clr":-1,"A":"left","R":[{"T":"Only%20If%20You%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.3,"y":8.894,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.74,"y":9.093,"w":17.375000000000004,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Had%20business%20expenses%20of%20%245%2C000%20or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.856,"y":9.64,"w":2.593,"clr":-1,"A":"left","R":[{"T":"less.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.74,"y":10.437,"w":17.283,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Use%20the%20cash%20method%20of%20accounting.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.74,"y":11.234,"w":17.654,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Did%20not%20have%20an%20inventory%20at%20any%20time%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.856,"y":11.781,"w":7.5390000000000015,"clr":-1,"A":"left","R":[{"T":"during%20the%20year.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.74,"y":12.578,"w":15.855999999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Did%20not%20have%20a%20net%20loss%20from%20your%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.856,"y":13.125,"w":4.798,"clr":-1,"A":"left","R":[{"T":"business.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.74,"y":13.922,"w":18.244000000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Had%20only%20one%20business%20as%20either%20a%20sole%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.856,"y":14.469,"w":16.261000000000003,"clr":-1,"A":"left","R":[{"T":"proprietor%2C%20qualified%20joint%20venture%2C%20or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.856,"y":15.016,"w":9.132000000000003,"clr":-1,"A":"left","R":[{"T":"statutory%20employee.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":56.433,"y":12.121,"w":4.444,"clr":-1,"A":"left","R":[{"T":"And%20You%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":62.091,"y":9.126,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.052,"y":9.186,"w":16.986,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Had%20no%20employees%20during%20the%20year.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.052,"y":9.942,"w":11.001000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Are%20not%20required%20to%20file%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.083,"y":10.489,"w":15.853000000000002,"clr":-1,"A":"left","R":[{"T":"Depreciation%20and%20Amortization%2C%20for%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.083,"y":11.036,"w":17.022,"clr":-1,"A":"left","R":[{"T":"this%20business.%20See%20the%20instructions%20for%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.083,"y":11.583,"w":16.764000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20C%2C%20line%2013%2C%20to%20find%20out%20if%20you%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.083,"y":12.13,"w":4.613000000000001,"clr":-1,"A":"left","R":[{"T":"must%20file.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.052,"y":12.858,"w":17.745,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Do%20not%20deduct%20expenses%20for%20business%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.083,"y":13.483,"w":8.614,"clr":-1,"A":"left","R":[{"T":"use%20of%20your%20home.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.052,"y":14.239,"w":15.816000000000006,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Do%20not%20have%20prior%20year%20unallowed%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.083,"y":14.786,"w":14.409000000000002,"clr":-1,"A":"left","R":[{"T":"passive%20activity%20losses%20from%20this%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.083,"y":15.332999999999998,"w":4.242,"clr":-1,"A":"left","R":[{"T":"business.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.325,"y":16.983,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":16.985,"w":27.262,"clr":-1,"A":"left","R":[{"T":"Principal%20business%20or%20profession%2C%20including%20product%20or%20service","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.789,"y":17.028,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":80.19,"y":17.014,"w":15.839000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20business%20code%20(see%20page%202)","S":-1,"TS":[0,9.559999999999999,1,0]}]},{"oc":"#221f1f","x":81.867,"y":17.787,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.286,"y":18.487,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":18.485,"w":26.377999999999993,"clr":-1,"A":"left","R":[{"T":"Business%20name.%20If%20no%20separate%20business%20name%2C%20leave%20blank.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.76,"y":18.528,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":80.19,"y":18.514,"w":13.004000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20EIN%20(see%20page%202)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.35,"y":19.983,"w":0.667,"clr":-1,"A":"left","R":[{"T":"E","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":19.983,"w":48.41699999999995,"clr":-1,"A":"left","R":[{"T":"Business%20address%20(including%20suite%20or%20room%20no.).%20Address%20not%20required%20if%20same%20as%20on%20page%201%20of%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":21.483,"w":20.02,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office%2C%20state%2C%20and%20ZIP%20code","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.388,"y":23.006,"w":0.611,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":23.04,"w":45.47699999999997,"clr":-1,"A":"left","R":[{"T":"Did%20you%20make%20any%20payments%20in%202013%20that%20would%20require%20you%20to%20file%20Form(s)%201099%3F%20(see%20the%20Schedule%20C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":23.728,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":23.728,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.996,"y":23.84,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.421,"y":23.84,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.274,"y":24.608,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%20G%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":24.59,"w":24.022000000000002,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20did%20you%20or%20will%20you%20file%20required%20Forms%201099%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":24.59,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.996,"y":24.59,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.421,"y":24.59,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":6.584,"y":25.697,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":25.635,"w":10.39,"clr":-1,"A":"left","R":[{"T":"Figure%20Your%20Net%20Profit","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":26.953,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.903,"w":11.559000000000003,"clr":-1,"A":"left","R":[{"T":"Gross%20receipts.%20Caution.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":27.052,"y":26.903,"w":30.396,"clr":-1,"A":"left","R":[{"T":"%20If%20this%20income%20was%20reported%20to%20you%20on%20Form%20W-2%20and%20the%20%E2%80%9CStatutory%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":28.288,"w":15.560000000000011,"clr":-1,"A":"left","R":[{"T":"Schedule%20C%2C%20line%201%2C%20and%20check%20here","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.866,"y":28.288,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.037,"y":28.195,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.616,"y":28.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":29.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":7.503,"clr":-1,"A":"left","R":[{"T":"Total%20expenses%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.458,"y":29.84,"w":17.173000000000005,"clr":-1,"A":"left","R":[{"T":"(see%20page%202).%20If%20more%20than%20%245%2C000%2C%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.445,"y":29.84,"w":2.6670000000000003,"clr":-1,"A":"left","R":[{"T":"must%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":49.569,"y":29.84,"w":7.335000000000001,"clr":-1,"A":"left","R":[{"T":"use%20Schedule%20C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.752,"y":29.84,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":29.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":31.415,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.415,"w":5.000000000000002,"clr":-1,"A":"left","R":[{"T":"Net%20profit.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.851,"y":31.415,"w":21.522000000000002,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%202%20from%20line%201.%20If%20less%20than%20zero%2C%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.627,"y":31.415,"w":2.6670000000000003,"clr":-1,"A":"left","R":[{"T":"must%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.883,"y":32.102,"w":9.227000000000004,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2012%2C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.546,"y":32.102,"w":1.964,"clr":-1,"A":"left","R":[{"T":"and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.412,"y":32.102,"w":9.727000000000004,"clr":-1,"A":"left","R":[{"T":"Schedule%20SE%2C%20line%202%2C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":39.59,"y":32.102,"w":2.5930000000000004,"clr":-1,"A":"left","R":[{"T":"or%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.257,"y":32.102,"w":10.393000000000002,"clr":-1,"A":"left","R":[{"T":"Form%201040NR%2C%20line%2013%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.925,"y":32.102,"w":1.964,"clr":-1,"A":"left","R":[{"T":"and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.791,"y":32.102,"w":6.892000000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20SE%2C%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.883,"y":32.79,"w":2.8350000000000004,"clr":-1,"A":"left","R":[{"T":"line%202%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.335,"y":32.79,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.979,"y":32.79,"w":10.039000000000003,"clr":-1,"A":"left","R":[{"T":"(Statutory%20employees%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.916,"y":32.79,"w":3.3329999999999997,"clr":-1,"A":"left","R":[{"T":"do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.513,"y":32.79,"w":19.376,"clr":-1,"A":"left","R":[{"T":"report%20this%20amount%20on%20Schedule%20SE%2C%20line%202.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.129,"y":33.477,"w":8.393000000000002,"clr":-1,"A":"left","R":[{"T":"Form%201041%2C%20line%203%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.116,"y":33.477,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":33.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"x":6.331,"y":34.697,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":34.64,"w":13.892000000000003,"clr":-1,"A":"left","R":[{"T":"Information%20on%20Your%20Vehicle.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":38.372,"y":34.64,"w":8.558000000000002,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":51.019,"y":34.64,"w":2.334,"clr":-1,"A":"left","R":[{"T":"only%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":54.902,"y":34.64,"w":22.41100000000001,"clr":-1,"A":"left","R":[{"T":"if%20you%20are%20claiming%20car%20or%20truck%20expenses%20on%20line%202.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":35.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.778,"w":38.60099999999998,"clr":-1,"A":"left","R":[{"T":"When%20did%20you%20place%20your%20vehicle%20in%20service%20for%20business%20purposes%3F%20(month%2C%20day%2C%20year)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.6,"y":35.684,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":88.852,"y":35.858,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.555,"y":37.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":52.162999999999954,"clr":-1,"A":"left","R":[{"T":"Of%20the%20total%20number%20of%20miles%20you%20drove%20your%20vehicle%20during%202013%2C%20enter%20the%20number%20of%20miles%20you%20used%20your%20vehicle%20for%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":38.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.84,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Business","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.589,"y":38.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.877,"y":38.84,"w":10.948000000000004,"clr":-1,"A":"left","R":[{"T":"Commuting%20(see%20page%202)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.527,"y":38.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":74.002,"y":38.84,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"Other","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":40.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.34,"w":29.800000000000008,"clr":-1,"A":"left","R":[{"T":"Was%20your%20vehicle%20available%20for%20personal%20use%20during%20off-duty%20hours%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":40.34,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.996,"y":40.34,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.421,"y":40.34,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":41.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.84,"w":32.651999999999994,"clr":-1,"A":"left","R":[{"T":"Do%20you%20(or%20your%20spouse)%20have%20another%20vehicle%20available%20for%20personal%20use%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":41.84,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.996,"y":41.84,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.421,"y":41.84,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":43.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"8a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":43.34,"w":22.636000000000006,"clr":-1,"A":"left","R":[{"T":"Do%20you%20have%20evidence%20to%20support%20your%20deduction%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":43.34,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.996,"y":43.34,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.421,"y":43.34,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":44.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":44.777,"w":14.779000000000005,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20is%20the%20evidence%20written%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":44.777,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.104,"y":44.84,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.421,"y":44.84,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":45.606,"w":45.34499999999997,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20the%20separate%20instructions%20for%20Schedule%20C%20(Form%201040).","S":-1,"TS":[0,9.719999999999999,1,0]}]},{"oc":"#221f1f","x":64.561,"y":45.624,"w":7.466,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2014374D","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.079,"y":45.624,"w":15.505000000000006,"clr":-1,"A":"left","R":[{"T":"Schedule%20C-EZ%20(Form%201040)%202013","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":10.88,"y":27.59,"w":40.32299999999997,"clr":-1,"A":"left","R":[{"T":"employee%E2%80%9D%20box%20on%20that%20form%20was%20checked%2C%20see%20Statutory%20Employees%20in%20the%20instructions%20for%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.666,"y":31.415,"w":13.897000000000004,"clr":-1,"A":"left","R":[{"T":"use%20Schedule%20C.%20Enter%20on%20both%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":33.477,"w":12.507000000000007,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts%2C%20enter%20on%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8290,"AM":1024,"x":6.229,"y":5.855,"w":53.527,"h":0.872,"TU":"Name of proprietor"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8291,"AM":1024,"x":76.72,"y":5.957,"w":22.26,"h":0.833,"TU":"Social security number (SSN)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A","EN":0},"TI":8292,"AM":0,"x":9.957,"y":17.941,"w":50.338,"h":0.833,"TU":"Line A. Principal business or profession, including product or service."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"B","EN":0},"TI":8293,"AM":0,"x":84.225,"y":17.986,"w":14.832,"h":0.833,"TU":"Line B. Enter business code (see page 2).","MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"C","EN":0},"TI":8294,"AM":0,"x":10.107,"y":19.438,"w":50.263,"h":0.833,"TU":"Line C. Business name. If no separate business name, leave blank."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"D","EN":0},"TI":8295,"AM":0,"x":76.684,"y":19.447,"w":22.275,"h":0.833,"TU":"Line D. Enter your EIN (see page 2)","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"E1","EN":0},"TI":8296,"AM":0,"x":9.986,"y":21.072,"w":67.005,"h":0.833,"TU":"Line E. Business address (including suite or room number)). Address not required if same as on page 1 of your tax return."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":8297,"AM":0,"x":10.107,"y":22.433,"w":37.685,"h":0.833,"TU":"City, town or post office."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":8298,"AM":0,"x":48.195,"y":22.395,"w":4.516,"h":0.88,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":8299,"AM":0,"x":53.68,"y":22.433,"w":23.685,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GRRCPTS","EN":0},"TI":8305,"AM":0,"x":84.207,"y":28.353,"w":11.045,"h":0.874,"TU":"Line 1. Gross receipts. Caution. If this income was reported to you on Form W-2 and the \"Statutory employee) box on that form was checked, see Statutory Employees in the instructions for Schedule C, line 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":8306,"AM":0,"x":84.261,"y":29.951,"w":11.012,"h":0.833,"TU":"Line 2. Total expenses (see page 2). If more than $5,000, you must use Schedule C."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":8307,"AM":1024,"x":84.098,"y":33.57,"w":11.112,"h":0.908},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"VEHICLE_L4A_1_","EN":0},"TI":8308,"AM":0,"x":72.579,"y":36.157,"w":16.583,"h":0.833,"TU":"Line 4. When did you place your vehicle in service for business purposes? (month, day, year) a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L5A_1_","EN":0},"TI":8309,"AM":0,"x":18.563,"y":39.157,"w":14.912,"h":0.833,"TU":"Line 5a. Business miles."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L5B_1_","EN":0},"TI":8310,"AM":0,"x":55.007,"y":39.157,"w":15.592,"h":0.833,"TU":"Line 5b. Commuting miles (see page 2)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L5C_1_","EN":0},"TI":8311,"AM":0,"x":78.808,"y":39.157,"w":16.541,"h":0.833,"TU":"Line 5c. Other miles."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQDY","EN":0},"TI":8300,"AM":0,"x":84.974,"y":23.724,"w":2.27,"h":0.853,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQDN","EN":0},"TI":8301,"AM":0,"x":92.162,"y":23.724,"w":2.27,"h":0.833,"checked":false}],"id":{"Id":"REQD99RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099Y","EN":0},"TI":8302,"AM":0,"x":85.049,"y":24.704,"w":2.34,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099N","EN":0},"TI":8303,"AM":0,"x":92.236,"y":24.649,"w":2.345,"h":0.833,"checked":false}],"id":{"Id":"FILE99RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STATEMP","EN":0},"TI":8304,"AM":0,"x":76.889,"y":28.379,"w":2.495,"h":0.907}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7Y","EN":0},"TI":8312,"AM":0,"x":85.193,"y":40.471,"w":1.631,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7N","EN":0},"TI":8313,"AM":0,"x":92.67,"y":40.448,"w":1.631,"h":0.833,"checked":false}],"id":{"Id":"L7RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6Y","EN":0},"TI":8314,"AM":0,"x":85.148,"y":41.96,"w":1.744,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6N","EN":0},"TI":8315,"AM":0,"x":92.577,"y":41.975,"w":1.744,"h":0.833,"checked":false}],"id":{"Id":"L6RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8AY","EN":0},"TI":8316,"AM":0,"x":85.154,"y":43.472,"w":1.8,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8AN","EN":0},"TI":8317,"AM":0,"x":92.661,"y":43.488,"w":1.575,"h":0.833,"checked":false}],"id":{"Id":"L8ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8BY","EN":0},"TI":8318,"AM":0,"x":85.214,"y":44.951,"w":1.744,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8BN","EN":0},"TI":8319,"AM":0,"x":92.697,"y":44.958,"w":1.631,"h":0.833,"checked":false}],"id":{"Id":"L8BRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Net Profit From Business","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131127091728-08'00'","ModDate":"D:20131223091111-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":5.251,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":7.635,"y":5.251,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.57,"y":3.001,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.57,"y":5.251,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.235,"y":6.751,"w":1.125,"l":25.681,"oc":"#221f1f"},{"x":27.885,"y":6.751,"w":1.125,"l":8.131,"oc":"#221f1f"},{"x":2.235,"y":8.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":6.891,"y":12.033,"w":0.75,"l":0.674,"oc":"#221f1f"},{"x":7.565,"y":9.507,"w":0.75,"l":0.637,"oc":"#221f1f"},{"x":9.001,"y":16.876,"w":0.75,"l":9.9,"oc":"#221f1f"},{"x":9.001,"y":8.673,"w":0.75,"l":9.9,"oc":"#221f1f"},{"x":18.901,"y":16.501,"w":0.75,"l":2.889,"oc":"#221f1f"},{"x":20.251,"y":13.501,"w":0.75,"l":3.15,"oc":"#221f1f"},{"x":20.251,"y":12.001,"w":0.75,"l":3.15,"oc":"#221f1f"},{"x":20.251,"y":13.501,"w":0.75,"l":1.542,"oc":"#221f1f"},{"x":21.741,"y":9.691,"w":0.75,"l":1.159,"oc":"#221f1f"},{"x":24.751,"y":16.664,"w":0.75,"l":9.9,"oc":"#221f1f"},{"x":24.751,"y":9.001,"w":0.75,"l":9.9,"oc":"#221f1f"},{"x":2.235,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":3.585,"y":17.251,"w":0.75,"l":24.37,"oc":"#221f1f"},{"x":2.235,"y":18.751,"w":0.75,"l":25.72,"oc":"#221f1f"},{"x":27.885,"y":17.251,"w":2.625,"l":1.381,"oc":"#221f1f"},{"x":29.235,"y":17.251,"w":2.625,"l":6.82,"oc":"#221f1f"},{"x":2.235,"y":20.251,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":27.885,"y":18.751,"w":2.625,"l":1.381,"oc":"#221f1f"},{"x":29.235,"y":18.751,"w":2.625,"l":6.781,"oc":"#221f1f"},{"x":27.885,"y":20.251,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":3.585,"y":21.751,"w":0.75,"l":32.431,"oc":"#221f1f"},{"x":3.585,"y":23.251,"w":0.75,"l":32.431,"oc":"#221f1f"},{"x":2.235,"y":23.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":3.585,"y":24.751,"w":0.75,"l":27.031,"oc":"#221f1f"},{"x":30.585,"y":24.751,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":31.051,"y":24.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":31.051,"y":24.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.735,"y":24.751,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":33.751,"y":24.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.751,"y":24.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":2.235,"y":24.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":25.501,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":27.001,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":29.235,"y":29.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":29.251,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":29.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":29.235,"y":30.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":30.751,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":30.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":34.501,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":36.001,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":26.395,"y":36.751,"w":0.75,"l":6.021,"oc":"#221f1f","dsh":1},{"x":6.75,"y":39.751,"w":0.75,"l":5.416,"oc":"#221f1f","dsh":1},{"x":20.001,"y":39.751,"w":0.75,"l":5.665,"oc":"#221f1f","dsh":1},{"x":28.657,"y":39.751,"w":0.75,"l":6.009,"oc":"#221f1f","dsh":1},{"x":2.235,"y":45.749,"w":1.5,"l":19.381,"oc":"#221f1f"},{"x":21.585,"y":45.749,"w":1.5,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":45.749,"w":1.5,"l":7.231,"oc":"#221f1f"}],"VLines":[{"x":7.651,"y":2.235,"w":1.5,"l":3.047,"oc":"#221f1f"},{"x":30.601,"y":2.235,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":2.985,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":27.901,"y":5.235,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":7.565,"y":9.539,"w":0.75,"l":2.463,"oc":"#221f1f"},{"x":18.901,"y":8.673,"w":0.75,"l":8.203,"oc":"#221f1f"},{"x":9.001,"y":8.673,"w":0.75,"l":8.203,"oc":"#221f1f"},{"x":21.793,"y":13.501,"w":0.75,"l":3.015,"oc":"#221f1f"},{"x":23.401,"y":12.001,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":20.251,"y":12.001,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":21.741,"y":9.691,"w":0.75,"l":2.295,"oc":"#221f1f"},{"x":34.651,"y":9.001,"w":0.75,"l":7.663,"oc":"#221f1f"},{"x":24.751,"y":9.001,"w":0.75,"l":7.663,"oc":"#221f1f"},{"x":27.901,"y":17.236,"w":2.625,"l":0.781,"oc":"#221f1f"},{"x":27.901,"y":17.985,"w":2.625,"l":0.781,"oc":"#221f1f"},{"x":36.001,"y":17.196,"w":2.625,"l":1.57,"oc":"#221f1f"},{"x":30.601,"y":18.001,"w":0.75,"l":0.7,"oc":"#181616"},{"x":31.505,"y":18.001,"w":0.75,"l":0.7,"oc":"#181616"},{"x":32.408,"y":18.001,"w":0.75,"l":0.7,"oc":"#181616"},{"x":33.312,"y":18.001,"w":0.75,"l":0.7,"oc":"#181616"},{"x":34.216,"y":18.001,"w":0.75,"l":0.7,"oc":"#181616"},{"x":35.12,"y":18.001,"w":0.75,"l":0.7,"oc":"#181616"},{"x":27.901,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.901,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":29.705,"y":19.576,"w":0.75,"l":0.563,"oc":"#181616","dsh":1},{"x":30.608,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":31.512,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":32.416,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":33.32,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":34.177,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":35.09,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":35.985,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":31.551,"y":24.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":31.051,"y":24.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":34.251,"y":24.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.751,"y":24.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.751,"y":24.626,"w":0.75,"l":0.125,"oc":"#221f1f"},{"x":30.601,"y":26.985,"w":0.75,"l":2.289,"oc":"#221f1f"},{"x":29.251,"y":26.985,"w":0.75,"l":2.289,"oc":"#221f1f"},{"x":34.651,"y":26.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":28.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":28.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.601,"y":29.235,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":29.251,"y":29.235,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.651,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":29.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":29.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.601,"y":30.735,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":29.251,"y":30.735,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":34.651,"y":30.735,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":30.601,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":7.126,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.251,"y":25.876,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.251,"y":34.876,"w":2.25,"h":0.75,"oc":"#221f1f"}],"Texts":[{"x":29.764,"y":9.942,"w":5.558,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 4562, ","S":-1,"TS":[0,11,1,0]}]},{"x":2.001,"y":2.01,"w":8.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"SCHEDULE C-EZ ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":2.697,"w":5.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(Form 1040) ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":3.8129999999999997,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":2.001,"y":4.314,"w":13.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99) ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":13.976,"y":2.101,"w":12.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Net Profit From Business ","S":11,"TS":[0,18,1,0]}]},{"x":16.423,"y":2.795,"w":9.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(Sole Proprietorship)","S":-1,"TS":[0,11,1,0]}]},{"x":9.813,"y":3.5279999999999996,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":10.188,"y":3.5279999999999996,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":10.345,"y":3.6210000000000004,"w":35.235,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Partnerships, joint ventures, etc., generally must file Form 1065 or 1065-B.","S":-1,"TS":[0,11,1,0]}]},{"x":27.938,"y":3.5279999999999996,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":28.042,"y":3.5279999999999996,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,9,0,0]}]},{"x":10.23,"y":4.153,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":10.73,"y":4.153,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":10.761,"y":4.246,"w":18.729,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach to Form 1040, 1040NR, or 1041. ","S":-1,"TS":[0,11,1,0]}]},{"x":20.279,"y":4.153,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":19.321,"y":4.153,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":20.758,"y":4.153,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":19.852,"y":4.246,"w":13.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"See instructions on page 2.","S":-1,"TS":[0,11,1,0]}]},{"x":31.02,"y":1.9729999999999999,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.426,"y":3.3310000000000004,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.506,"y":3.3310000000000004,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":31.101,"y":3.8449999999999998,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.101,"y":4.291,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":34.002,"y":4.291,"w":1.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"09A","S":10,"TS":[0,14,1,0]}]},{"x":35.125,"y":4.291,"w":0.334,"oc":"#221f1f","sw":0.43490625,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":4.938,"w":8.482,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name of proprietor","S":2,"TS":[0,10,0,0]}]},{"x":27.901,"y":4.938,"w":14.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Social security number (SSN)","S":8,"TS":[0,10,1,0]}]},{"x":2.327,"y":6.947,"w":2.555,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I","S":-1,"TS":[0,13,0,0]}]},{"x":5.151,"y":6.89,"w":9.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"General Information","S":10,"TS":[0,14,1,0]}]},{"x":2.451,"y":9.965,"w":6.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You May Use ","S":9,"TS":[0,12,1,0]}]},{"x":2.451,"y":10.652,"w":7.335,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule C-EZ ","S":9,"TS":[0,12,1,0]}]},{"x":2.451,"y":11.339,"w":5.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Instead of ","S":9,"TS":[0,12,1,0]}]},{"x":2.451,"y":12.027,"w":6.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule C ","S":9,"TS":[0,12,1,0]}]},{"x":2.451,"y":12.714,"w":5.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Only If You:","S":9,"TS":[0,12,1,0]}]},{"x":7.949999999999999,"y":8.894,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"x":9.201,"y":9.093,"w":17.375,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Had business expenses of $5,000 or ","S":-1,"TS":[0,11,0,0]}]},{"x":9.607,"y":9.64,"w":2.593,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"less. ","S":-1,"TS":[0,11,0,0]}]},{"x":9.201,"y":10.437,"w":17.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Use the cash method of accounting. ","S":-1,"TS":[0,11,0,0]}]},{"x":9.201,"y":11.234,"w":17.654,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Did not have an inventory at any time ","S":-1,"TS":[0,11,0,0]}]},{"x":9.607,"y":11.781,"w":7.539,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"during the year. ","S":-1,"TS":[0,11,0,0]}]},{"x":9.201,"y":12.578,"w":15.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Did not have a net loss from your ","S":-1,"TS":[0,11,0,0]}]},{"x":9.607,"y":13.125,"w":4.798,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"business. ","S":-1,"TS":[0,11,0,0]}]},{"x":9.201,"y":13.922,"w":18.244,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Had only one business as either a sole ","S":-1,"TS":[0,11,0,0]}]},{"x":9.607,"y":14.469,"w":16.261,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"proprietor, qualified joint venture, or ","S":-1,"TS":[0,11,0,0]}]},{"x":9.607,"y":15.016,"w":9.132,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"statutory employee. ","S":-1,"TS":[0,11,0,0]}]},{"x":9.201,"y":15.75,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":20.362,"y":12.121,"w":4.444,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"And You:","S":9,"TS":[0,12,1,0]}]},{"x":22.42,"y":9.126,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"x":24.951,"y":9.186,"w":16.986,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Had no employees during the year. ","S":-1,"TS":[0,11,0,0]}]},{"x":24.951,"y":9.942,"w":11.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Are not required to file ","S":-1,"TS":[0,11,0,0]}]},{"x":25.326,"y":10.489,"w":15.853,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Depreciation and Amortization, for ","S":-1,"TS":[0,11,0,0]}]},{"x":25.326,"y":11.036,"w":17.022,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"this business. See the instructions for ","S":-1,"TS":[0,11,0,0]}]},{"x":25.326,"y":11.583,"w":16.764,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule C, line 13, to find out if you ","S":-1,"TS":[0,11,0,0]}]},{"x":25.326,"y":12.13,"w":4.613,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"must file. ","S":-1,"TS":[0,11,0,0]}]},{"x":24.951,"y":12.858,"w":17.745,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Do not deduct expenses for business ","S":-1,"TS":[0,11,0,0]}]},{"x":25.326,"y":13.483,"w":8.614,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"use of your home. ","S":-1,"TS":[0,11,0,0]}]},{"x":24.951,"y":14.239,"w":15.816,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Do not have prior year unallowed ","S":-1,"TS":[0,11,0,0]}]},{"x":25.326,"y":14.786,"w":14.409,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"passive activity losses from this ","S":-1,"TS":[0,11,0,0]}]},{"x":25.326,"y":15.332999999999998,"w":4.242,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"business.","S":-1,"TS":[0,11,0,0]}]},{"x":2.505,"y":16.983,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11,1,0]}]},{"x":3.351,"y":16.985,"w":27.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Principal business or profession, including product or service","S":-1,"TS":[0,11,0,0]}]},{"x":28.128,"y":17.028,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"x":29.001,"y":17.014,"w":15.839,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Enter business code (see page 2)","S":-1,"TS":[0,9.559999999999999,1,0]}]},{"x":29.611,"y":17.787,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,13,0,0]}]},{"x":2.491,"y":18.487,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" C ","S":-1,"TS":[0,11,1,0]}]},{"x":3.351,"y":18.485,"w":26.378,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business name. If no separate business name, leave blank.","S":-1,"TS":[0,11,0,0]}]},{"x":28.117,"y":18.528,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"D","S":9,"TS":[0,12,1,0]}]},{"x":29.001,"y":18.514,"w":13.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Enter your EIN (see page 2)","S":-1,"TS":[0,11,1,0]}]},{"x":2.514,"y":19.983,"w":0.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"E","S":-1,"TS":[0,11,1,0]}]},{"x":3.351,"y":19.983,"w":48.417,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business address (including suite or room no.). Address not required if same as on page 1 of your tax return.","S":-1,"TS":[0,11,0,0]}]},{"x":3.351,"y":21.483,"w":20.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"City, town or post office, state, and ZIP code","S":-1,"TS":[0,11,0,0]}]},{"x":2.528,"y":23.006,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"F","S":-1,"TS":[0,11,1,0]}]},{"x":3.351,"y":23.04,"w":45.477,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you make any payments in 2013 that would require you to file Form(s) 1099? (see the Schedule C ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":23.728,"w":5.723,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":7.251,"y":23.728,"w":39.99,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"x":31.476,"y":23.84,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.176,"y":23.84,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.486,"y":24.608,"w":0.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" G ","S":-1,"TS":[0,11,1,0]}]},{"x":3.351,"y":24.59,"w":24.022,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If “Yes,” did you or will you file required Forms 1099? ","S":3,"TS":[0,12,0,0]}]},{"x":17.001,"y":24.59,"w":22.661,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"x":31.476,"y":24.59,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.176,"y":24.59,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.235,"y":25.697,"w":2.85,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II","S":-1,"TS":[0,13,0,0]}]},{"x":5.151,"y":25.635,"w":10.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Figure Your Net Profit","S":10,"TS":[0,14,1,0]}]},{"x":2.588,"y":26.953,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":26.903,"w":11.559,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Gross receipts. Caution.","S":9,"TS":[0,12,1,0]}]},{"x":9.678,"y":26.903,"w":30.396,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" If this income was reported to you on Form W-2 and the “Statutory ","S":3,"TS":[0,12,0,0]}]},{"x":3.7969999999999997,"y":28.288,"w":15.56,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule C, line 1, and check here","S":3,"TS":[0,12,0,0]}]},{"x":13.247,"y":28.288,"w":23.994,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":26.641,"y":28.195,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":48,"TS":[3,10,0,0]}]},{"x":26.763,"y":28.195,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.519,"y":28.34,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":29.84,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":29.84,"w":7.503,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Total expenses ","S":9,"TS":[0,12,1,0]}]},{"x":7.644,"y":29.84,"w":17.173,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see page 2). If more than $5,000, you ","S":3,"TS":[0,12,0,0]}]},{"x":16.366,"y":29.84,"w":2.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"must ","S":9,"TS":[0,12,1,0]}]},{"x":17.866,"y":29.84,"w":7.335,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"use Schedule C ","S":3,"TS":[0,12,0,0]}]},{"x":23.751,"y":29.84,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"x":29.519,"y":29.84,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":31.415,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":32.102,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":32.79,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":31.415,"w":5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Net profit. ","S":9,"TS":[0,12,1,0]}]},{"x":6.332,"y":31.415,"w":21.522,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 2 from line 1. If less than zero, you ","S":3,"TS":[0,12,0,0]}]},{"x":17.16,"y":31.415,"w":2.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"must ","S":9,"TS":[0,12,1,0]}]},{"x":27.214,"y":31.415,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.7990000000000004,"y":32.102,"w":9.227,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1040, line 12, ","S":9,"TS":[0,12,1,0]}]},{"x":8.403,"y":32.102,"w":1.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and ","S":3,"TS":[0,12,0,0]}]},{"x":9.445,"y":32.102,"w":9.727,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule SE, line 2, ","S":9,"TS":[0,12,1,0]}]},{"x":14.237,"y":32.102,"w":2.593,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or on ","S":3,"TS":[0,12,0,0]}]},{"x":15.571,"y":32.102,"w":10.393,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1040NR, line 13 ","S":9,"TS":[0,12,1,0]}]},{"x":20.905,"y":32.102,"w":1.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and ","S":3,"TS":[0,12,0,0]}]},{"x":21.947,"y":32.102,"w":6.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule SE, ","S":9,"TS":[0,12,1,0]}]},{"x":3.7990000000000004,"y":32.79,"w":2.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"line 2 ","S":9,"TS":[0,12,1,0]}]},{"x":5.417,"y":32.79,"w":7.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions).","S":3,"TS":[0,12,0,0]}]},{"x":9.652,"y":32.79,"w":10.039,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Statutory employees, ","S":3,"TS":[0,12,0,0]}]},{"x":14.72,"y":32.79,"w":3.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"do not ","S":9,"TS":[0,12,1,0]}]},{"x":16.391,"y":32.79,"w":19.376,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"report this amount on Schedule SE, line 2.) ","S":3,"TS":[0,12,0,0]}]},{"x":6.766,"y":33.477,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":10.07,"y":33.477,"w":8.393,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1041, line 3 ","S":9,"TS":[0,12,1,0]}]},{"x":16.247,"y":33.477,"w":22.661,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"x":29.519,"y":33.59,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"x":2.143,"y":34.697,"w":3.145,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III","S":-1,"TS":[0,13,0,0]}]},{"x":5.151,"y":34.64,"w":13.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Information on Your Vehicle. ","S":10,"TS":[0,14,1,0]}]},{"x":13.795,"y":34.64,"w":8.558,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete this part ","S":-1,"TS":[0,13,0,0]}]},{"x":18.393,"y":34.64,"w":2.334,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"only ","S":10,"TS":[0,14,1,0]}]},{"x":19.805,"y":34.64,"w":22.411,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"if you are claiming car or truck expenses on line 2.","S":-1,"TS":[0,13,0,0]}]},{"x":2.588,"y":35.84,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":35.778,"w":38.601,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"When did you place your vehicle in service for business purposes? (month, day, year) ","S":3,"TS":[0,12,0,0]}]},{"x":25.514,"y":35.684,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":32.151,"y":35.858,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" .","S":-1,"TS":[0,11,0,0]}]},{"x":2.588,"y":37.34,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":37.34,"w":52.163,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Of the total number of miles you drove your vehicle during 2013, enter the number of miles you used your vehicle for:","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":38.84,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":38.84,"w":4.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business","S":3,"TS":[0,12,0,0]}]},{"x":12.419,"y":38.84,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"x":13.251,"y":38.84,"w":10.948,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Commuting (see page 2)","S":3,"TS":[0,12,0,0]}]},{"x":25.851,"y":38.84,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"x":26.751,"y":38.84,"w":2.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":40.34,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":40.34,"w":29.8,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Was your vehicle available for personal use during off-duty hours? ","S":3,"TS":[0,12,0,0]}]},{"x":20.751,"y":40.34,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":31.476,"y":40.34,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.176,"y":40.34,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":41.84,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":41.84,"w":32.652,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you (or your spouse) have another vehicle available for personal use? ","S":3,"TS":[0,12,0,0]}]},{"x":22.251,"y":41.84,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":31.476,"y":41.84,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.176,"y":41.84,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":43.34,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8a","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":43.34,"w":22.636,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you have evidence to support your deduction? ","S":3,"TS":[0,12,0,0]}]},{"x":17.001,"y":43.34,"w":23.994,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":31.476,"y":43.34,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.176,"y":43.34,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.901,"y":44.84,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":44.777,"w":14.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If “Yes,” is the evidence written? ","S":3,"TS":[0,12,0,0]}]},{"x":12.501,"y":44.777,"w":31.992,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"x":31.515,"y":44.84,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.176,"y":44.84,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":45.606,"w":45.345,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see the separate instructions for Schedule C (Form 1040).","S":-1,"TS":[0,9.719999999999999,1,0]}]},{"x":23.318,"y":45.624,"w":7.466,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 14374D","S":2,"TS":[0,10,0,0]}]},{"x":28.96,"y":45.624,"w":15.505,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule C-EZ (Form 1040) 2013","S":8,"TS":[0,10,1,0]}]},{"x":3.7969999999999997,"y":27.59,"w":40.323,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"employee” box on that form was checked, see Statutory Employees in the instructions for ","S":3,"TS":[0,12,0,0]}]},{"x":18.628,"y":31.415,"w":13.897,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"use Schedule C. Enter on both ","S":3,"TS":[0,12,0,0]}]},{"x":3.7969999999999997,"y":33.477,"w":12.507,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Estates and trusts, enter on ","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":747,"AM":1024,"TU":"Name of proprietor","x":2.265,"y":5.855,"w":19.465,"h":0.872},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":748,"AM":1024,"TU":"Social security number (SSN)","x":27.898,"y":5.957,"w":8.094,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A","EN":0},"TI":749,"AM":0,"TU":"Line A. Principal business or profession, including product or service.","x":3.621,"y":17.941,"w":18.305,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"B","EN":0},"TI":750,"AM":0,"TU":"Line B. Enter business code (see page 2).","x":30.627,"y":17.986,"w":5.394,"h":0.833,"MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"C","EN":0},"TI":751,"AM":0,"TU":"Line C. Business name. If no separate business name, leave blank.","x":3.675,"y":19.438,"w":18.277,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"D","EN":0},"TI":752,"AM":0,"TU":"Line D. Enter your EIN (see page 2)","x":27.885,"y":19.447,"w":8.1,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"E1","EN":0},"TI":753,"AM":0,"TU":"Line E. Business address (including suite or room number)). Address not required if same as on page 1 of your tax return.","x":3.631,"y":21.072,"w":24.365,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":754,"AM":0,"TU":"City, town or post office.","x":3.675,"y":22.433,"w":13.704,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":755,"AM":0,"TU":"State.","x":17.525,"y":22.395,"w":1.324,"h":0.88,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"no entry"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":756,"AM":0,"TU":"Zip code.","x":19.52,"y":22.433,"w":8.613,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GRRCPTS","EN":0},"TI":762,"AM":0,"TU":"Line 1. Gross receipts. Caution. If this income was reported to you on Form W-2 and the \"Statutory employee) box on that form was checked, see Statutory Employees in the instructions for Schedule C, line 1.","x":30.621,"y":28.353,"w":4.016,"h":0.874},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":763,"AM":0,"TU":"Line 2. Total expenses (see page 2). If more than $5,000, you must use Schedule C.","x":30.64,"y":29.951,"w":4.004,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":764,"AM":1024,"x":30.581,"y":33.57,"w":4.041,"h":0.908},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"VEHICLE_L4A_1_","EN":0},"TI":765,"AM":0,"TU":"Line 4. When did you place your vehicle in service for business purposes? (month, day, year) a","x":26.392,"y":36.157,"w":6.03,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L5A_1_","EN":0},"TI":766,"AM":0,"TU":"Line 5a. Business miles.","x":6.75,"y":39.157,"w":5.422,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L5B_1_","EN":0},"TI":767,"AM":0,"TU":"Line 5b. Commuting miles (see page 2).","x":20.003,"y":39.157,"w":5.67,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L5C_1_","EN":0},"TI":768,"AM":0,"TU":"Line 5c. Other miles.","x":28.657,"y":39.157,"w":6.015,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQDY","EN":0},"TI":757,"AM":0,"TU":"Line F. Checkboxes.","x":30.9,"y":23.724,"w":0.825,"h":0.853,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQDN","EN":0},"TI":758,"AM":0,"TU":"Line F. Checkboxes.","x":33.513,"y":23.724,"w":0.826,"h":0.833,"checked":false}],"id":{"Id":"REQD99RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099Y","EN":0},"TI":759,"AM":0,"TU":"Line G. Checkboxes.","x":30.927,"y":24.704,"w":0.851,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099N","EN":0},"TI":760,"AM":0,"TU":"Line G. Checkboxes.","x":33.541,"y":24.649,"w":0.853,"h":0.833,"checked":false}],"id":{"Id":"FILE99RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STATEMP","EN":0},"TI":761,"AM":0,"TU":"Line 1. Checkbox.","x":27.96,"y":28.379,"w":0.907,"h":0.907}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7Y","EN":0},"TI":769,"AM":0,"TU":"Line 6. Checkboxes.","x":30.979,"y":40.471,"w":0.593,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7N","EN":0},"TI":770,"AM":0,"TU":"Line 6. Checkboxes.","x":33.698,"y":40.448,"w":0.593,"h":0.833,"checked":false}],"id":{"Id":"L7RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6Y","EN":0},"TI":771,"AM":0,"TU":"Line 7. Checkboxes.","x":30.963,"y":41.96,"w":0.634,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6N","EN":0},"TI":772,"AM":0,"TU":"Line 7. Checkboxes.","x":33.664,"y":41.975,"w":0.634,"h":0.833,"checked":false}],"id":{"Id":"L6RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8AY","EN":0},"TI":773,"AM":0,"TU":"Line 8a. Checkboxes.","x":30.965,"y":43.472,"w":0.655,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8AN","EN":0},"TI":774,"AM":0,"TU":"Line 8a. Checkboxes.","x":33.695,"y":43.488,"w":0.573,"h":0.833,"checked":false}],"id":{"Id":"L8ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8BY","EN":0},"TI":775,"AM":0,"TU":"Line 8b. Checkboxes.","x":30.987,"y":44.951,"w":0.634,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8BN","EN":0},"TI":776,"AM":0,"TU":"Line 8b. Checkboxes.","x":33.708,"y":44.958,"w":0.593,"h":0.833,"checked":false}],"id":{"Id":"L8BRB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHCEZT.json b/test/data/fd/form/FSCHCEZT.json index 617fe1ef..6ca59d0a 100755 --- a/test/data/fd/form/FSCHCEZT.json +++ b/test/data/fd/form/FSCHCEZT.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.997,"y":5.251,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.066,"y":3.001,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":5.251,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":70.624},{"oc":"#221f1f","x":76.684,"y":6.751,"w":1.125,"l":22.361},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":18.951,"y":12.033,"w":0.75,"l":1.853},{"oc":"#221f1f","x":20.804,"y":9.507,"w":0.75,"l":1.751},{"oc":"#221f1f","x":24.752,"y":16.876,"w":0.75,"l":27.225},{"oc":"#221f1f","x":24.752,"y":8.673,"w":0.75,"l":27.225},{"oc":"#221f1f","x":51.977,"y":16.501,"w":0.75,"l":7.945},{"oc":"#221f1f","x":55.69,"y":13.501,"w":0.75,"l":8.663},{"oc":"#221f1f","x":55.69,"y":12.001,"w":0.75,"l":8.663},{"oc":"#221f1f","x":55.69,"y":13.501,"w":0.75,"l":4.24},{"oc":"#221f1f","x":59.787,"y":9.691,"w":0.75,"l":3.188},{"oc":"#221f1f","x":68.065,"y":16.664,"w":0.75,"l":27.225},{"oc":"#221f1f","x":68.065,"y":9.001,"w":0.75,"l":27.225},{"oc":"#221f1f","x":6.147,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":17.251,"w":0.75,"l":67.019},{"oc":"#221f1f","x":6.147,"y":18.751,"w":0.75,"l":70.731},{"oc":"#221f1f","x":76.684,"y":17.251,"w":2.625,"l":3.798},{"oc":"#221f1f","x":80.397,"y":17.251,"w":2.625,"l":18.756},{"oc":"#221f1f","x":6.147,"y":20.251,"w":0.75,"l":70.624},{"oc":"#221f1f","x":76.684,"y":18.751,"w":2.625,"l":3.798},{"oc":"#221f1f","x":80.397,"y":18.751,"w":2.625,"l":18.648},{"oc":"#221f1f","x":76.684,"y":20.251,"w":0.75,"l":22.361},{"oc":"#221f1f","x":9.859,"y":21.751,"w":0.75,"l":89.186},{"oc":"#221f1f","x":9.859,"y":23.251,"w":0.75,"l":89.186},{"oc":"#221f1f","x":6.147,"y":23.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.859,"y":24.751,"w":0.75,"l":74.336},{"oc":"#221f1f","x":84.109,"y":24.751,"w":0.75,"l":8.748},{"oc":"#221f1f","x":85.39,"y":24.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":85.39,"y":24.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":92.772,"y":24.751,"w":0.75,"l":6.273},{"oc":"#221f1f","x":92.815,"y":24.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":92.815,"y":24.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.147,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":25.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":27.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":29.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":29.251,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":29.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":30.751,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":34.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":36.001,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":72.587,"y":36.751,"w":0.75,"l":16.558},{"dsh":1,"oc":"#221f1f","x":18.564,"y":39.751,"w":0.75,"l":14.894},{"dsh":1,"oc":"#221f1f","x":55.004,"y":39.751,"w":0.75,"l":15.579},{"dsh":1,"oc":"#221f1f","x":78.807,"y":39.751,"w":0.75,"l":16.525},{"oc":"#221f1f","x":6.147,"y":45.749,"w":1.5,"l":53.299},{"oc":"#221f1f","x":59.359,"y":45.749,"w":1.5,"l":19.886},{"oc":"#221f1f","x":79.159,"y":45.749,"w":1.5,"l":19.886}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.152,"y":2.985,"w":1.5,"l":2.281},{"oc":"#221f1f","x":76.727,"y":5.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":20.804,"y":9.539,"w":0.75,"l":2.463},{"oc":"#221f1f","x":51.977,"y":8.673,"w":0.75,"l":8.203},{"oc":"#221f1f","x":24.752,"y":8.673,"w":0.75,"l":8.203},{"oc":"#221f1f","x":59.929,"y":13.501,"w":0.75,"l":3.015},{"oc":"#221f1f","x":64.352,"y":12.001,"w":0.75,"l":1.5},{"oc":"#221f1f","x":55.69,"y":12.001,"w":0.75,"l":1.5},{"oc":"#221f1f","x":59.787,"y":9.691,"w":0.75,"l":2.295},{"oc":"#221f1f","x":95.29,"y":9.001,"w":0.75,"l":7.663},{"oc":"#221f1f","x":68.065,"y":9.001,"w":0.75,"l":7.663},{"oc":"#221f1f","x":76.727,"y":17.236,"w":2.625,"l":0.781},{"oc":"#221f1f","x":76.727,"y":17.985,"w":2.625,"l":0.781},{"oc":"#221f1f","x":99.002,"y":17.196,"w":2.625,"l":1.57},{"oc":"#181616","x":84.152,"y":18.001,"w":0.75,"l":0.7},{"oc":"#181616","x":86.638,"y":18.001,"w":0.75,"l":0.7},{"oc":"#181616","x":89.123,"y":18.001,"w":0.75,"l":0.7},{"oc":"#181616","x":91.608,"y":18.001,"w":0.75,"l":0.7},{"oc":"#181616","x":94.094,"y":18.001,"w":0.75,"l":0.7},{"oc":"#181616","x":96.579,"y":18.001,"w":0.75,"l":0.7},{"oc":"#221f1f","x":76.727,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.727,"y":19.485,"w":0.75,"l":0.781},{"oc":"#181616","x":79.202,"y":19.501,"w":0.75,"l":0.731},{"dsh":1,"oc":"#181616","x":81.688,"y":19.576,"w":0.75,"l":0.563},{"oc":"#181616","x":84.173,"y":19.501,"w":0.75,"l":0.731},{"oc":"#181616","x":86.658,"y":19.501,"w":0.75,"l":0.731},{"oc":"#181616","x":89.143,"y":19.501,"w":0.75,"l":0.731},{"oc":"#181616","x":91.629,"y":19.501,"w":0.75,"l":0.731},{"oc":"#181616","x":93.987,"y":19.501,"w":0.75,"l":0.731},{"oc":"#181616","x":96.498,"y":19.501,"w":0.75,"l":0.731},{"oc":"#181616","x":98.958,"y":19.501,"w":0.75,"l":0.731},{"oc":"#221f1f","x":86.765,"y":24.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":85.39,"y":24.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":94.19,"y":24.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":92.815,"y":24.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":92.815,"y":24.626,"w":0.75,"l":0.125},{"oc":"#221f1f","x":84.152,"y":26.985,"w":0.75,"l":2.289},{"oc":"#221f1f","x":80.44,"y":26.985,"w":0.75,"l":2.289},{"oc":"#221f1f","x":95.29,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":28.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":29.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":29.235,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":29.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":30.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":80.44,"y":30.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":84.152,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":7.126,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":25.876,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":34.876,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":0,"y":48.675,"w":2.27,"h":0.825,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":48.737,"w":1.926,"h":0.7,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.737,"w":1.926,"h":0.7,"clr":-1},{"oc":"#7f7f7f","x":0.172,"y":48.949,"w":1.287,"h":0.489,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.949,"w":1.287,"h":0.489,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.949,"w":1.456,"h":0.489,"clr":-1}],"Texts":[{"oc":"#221f1f","x":82.288,"y":9.942,"w":5.558,"clr":-1,"A":"left","R":[{"T":"Form%204562%2C%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.94,"y":2.01,"w":8.667,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20C-EZ%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":2.697,"w":5.9460000000000015,"clr":-1,"A":"left","R":[{"T":"(Form%201040)%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.8129999999999997,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.314,"w":13.279000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":38.871,"y":2.101,"w":12.280000000000003,"clr":-1,"A":"left","R":[{"T":"Net%20Profit%20From%20Business%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":45.6,"y":2.795,"w":9.946000000000003,"clr":-1,"A":"left","R":[{"T":"(Sole%20Proprietorship)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":27.425,"y":3.5279999999999996,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":28.886,"y":3.6210000000000004,"w":35.234999999999985,"clr":-1,"A":"left","R":[{"T":"Partnerships%2C%20joint%20ventures%2C%20etc.%2C%20generally%20must%20file%20Form%201065%20or%201065-B.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":28.57,"y":4.153,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":30.031,"y":4.246,"w":18.729000000000006,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%201040NR%2C%20or%201041.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":53.569,"y":4.153,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":55.031,"y":4.246,"w":13.004000000000003,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20on%20page%202.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9729999999999999,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.3310000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.829,"y":3.3310000000000004,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.965,"y":3.8449999999999998,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":4.291,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.942,"y":4.291,"w":1.834,"clr":-1,"A":"left","R":[{"T":"09A","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.938,"w":8.482000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20proprietor","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.165,"y":4.938,"w":14.003999999999998,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20(SSN)","S":8,"TS":[0,10,1,0]}]},{"x":6.838,"y":6.947,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":6.89,"w":9.502000000000002,"clr":-1,"A":"left","R":[{"T":"General%20Information","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.177,"y":9.965,"w":6.502000000000001,"clr":-1,"A":"left","R":[{"T":"You%20May%20Use%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.177,"y":10.652,"w":7.334999999999999,"clr":-1,"A":"left","R":[{"T":"Schedule%20C-EZ%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.177,"y":11.339,"w":5.001000000000001,"clr":-1,"A":"left","R":[{"T":"Instead%20of%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.177,"y":12.027,"w":6.002000000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20C%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.177,"y":12.714,"w":5.612,"clr":-1,"A":"left","R":[{"T":"Only%20If%20You%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.3,"y":8.894,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.74,"y":9.093,"w":17.375000000000004,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Had%20business%20expenses%20of%20%245%2C000%20or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.856,"y":9.64,"w":2.593,"clr":-1,"A":"left","R":[{"T":"less.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.74,"y":10.437,"w":17.283,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Use%20the%20cash%20method%20of%20accounting.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.74,"y":11.234,"w":17.654,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Did%20not%20have%20an%20inventory%20at%20any%20time%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.856,"y":11.781,"w":7.5390000000000015,"clr":-1,"A":"left","R":[{"T":"during%20the%20year.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.74,"y":12.578,"w":15.855999999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Did%20not%20have%20a%20net%20loss%20from%20your%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.856,"y":13.125,"w":4.798,"clr":-1,"A":"left","R":[{"T":"business.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":25.74,"y":13.922,"w":18.244000000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Had%20only%20one%20business%20as%20either%20a%20sole%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.856,"y":14.469,"w":16.261000000000003,"clr":-1,"A":"left","R":[{"T":"proprietor%2C%20qualified%20joint%20venture%2C%20or%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.856,"y":15.016,"w":9.132000000000003,"clr":-1,"A":"left","R":[{"T":"statutory%20employee.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":56.433,"y":12.121,"w":4.444,"clr":-1,"A":"left","R":[{"T":"And%20You%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":62.091,"y":9.126,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.052,"y":9.186,"w":16.986,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Had%20no%20employees%20during%20the%20year.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.052,"y":9.942,"w":11.001000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Are%20not%20required%20to%20file%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.083,"y":10.489,"w":15.853000000000002,"clr":-1,"A":"left","R":[{"T":"Depreciation%20and%20Amortization%2C%20for%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.083,"y":11.036,"w":17.022,"clr":-1,"A":"left","R":[{"T":"this%20business.%20See%20the%20instructions%20for%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.083,"y":11.583,"w":16.764000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20C%2C%20line%2013%2C%20to%20find%20out%20if%20you%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.083,"y":12.13,"w":4.613000000000001,"clr":-1,"A":"left","R":[{"T":"must%20file.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.052,"y":12.858,"w":17.745,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Do%20not%20deduct%20expenses%20for%20business%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.083,"y":13.483,"w":8.614,"clr":-1,"A":"left","R":[{"T":"use%20of%20your%20home.%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.052,"y":14.239,"w":15.816000000000006,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Do%20not%20have%20prior%20year%20unallowed%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.083,"y":14.786,"w":14.409000000000002,"clr":-1,"A":"left","R":[{"T":"passive%20activity%20losses%20from%20this%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":70.083,"y":15.332999999999998,"w":4.242,"clr":-1,"A":"left","R":[{"T":"business.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.325,"y":16.983,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":16.985,"w":27.262,"clr":-1,"A":"left","R":[{"T":"Principal%20business%20or%20profession%2C%20including%20product%20or%20service","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.789,"y":17.028,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":80.19,"y":17.014,"w":15.839000000000008,"clr":-1,"A":"left","R":[{"T":"Enter%20business%20code%20(see%20page%202)","S":-1,"TS":[0,9.559999999999999,1,0]}]},{"oc":"#221f1f","x":81.867,"y":17.787,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.286,"y":18.487,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":18.485,"w":26.377999999999993,"clr":-1,"A":"left","R":[{"T":"Business%20name.%20If%20no%20separate%20business%20name%2C%20leave%20blank.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.76,"y":18.528,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":80.19,"y":18.514,"w":13.004000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20EIN%20(see%20page%202)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.35,"y":19.983,"w":0.667,"clr":-1,"A":"left","R":[{"T":"E","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":19.983,"w":48.41699999999995,"clr":-1,"A":"left","R":[{"T":"Business%20address%20(including%20suite%20or%20room%20no.).%20Address%20not%20required%20if%20same%20as%20on%20page%201%20of%20your%20tax%20return.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":9.652,"y":21.483,"w":20.02,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office%2C%20state%2C%20and%20ZIP%20code","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.388,"y":23.006,"w":0.611,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":23.04,"w":45.47699999999997,"clr":-1,"A":"left","R":[{"T":"Did%20you%20make%20any%20payments%20in%202013%20that%20would%20require%20you%20to%20file%20Form(s)%201099%3F%20(see%20the%20Schedule%20C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":23.728,"w":5.723000000000001,"clr":-1,"A":"left","R":[{"T":"instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":23.728,"w":39.989999999999974,"clr":-1,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.996,"y":23.84,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.421,"y":23.84,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.274,"y":24.608,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%20G%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":9.652,"y":24.59,"w":24.022000000000002,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20did%20you%20or%20will%20you%20file%20required%20Forms%201099%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":24.59,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.996,"y":24.59,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.421,"y":24.59,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":6.584,"y":25.697,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":25.635,"w":10.39,"clr":-1,"A":"left","R":[{"T":"Figure%20Your%20Net%20Profit","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":7.555,"y":26.953,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.903,"w":11.559000000000003,"clr":-1,"A":"left","R":[{"T":"Gross%20receipts.%20Caution.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":27.052,"y":26.903,"w":30.396,"clr":-1,"A":"left","R":[{"T":"%20If%20this%20income%20was%20reported%20to%20you%20on%20Form%20W-2%20and%20the%20%E2%80%9CStatutory%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":28.288,"w":15.560000000000011,"clr":-1,"A":"left","R":[{"T":"Schedule%20C%2C%20line%201%2C%20and%20check%20here","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.866,"y":28.288,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.037,"y":28.195,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.616,"y":28.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":29.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":7.503,"clr":-1,"A":"left","R":[{"T":"Total%20expenses%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":21.458,"y":29.84,"w":17.173000000000005,"clr":-1,"A":"left","R":[{"T":"(see%20page%202).%20If%20more%20than%20%245%2C000%2C%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.445,"y":29.84,"w":2.6670000000000003,"clr":-1,"A":"left","R":[{"T":"must%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":49.569,"y":29.84,"w":7.335000000000001,"clr":-1,"A":"left","R":[{"T":"use%20Schedule%20C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.752,"y":29.84,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":29.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":31.415,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.415,"w":5.000000000000002,"clr":-1,"A":"left","R":[{"T":"Net%20profit.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.851,"y":31.415,"w":21.522000000000002,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%202%20from%20line%201.%20If%20less%20than%20zero%2C%20you%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.627,"y":31.415,"w":2.6670000000000003,"clr":-1,"A":"left","R":[{"T":"must%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.883,"y":32.102,"w":9.227000000000004,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2012%2C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.546,"y":32.102,"w":1.964,"clr":-1,"A":"left","R":[{"T":"and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.412,"y":32.102,"w":9.727000000000004,"clr":-1,"A":"left","R":[{"T":"Schedule%20SE%2C%20line%202%2C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":39.59,"y":32.102,"w":2.5930000000000004,"clr":-1,"A":"left","R":[{"T":"or%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.257,"y":32.102,"w":10.393000000000002,"clr":-1,"A":"left","R":[{"T":"Form%201040NR%2C%20line%2013%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.925,"y":32.102,"w":1.964,"clr":-1,"A":"left","R":[{"T":"and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.791,"y":32.102,"w":6.892000000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20SE%2C%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.883,"y":32.79,"w":2.8350000000000004,"clr":-1,"A":"left","R":[{"T":"line%202%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.335,"y":32.79,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.979,"y":32.79,"w":10.039000000000003,"clr":-1,"A":"left","R":[{"T":"(Statutory%20employees%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.916,"y":32.79,"w":3.3329999999999997,"clr":-1,"A":"left","R":[{"T":"do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.513,"y":32.79,"w":19.376,"clr":-1,"A":"left","R":[{"T":"report%20this%20amount%20on%20Schedule%20SE%2C%20line%202.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.129,"y":33.477,"w":8.393000000000002,"clr":-1,"A":"left","R":[{"T":"Form%201041%2C%20line%203%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.116,"y":33.477,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.616,"y":33.59,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"x":6.331,"y":34.697,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":34.64,"w":13.892000000000003,"clr":-1,"A":"left","R":[{"T":"Information%20on%20Your%20Vehicle.%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":38.372,"y":34.64,"w":8.558000000000002,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":51.019,"y":34.64,"w":2.334,"clr":-1,"A":"left","R":[{"T":"only%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":54.902,"y":34.64,"w":22.41100000000001,"clr":-1,"A":"left","R":[{"T":"if%20you%20are%20claiming%20car%20or%20truck%20expenses%20on%20line%202.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.555,"y":35.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.778,"w":38.60099999999998,"clr":-1,"A":"left","R":[{"T":"When%20did%20you%20place%20your%20vehicle%20in%20service%20for%20business%20purposes%3F%20(month%2C%20day%2C%20year)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.6,"y":35.684,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":88.852,"y":35.858,"w":0.556,"clr":-1,"A":"left","R":[{"T":"%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.555,"y":37.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.34,"w":52.162999999999954,"clr":-1,"A":"left","R":[{"T":"Of%20the%20total%20number%20of%20miles%20you%20drove%20your%20vehicle%20during%202013%2C%20enter%20the%20number%20of%20miles%20you%20used%20your%20vehicle%20for%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":38.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.84,"w":4.056,"clr":-1,"A":"left","R":[{"T":"Business","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.589,"y":38.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.877,"y":38.84,"w":10.948000000000004,"clr":-1,"A":"left","R":[{"T":"Commuting%20(see%20page%202)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.527,"y":38.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":74.002,"y":38.84,"w":2.5010000000000003,"clr":-1,"A":"left","R":[{"T":"Other","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":40.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.34,"w":29.800000000000008,"clr":-1,"A":"left","R":[{"T":"Was%20your%20vehicle%20available%20for%20personal%20use%20during%20off-duty%20hours%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.502,"y":40.34,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.996,"y":40.34,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.421,"y":40.34,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":41.84,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.84,"w":32.651999999999994,"clr":-1,"A":"left","R":[{"T":"Do%20you%20(or%20your%20spouse)%20have%20another%20vehicle%20available%20for%20personal%20use%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.627,"y":41.84,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.996,"y":41.84,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.421,"y":41.84,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":43.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"8a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":43.34,"w":22.636000000000006,"clr":-1,"A":"left","R":[{"T":"Do%20you%20have%20evidence%20to%20support%20your%20deduction%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":43.34,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":86.996,"y":43.34,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.421,"y":43.34,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":44.84,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":44.777,"w":14.779000000000005,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20is%20the%20evidence%20written%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":44.777,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.104,"y":44.84,"w":1.7790000000000001,"clr":-1,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":94.421,"y":44.84,"w":1.333,"clr":-1,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":45.606,"w":45.34499999999997,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20the%20separate%20instructions%20for%20Schedule%20C%20(Form%201040).","S":-1,"TS":[0,9.719999999999999,1,0]}]},{"oc":"#221f1f","x":64.561,"y":45.624,"w":7.466,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2014374D","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.079,"y":45.624,"w":15.505000000000006,"clr":-1,"A":"left","R":[{"T":"Schedule%20C-EZ%20(Form%201040)%202013","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":10.88,"y":27.59,"w":40.32299999999997,"clr":-1,"A":"left","R":[{"T":"employee%E2%80%9D%20box%20on%20that%20form%20was%20checked%2C%20see%20Statutory%20Employees%20in%20the%20instructions%20for%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.666,"y":31.415,"w":13.897000000000004,"clr":-1,"A":"left","R":[{"T":"use%20Schedule%20C.%20Enter%20on%20both%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.879,"y":33.477,"w":12.507000000000007,"clr":-1,"A":"left","R":[{"T":"Estates%20and%20trusts%2C%20enter%20on%20","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8320,"AM":1024,"x":6.229,"y":5.855,"w":53.527,"h":0.872,"TU":"Name of proprietor"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8321,"AM":1024,"x":76.72,"y":5.957,"w":22.26,"h":0.833,"TU":"Social security number (SSN)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A","EN":0},"TI":8322,"AM":0,"x":9.957,"y":17.941,"w":50.338,"h":0.833,"TU":"Line A. Principal business or profession, including product or service."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"B","EN":0},"TI":8323,"AM":0,"x":84.225,"y":17.986,"w":14.832,"h":0.833,"TU":"Line B. Enter business code (see page 2).","MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"C","EN":0},"TI":8324,"AM":0,"x":10.107,"y":19.438,"w":50.263,"h":0.833,"TU":"Line C. Business name. If no separate business name, leave blank."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"D","EN":0},"TI":8325,"AM":0,"x":76.684,"y":19.447,"w":22.275,"h":0.833,"TU":"Line D. Enter your EIN (see page 2)","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"E1","EN":0},"TI":8326,"AM":0,"x":9.986,"y":21.072,"w":67.005,"h":0.833,"TU":"Line E. Business address (including suite or room number)). Address not required if same as on page 1 of your tax return."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":8327,"AM":0,"x":10.107,"y":22.433,"w":37.685,"h":0.833,"TU":"City, town or post office."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":8328,"AM":0,"x":48.195,"y":22.395,"w":4.516,"h":0.88,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":8329,"AM":0,"x":53.68,"y":22.433,"w":23.685,"h":0.833,"TU":"Zip code."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GRRCPTS","EN":0},"TI":8335,"AM":0,"x":84.207,"y":28.353,"w":11.045,"h":0.874,"TU":"Line 1. Gross receipts. Caution. If this income was reported to you on Form W-2 and the \"Statutory employee) box on that form was checked, see Statutory Employees in the instructions for Schedule C, line 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":8336,"AM":0,"x":84.261,"y":29.951,"w":11.012,"h":0.833,"TU":"Line 2. Total expenses (see page 2). If more than $5,000, you must use Schedule C."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":8337,"AM":1024,"x":84.098,"y":33.57,"w":11.112,"h":0.908},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"VEHICLE_L4A_1_","EN":0},"TI":8338,"AM":0,"x":72.579,"y":36.157,"w":16.583,"h":0.833,"TU":"Line 4. When did you place your vehicle in service for business purposes? (month, day, year) a","MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L5A_1_","EN":0},"TI":8339,"AM":0,"x":18.563,"y":39.157,"w":14.912,"h":0.833,"TU":"Line 5a. Business miles."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L5B_1_","EN":0},"TI":8340,"AM":0,"x":55.007,"y":39.157,"w":15.592,"h":0.833,"TU":"Line 5b. Commuting miles (see page 2)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L5C_1_","EN":0},"TI":8341,"AM":0,"x":78.808,"y":39.157,"w":16.541,"h":0.833,"TU":"Line 5c. Other miles."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQDY","EN":0},"TI":8330,"AM":0,"x":84.974,"y":23.724,"w":2.27,"h":0.853,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQDN","EN":0},"TI":8331,"AM":0,"x":92.162,"y":23.724,"w":2.27,"h":0.833,"checked":false}],"id":{"Id":"REQD99RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099Y","EN":0},"TI":8332,"AM":0,"x":85.049,"y":24.704,"w":2.34,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099N","EN":0},"TI":8333,"AM":0,"x":92.236,"y":24.649,"w":2.345,"h":0.833,"checked":false}],"id":{"Id":"FILE99RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STATEMP","EN":0},"TI":8334,"AM":0,"x":76.889,"y":28.379,"w":2.495,"h":0.907}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7Y","EN":0},"TI":8342,"AM":0,"x":85.193,"y":40.471,"w":1.631,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7N","EN":0},"TI":8343,"AM":0,"x":92.67,"y":40.448,"w":1.631,"h":0.833,"checked":false}],"id":{"Id":"L7RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6Y","EN":0},"TI":8344,"AM":0,"x":85.148,"y":41.96,"w":1.744,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6N","EN":0},"TI":8345,"AM":0,"x":92.577,"y":41.975,"w":1.744,"h":0.833,"checked":false}],"id":{"Id":"L6RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8AY","EN":0},"TI":8346,"AM":0,"x":85.154,"y":43.472,"w":1.8,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8AN","EN":0},"TI":8347,"AM":0,"x":92.661,"y":43.488,"w":1.575,"h":0.833,"checked":false}],"id":{"Id":"L8ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8BY","EN":0},"TI":8348,"AM":0,"x":85.214,"y":44.951,"w":1.744,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8BN","EN":0},"TI":8349,"AM":0,"x":92.697,"y":44.958,"w":1.631,"h":0.833,"checked":false}],"id":{"Id":"L8BRB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Net Profit From Business","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131127091728-08'00'","ModDate":"D:20131223091111-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":5.251,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":7.635,"y":5.251,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.57,"y":3.001,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.57,"y":5.251,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.235,"y":6.751,"w":1.125,"l":25.681,"oc":"#221f1f"},{"x":27.885,"y":6.751,"w":1.125,"l":8.131,"oc":"#221f1f"},{"x":2.235,"y":8.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":6.891,"y":12.033,"w":0.75,"l":0.674,"oc":"#221f1f"},{"x":7.565,"y":9.507,"w":0.75,"l":0.637,"oc":"#221f1f"},{"x":9.001,"y":16.876,"w":0.75,"l":9.9,"oc":"#221f1f"},{"x":9.001,"y":8.673,"w":0.75,"l":9.9,"oc":"#221f1f"},{"x":18.901,"y":16.501,"w":0.75,"l":2.889,"oc":"#221f1f"},{"x":20.251,"y":13.501,"w":0.75,"l":3.15,"oc":"#221f1f"},{"x":20.251,"y":12.001,"w":0.75,"l":3.15,"oc":"#221f1f"},{"x":20.251,"y":13.501,"w":0.75,"l":1.542,"oc":"#221f1f"},{"x":21.741,"y":9.691,"w":0.75,"l":1.159,"oc":"#221f1f"},{"x":24.751,"y":16.664,"w":0.75,"l":9.9,"oc":"#221f1f"},{"x":24.751,"y":9.001,"w":0.75,"l":9.9,"oc":"#221f1f"},{"x":2.235,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":3.585,"y":17.251,"w":0.75,"l":24.37,"oc":"#221f1f"},{"x":2.235,"y":18.751,"w":0.75,"l":25.72,"oc":"#221f1f"},{"x":27.885,"y":17.251,"w":2.625,"l":1.381,"oc":"#221f1f"},{"x":29.235,"y":17.251,"w":2.625,"l":6.82,"oc":"#221f1f"},{"x":2.235,"y":20.251,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":27.885,"y":18.751,"w":2.625,"l":1.381,"oc":"#221f1f"},{"x":29.235,"y":18.751,"w":2.625,"l":6.781,"oc":"#221f1f"},{"x":27.885,"y":20.251,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":3.585,"y":21.751,"w":0.75,"l":32.431,"oc":"#221f1f"},{"x":3.585,"y":23.251,"w":0.75,"l":32.431,"oc":"#221f1f"},{"x":2.235,"y":23.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":3.585,"y":24.751,"w":0.75,"l":27.031,"oc":"#221f1f"},{"x":30.585,"y":24.751,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":31.051,"y":24.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":31.051,"y":24.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.735,"y":24.751,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":33.751,"y":24.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.751,"y":24.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":2.235,"y":24.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":25.501,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":27.001,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":29.235,"y":29.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":29.251,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":29.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":29.235,"y":30.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":30.751,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":30.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":34.501,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":36.001,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":26.395,"y":36.751,"w":0.75,"l":6.021,"oc":"#221f1f","dsh":1},{"x":6.75,"y":39.751,"w":0.75,"l":5.416,"oc":"#221f1f","dsh":1},{"x":20.001,"y":39.751,"w":0.75,"l":5.665,"oc":"#221f1f","dsh":1},{"x":28.657,"y":39.751,"w":0.75,"l":6.009,"oc":"#221f1f","dsh":1},{"x":2.235,"y":45.749,"w":1.5,"l":19.381,"oc":"#221f1f"},{"x":21.585,"y":45.749,"w":1.5,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":45.749,"w":1.5,"l":7.231,"oc":"#221f1f"}],"VLines":[{"x":7.651,"y":2.235,"w":1.5,"l":3.047,"oc":"#221f1f"},{"x":30.601,"y":2.235,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":2.985,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":27.901,"y":5.235,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":7.565,"y":9.539,"w":0.75,"l":2.463,"oc":"#221f1f"},{"x":18.901,"y":8.673,"w":0.75,"l":8.203,"oc":"#221f1f"},{"x":9.001,"y":8.673,"w":0.75,"l":8.203,"oc":"#221f1f"},{"x":21.793,"y":13.501,"w":0.75,"l":3.015,"oc":"#221f1f"},{"x":23.401,"y":12.001,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":20.251,"y":12.001,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":21.741,"y":9.691,"w":0.75,"l":2.295,"oc":"#221f1f"},{"x":34.651,"y":9.001,"w":0.75,"l":7.663,"oc":"#221f1f"},{"x":24.751,"y":9.001,"w":0.75,"l":7.663,"oc":"#221f1f"},{"x":27.901,"y":17.236,"w":2.625,"l":0.781,"oc":"#221f1f"},{"x":27.901,"y":17.985,"w":2.625,"l":0.781,"oc":"#221f1f"},{"x":36.001,"y":17.196,"w":2.625,"l":1.57,"oc":"#221f1f"},{"x":30.601,"y":18.001,"w":0.75,"l":0.7,"oc":"#181616"},{"x":31.505,"y":18.001,"w":0.75,"l":0.7,"oc":"#181616"},{"x":32.408,"y":18.001,"w":0.75,"l":0.7,"oc":"#181616"},{"x":33.312,"y":18.001,"w":0.75,"l":0.7,"oc":"#181616"},{"x":34.216,"y":18.001,"w":0.75,"l":0.7,"oc":"#181616"},{"x":35.12,"y":18.001,"w":0.75,"l":0.7,"oc":"#181616"},{"x":27.901,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.901,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":29.705,"y":19.576,"w":0.75,"l":0.563,"oc":"#181616","dsh":1},{"x":30.608,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":31.512,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":32.416,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":33.32,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":34.177,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":35.09,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":35.985,"y":19.501,"w":0.75,"l":0.731,"oc":"#181616"},{"x":31.551,"y":24.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":31.051,"y":24.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":34.251,"y":24.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.751,"y":24.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.751,"y":24.626,"w":0.75,"l":0.125,"oc":"#221f1f"},{"x":30.601,"y":26.985,"w":0.75,"l":2.289,"oc":"#221f1f"},{"x":29.251,"y":26.985,"w":0.75,"l":2.289,"oc":"#221f1f"},{"x":34.651,"y":26.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":28.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":28.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.601,"y":29.235,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":29.251,"y":29.235,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.651,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":29.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":29.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.601,"y":30.735,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":29.251,"y":30.735,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":34.651,"y":30.735,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":30.601,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":7.126,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.251,"y":25.876,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.251,"y":34.876,"w":2.25,"h":0.75,"oc":"#221f1f"}],"Texts":[{"x":29.764,"y":9.942,"w":5.558,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 4562, ","S":-1,"TS":[0,11,1,0]}]},{"x":2.001,"y":2.01,"w":8.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"SCHEDULE C-EZ ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":2.697,"w":5.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(Form 1040) ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":3.8129999999999997,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":2.001,"y":4.314,"w":13.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99) ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":13.976,"y":2.101,"w":12.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Net Profit From Business ","S":11,"TS":[0,18,1,0]}]},{"x":16.423,"y":2.795,"w":9.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(Sole Proprietorship)","S":-1,"TS":[0,11,1,0]}]},{"x":9.813,"y":3.5279999999999996,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":10.188,"y":3.5279999999999996,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":10.345,"y":3.6210000000000004,"w":35.235,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Partnerships, joint ventures, etc., generally must file Form 1065 or 1065-B.","S":-1,"TS":[0,11,1,0]}]},{"x":27.938,"y":3.5279999999999996,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":28.042,"y":3.5279999999999996,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,9,0,0]}]},{"x":10.23,"y":4.153,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":10.73,"y":4.153,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":10.761,"y":4.246,"w":18.729,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach to Form 1040, 1040NR, or 1041. ","S":-1,"TS":[0,11,1,0]}]},{"x":20.279,"y":4.153,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":51,"TS":[0,9,0,0]}]},{"x":19.321,"y":4.153,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":20.758,"y":4.153,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":19.852,"y":4.246,"w":13.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"See instructions on page 2.","S":-1,"TS":[0,11,1,0]}]},{"x":31.02,"y":1.9729999999999999,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.426,"y":3.3310000000000004,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.506,"y":3.3310000000000004,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":31.101,"y":3.8449999999999998,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.101,"y":4.291,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":34.002,"y":4.291,"w":1.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"09A","S":10,"TS":[0,14,1,0]}]},{"x":35.125,"y":4.291,"w":0.334,"oc":"#221f1f","sw":0.43490625,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":4.938,"w":8.482,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name of proprietor","S":2,"TS":[0,10,0,0]}]},{"x":27.901,"y":4.938,"w":14.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Social security number (SSN)","S":8,"TS":[0,10,1,0]}]},{"x":2.327,"y":6.947,"w":2.555,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I","S":-1,"TS":[0,13,0,0]}]},{"x":5.151,"y":6.89,"w":9.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"General Information","S":10,"TS":[0,14,1,0]}]},{"x":2.451,"y":9.965,"w":6.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"You May Use ","S":9,"TS":[0,12,1,0]}]},{"x":2.451,"y":10.652,"w":7.335,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule C-EZ ","S":9,"TS":[0,12,1,0]}]},{"x":2.451,"y":11.339,"w":5.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Instead of ","S":9,"TS":[0,12,1,0]}]},{"x":2.451,"y":12.027,"w":6.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule C ","S":9,"TS":[0,12,1,0]}]},{"x":2.451,"y":12.714,"w":5.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Only If You:","S":9,"TS":[0,12,1,0]}]},{"x":7.949999999999999,"y":8.894,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"x":9.201,"y":9.093,"w":17.375,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Had business expenses of $5,000 or ","S":-1,"TS":[0,11,0,0]}]},{"x":9.607,"y":9.64,"w":2.593,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"less. ","S":-1,"TS":[0,11,0,0]}]},{"x":9.201,"y":10.437,"w":17.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Use the cash method of accounting. ","S":-1,"TS":[0,11,0,0]}]},{"x":9.201,"y":11.234,"w":17.654,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Did not have an inventory at any time ","S":-1,"TS":[0,11,0,0]}]},{"x":9.607,"y":11.781,"w":7.539,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"during the year. ","S":-1,"TS":[0,11,0,0]}]},{"x":9.201,"y":12.578,"w":15.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Did not have a net loss from your ","S":-1,"TS":[0,11,0,0]}]},{"x":9.607,"y":13.125,"w":4.798,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"business. ","S":-1,"TS":[0,11,0,0]}]},{"x":9.201,"y":13.922,"w":18.244,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Had only one business as either a sole ","S":-1,"TS":[0,11,0,0]}]},{"x":9.607,"y":14.469,"w":16.261,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"proprietor, qualified joint venture, or ","S":-1,"TS":[0,11,0,0]}]},{"x":9.607,"y":15.016,"w":9.132,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"statutory employee. ","S":-1,"TS":[0,11,0,0]}]},{"x":9.201,"y":15.75,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":20.362,"y":12.121,"w":4.444,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"And You:","S":9,"TS":[0,12,1,0]}]},{"x":22.42,"y":9.126,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"x":24.951,"y":9.186,"w":16.986,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Had no employees during the year. ","S":-1,"TS":[0,11,0,0]}]},{"x":24.951,"y":9.942,"w":11.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Are not required to file ","S":-1,"TS":[0,11,0,0]}]},{"x":25.326,"y":10.489,"w":15.853,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Depreciation and Amortization, for ","S":-1,"TS":[0,11,0,0]}]},{"x":25.326,"y":11.036,"w":17.022,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"this business. See the instructions for ","S":-1,"TS":[0,11,0,0]}]},{"x":25.326,"y":11.583,"w":16.764,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule C, line 13, to find out if you ","S":-1,"TS":[0,11,0,0]}]},{"x":25.326,"y":12.13,"w":4.613,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"must file. ","S":-1,"TS":[0,11,0,0]}]},{"x":24.951,"y":12.858,"w":17.745,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Do not deduct expenses for business ","S":-1,"TS":[0,11,0,0]}]},{"x":25.326,"y":13.483,"w":8.614,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"use of your home. ","S":-1,"TS":[0,11,0,0]}]},{"x":24.951,"y":14.239,"w":15.816,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Do not have prior year unallowed ","S":-1,"TS":[0,11,0,0]}]},{"x":25.326,"y":14.786,"w":14.409,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"passive activity losses from this ","S":-1,"TS":[0,11,0,0]}]},{"x":25.326,"y":15.332999999999998,"w":4.242,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"business.","S":-1,"TS":[0,11,0,0]}]},{"x":2.505,"y":16.983,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A","S":-1,"TS":[0,11,1,0]}]},{"x":3.351,"y":16.985,"w":27.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Principal business or profession, including product or service","S":-1,"TS":[0,11,0,0]}]},{"x":28.128,"y":17.028,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"x":29.001,"y":17.014,"w":15.839,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Enter business code (see page 2)","S":-1,"TS":[0,9.559999999999999,1,0]}]},{"x":29.611,"y":17.787,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,13,0,0]}]},{"x":2.491,"y":18.487,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" C ","S":-1,"TS":[0,11,1,0]}]},{"x":3.351,"y":18.485,"w":26.378,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business name. If no separate business name, leave blank.","S":-1,"TS":[0,11,0,0]}]},{"x":28.117,"y":18.528,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"D","S":9,"TS":[0,12,1,0]}]},{"x":29.001,"y":18.514,"w":13.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Enter your EIN (see page 2)","S":-1,"TS":[0,11,1,0]}]},{"x":2.514,"y":19.983,"w":0.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"E","S":-1,"TS":[0,11,1,0]}]},{"x":3.351,"y":19.983,"w":48.417,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business address (including suite or room no.). Address not required if same as on page 1 of your tax return.","S":-1,"TS":[0,11,0,0]}]},{"x":3.351,"y":21.483,"w":20.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"City, town or post office, state, and ZIP code","S":-1,"TS":[0,11,0,0]}]},{"x":2.528,"y":23.006,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"F","S":-1,"TS":[0,11,1,0]}]},{"x":3.351,"y":23.04,"w":45.477,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you make any payments in 2013 that would require you to file Form(s) 1099? (see the Schedule C ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":23.728,"w":5.723,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":7.251,"y":23.728,"w":39.99,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............................","S":3,"TS":[0,12,0,0]}]},{"x":31.476,"y":23.84,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.176,"y":23.84,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.486,"y":24.608,"w":0.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" G ","S":-1,"TS":[0,11,1,0]}]},{"x":3.351,"y":24.59,"w":24.022,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If “Yes,” did you or will you file required Forms 1099? ","S":3,"TS":[0,12,0,0]}]},{"x":17.001,"y":24.59,"w":22.661,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"x":31.476,"y":24.59,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.176,"y":24.59,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.235,"y":25.697,"w":2.85,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II","S":-1,"TS":[0,13,0,0]}]},{"x":5.151,"y":25.635,"w":10.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Figure Your Net Profit","S":10,"TS":[0,14,1,0]}]},{"x":2.588,"y":26.953,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":26.903,"w":11.559,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Gross receipts. Caution.","S":9,"TS":[0,12,1,0]}]},{"x":9.678,"y":26.903,"w":30.396,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" If this income was reported to you on Form W-2 and the “Statutory ","S":3,"TS":[0,12,0,0]}]},{"x":3.7969999999999997,"y":28.288,"w":15.56,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule C, line 1, and check here","S":3,"TS":[0,12,0,0]}]},{"x":13.247,"y":28.288,"w":23.994,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":26.641,"y":28.195,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":48,"TS":[3,10,0,0]}]},{"x":26.763,"y":28.195,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.519,"y":28.34,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":29.84,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":29.84,"w":7.503,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Total expenses ","S":9,"TS":[0,12,1,0]}]},{"x":7.644,"y":29.84,"w":17.173,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see page 2). If more than $5,000, you ","S":3,"TS":[0,12,0,0]}]},{"x":16.366,"y":29.84,"w":2.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"must ","S":9,"TS":[0,12,1,0]}]},{"x":17.866,"y":29.84,"w":7.335,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"use Schedule C ","S":3,"TS":[0,12,0,0]}]},{"x":23.751,"y":29.84,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"x":29.519,"y":29.84,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":31.415,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":32.102,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":32.79,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":31.415,"w":5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Net profit. ","S":9,"TS":[0,12,1,0]}]},{"x":6.332,"y":31.415,"w":21.522,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 2 from line 1. If less than zero, you ","S":3,"TS":[0,12,0,0]}]},{"x":17.16,"y":31.415,"w":2.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"must ","S":9,"TS":[0,12,1,0]}]},{"x":27.214,"y":31.415,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.7990000000000004,"y":32.102,"w":9.227,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1040, line 12, ","S":9,"TS":[0,12,1,0]}]},{"x":8.403,"y":32.102,"w":1.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and ","S":3,"TS":[0,12,0,0]}]},{"x":9.445,"y":32.102,"w":9.727,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule SE, line 2, ","S":9,"TS":[0,12,1,0]}]},{"x":14.237,"y":32.102,"w":2.593,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or on ","S":3,"TS":[0,12,0,0]}]},{"x":15.571,"y":32.102,"w":10.393,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1040NR, line 13 ","S":9,"TS":[0,12,1,0]}]},{"x":20.905,"y":32.102,"w":1.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and ","S":3,"TS":[0,12,0,0]}]},{"x":21.947,"y":32.102,"w":6.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule SE, ","S":9,"TS":[0,12,1,0]}]},{"x":3.7990000000000004,"y":32.79,"w":2.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"line 2 ","S":9,"TS":[0,12,1,0]}]},{"x":5.417,"y":32.79,"w":7.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions).","S":3,"TS":[0,12,0,0]}]},{"x":9.652,"y":32.79,"w":10.039,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Statutory employees, ","S":3,"TS":[0,12,0,0]}]},{"x":14.72,"y":32.79,"w":3.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"do not ","S":9,"TS":[0,12,1,0]}]},{"x":16.391,"y":32.79,"w":19.376,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"report this amount on Schedule SE, line 2.) ","S":3,"TS":[0,12,0,0]}]},{"x":6.766,"y":33.477,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":10.07,"y":33.477,"w":8.393,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 1041, line 3 ","S":9,"TS":[0,12,1,0]}]},{"x":16.247,"y":33.477,"w":22.661,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"x":29.519,"y":33.59,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"x":2.143,"y":34.697,"w":3.145,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III","S":-1,"TS":[0,13,0,0]}]},{"x":5.151,"y":34.64,"w":13.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Information on Your Vehicle. ","S":10,"TS":[0,14,1,0]}]},{"x":13.795,"y":34.64,"w":8.558,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete this part ","S":-1,"TS":[0,13,0,0]}]},{"x":18.393,"y":34.64,"w":2.334,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"only ","S":10,"TS":[0,14,1,0]}]},{"x":19.805,"y":34.64,"w":22.411,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"if you are claiming car or truck expenses on line 2.","S":-1,"TS":[0,13,0,0]}]},{"x":2.588,"y":35.84,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":35.778,"w":38.601,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"When did you place your vehicle in service for business purposes? (month, day, year) ","S":3,"TS":[0,12,0,0]}]},{"x":25.514,"y":35.684,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":32.151,"y":35.858,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" .","S":-1,"TS":[0,11,0,0]}]},{"x":2.588,"y":37.34,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":37.34,"w":52.163,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Of the total number of miles you drove your vehicle during 2013, enter the number of miles you used your vehicle for:","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":38.84,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":38.84,"w":4.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Business","S":3,"TS":[0,12,0,0]}]},{"x":12.419,"y":38.84,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"x":13.251,"y":38.84,"w":10.948,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Commuting (see page 2)","S":3,"TS":[0,12,0,0]}]},{"x":25.851,"y":38.84,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"x":26.751,"y":38.84,"w":2.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":40.34,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":40.34,"w":29.8,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Was your vehicle available for personal use during off-duty hours? ","S":3,"TS":[0,12,0,0]}]},{"x":20.751,"y":40.34,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":31.476,"y":40.34,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.176,"y":40.34,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":41.84,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":41.84,"w":32.652,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you (or your spouse) have another vehicle available for personal use? ","S":3,"TS":[0,12,0,0]}]},{"x":22.251,"y":41.84,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":31.476,"y":41.84,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.176,"y":41.84,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":43.34,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8a","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":43.34,"w":22.636,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you have evidence to support your deduction? ","S":3,"TS":[0,12,0,0]}]},{"x":17.001,"y":43.34,"w":23.994,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":31.476,"y":43.34,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.176,"y":43.34,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.901,"y":44.84,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":44.777,"w":14.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If “Yes,” is the evidence written? ","S":3,"TS":[0,12,0,0]}]},{"x":12.501,"y":44.777,"w":31.992,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"x":31.515,"y":44.84,"w":1.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes","S":9,"TS":[0,12,1,0]}]},{"x":34.176,"y":44.84,"w":1.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":45.606,"w":45.345,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see the separate instructions for Schedule C (Form 1040).","S":-1,"TS":[0,9.719999999999999,1,0]}]},{"x":23.318,"y":45.624,"w":7.466,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 14374D","S":2,"TS":[0,10,0,0]}]},{"x":28.96,"y":45.624,"w":15.505,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule C-EZ (Form 1040) 2013","S":8,"TS":[0,10,1,0]}]},{"x":3.7969999999999997,"y":27.59,"w":40.323,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"employee” box on that form was checked, see Statutory Employees in the instructions for ","S":3,"TS":[0,12,0,0]}]},{"x":18.628,"y":31.415,"w":13.897,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"use Schedule C. Enter on both ","S":3,"TS":[0,12,0,0]}]},{"x":3.7969999999999997,"y":33.477,"w":12.507,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Estates and trusts, enter on ","S":3,"TS":[0,12,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":717,"AM":1024,"TU":"Name of proprietor","x":2.265,"y":5.855,"w":19.465,"h":0.872},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":718,"AM":1024,"TU":"Social security number (SSN)","x":27.898,"y":5.957,"w":8.094,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A","EN":0},"TI":719,"AM":0,"TU":"Line A. Principal business or profession, including product or service.","x":3.621,"y":17.941,"w":18.305,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"B","EN":0},"TI":720,"AM":0,"TU":"Line B. Enter business code (see page 2).","x":30.627,"y":17.986,"w":5.394,"h":0.833,"MV":"999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"C","EN":0},"TI":721,"AM":0,"TU":"Line C. Business name. If no separate business name, leave blank.","x":3.675,"y":19.438,"w":18.277,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"D","EN":0},"TI":722,"AM":0,"TU":"Line D. Enter your EIN (see page 2)","x":27.885,"y":19.447,"w":8.1,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"E1","EN":0},"TI":723,"AM":0,"TU":"Line E. Business address (including suite or room number)). Address not required if same as on page 1 of your tax return.","x":3.631,"y":21.072,"w":24.365,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":724,"AM":0,"TU":"City, town or post office.","x":3.675,"y":22.433,"w":13.704,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":725,"AM":0,"TU":"State.","x":17.525,"y":22.395,"w":1.324,"h":0.88,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"no entry"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":726,"AM":0,"TU":"Zip code.","x":19.52,"y":22.433,"w":8.613,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"GRRCPTS","EN":0},"TI":732,"AM":0,"TU":"Line 1. Gross receipts. Caution. If this income was reported to you on Form W-2 and the \"Statutory employee) box on that form was checked, see Statutory Employees in the instructions for Schedule C, line 1.","x":30.621,"y":28.353,"w":4.016,"h":0.874},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":733,"AM":0,"TU":"Line 2. Total expenses (see page 2). If more than $5,000, you must use Schedule C.","x":30.64,"y":29.951,"w":4.004,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":734,"AM":1024,"x":30.581,"y":33.57,"w":4.041,"h":0.908},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"VEHICLE_L4A_1_","EN":0},"TI":735,"AM":0,"TU":"Line 4. When did you place your vehicle in service for business purposes? (month, day, year) a","x":26.392,"y":36.157,"w":6.03,"h":0.833,"MV":"mm/dd/yyyy"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L5A_1_","EN":0},"TI":736,"AM":0,"TU":"Line 5a. Business miles.","x":6.75,"y":39.157,"w":5.422,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L5B_1_","EN":0},"TI":737,"AM":0,"TU":"Line 5b. Commuting miles (see page 2).","x":20.003,"y":39.157,"w":5.67,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"VEHICLE_L5C_1_","EN":0},"TI":738,"AM":0,"TU":"Line 5c. Other miles.","x":28.657,"y":39.157,"w":6.015,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQDY","EN":0},"TI":727,"AM":0,"TU":"Line F. Checkboxes.","x":30.9,"y":23.724,"w":0.825,"h":0.853,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQDN","EN":0},"TI":728,"AM":0,"TU":"Line F. Checkboxes.","x":33.513,"y":23.724,"w":0.826,"h":0.833,"checked":false}],"id":{"Id":"REQD99RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099Y","EN":0},"TI":729,"AM":0,"TU":"Line G. Checkboxes.","x":30.927,"y":24.704,"w":0.851,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099N","EN":0},"TI":730,"AM":0,"TU":"Line G. Checkboxes.","x":33.541,"y":24.649,"w":0.853,"h":0.833,"checked":false}],"id":{"Id":"FILE99RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STATEMP","EN":0},"TI":731,"AM":0,"TU":"Line 1. Checkbox.","x":27.96,"y":28.379,"w":0.907,"h":0.907}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7Y","EN":0},"TI":739,"AM":0,"TU":"Line 6. Checkboxes.","x":30.979,"y":40.471,"w":0.593,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L7N","EN":0},"TI":740,"AM":0,"TU":"Line 6. Checkboxes.","x":33.698,"y":40.448,"w":0.593,"h":0.833,"checked":false}],"id":{"Id":"L7RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6Y","EN":0},"TI":741,"AM":0,"TU":"Line 7. Checkboxes.","x":30.963,"y":41.96,"w":0.634,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L6N","EN":0},"TI":742,"AM":0,"TU":"Line 7. Checkboxes.","x":33.664,"y":41.975,"w":0.634,"h":0.833,"checked":false}],"id":{"Id":"L6RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8AY","EN":0},"TI":743,"AM":0,"TU":"Line 8a. Checkboxes.","x":30.965,"y":43.472,"w":0.655,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8AN","EN":0},"TI":744,"AM":0,"TU":"Line 8a. Checkboxes.","x":33.695,"y":43.488,"w":0.573,"h":0.833,"checked":false}],"id":{"Id":"L8ARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8BY","EN":0},"TI":745,"AM":0,"TU":"Line 8b. Checkboxes.","x":30.987,"y":44.951,"w":0.634,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8BN","EN":0},"TI":746,"AM":0,"TU":"Line 8b. Checkboxes.","x":33.708,"y":44.958,"w":0.593,"h":0.833,"checked":false}],"id":{"Id":"L8BRB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHD.json b/test/data/fd/form/FSCHD.json index e340db96..1a04f771 100755 --- a/test/data/fd/form/FSCHD.json +++ b/test/data/fd/form/FSCHD.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":30.75,"w":0.75,"l":43.398},{"oc":"#221f1f","x":6.145,"y":12,"w":0.75,"l":43.398},{"oc":"#221f1f","x":6.145,"y":6,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":6,"w":1.5,"l":14.936},{"oc":"#221f1f","x":20.995,"y":6,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.064,"y":3,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.107,"y":6,"w":1.5,"l":14.936},{"oc":"#221f1f","x":6.145,"y":7.5,"w":1.125,"l":71.861},{"oc":"#221f1f","x":77.92,"y":7.5,"w":1.125,"l":21.123},{"oc":"#221f1f","x":6.145,"y":9,"w":0.75,"l":92.899},{"oc":"#221f1f","x":49.457,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.832,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.207,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":12,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.857,"y":15.75,"w":0.75,"l":39.686},{"oc":"#221f1f","x":49.457,"y":15.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.832,"y":15.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.207,"y":15.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":15.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":17.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.857,"y":17.25,"w":0.75,"l":39.686},{"oc":"#221f1f","x":49.457,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.832,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.207,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":17.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":18.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.857,"y":18.75,"w":0.75,"l":39.686},{"oc":"#221f1f","x":49.457,"y":18.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.832,"y":18.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.207,"y":18.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":18.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":20.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.857,"y":20.25,"w":0.75,"l":39.686},{"oc":"#221f1f","x":49.457,"y":20.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.832,"y":20.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.207,"y":20.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":20.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":21.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":21.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":23.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":24.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.582,"y":24.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":86.582,"y":26.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":26.25,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":27.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":49.457,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.832,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.207,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":30.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.857,"y":34.5,"w":0.75,"l":39.686},{"oc":"#221f1f","x":49.457,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.832,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.207,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":36,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.857,"y":36,"w":0.75,"l":39.686},{"oc":"#221f1f","x":49.457,"y":36,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.832,"y":36,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.207,"y":36,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":36,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.857,"y":37.5,"w":0.75,"l":39.686},{"oc":"#221f1f","x":49.457,"y":37.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.832,"y":37.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.207,"y":37.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":37.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":39,"w":0.75,"l":3.798},{"oc":"#221f1f","x":9.857,"y":39,"w":0.75,"l":39.686},{"oc":"#221f1f","x":49.457,"y":39,"w":0.75,"l":12.461},{"oc":"#221f1f","x":61.832,"y":39,"w":0.75,"l":12.461},{"oc":"#221f1f","x":74.207,"y":39,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":39,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":40.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":40.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":42,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":42,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":43.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":43.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":45,"w":1.125,"l":3.798},{"oc":"#221f1f","x":86.582,"y":45,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.87,"y":46.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":86.582,"y":46.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":6.145,"y":46.5,"w":1.5,"l":54.536},{"oc":"#221f1f","x":60.595,"y":46.5,"w":1.5,"l":21.123},{"oc":"#221f1f","x":81.632,"y":46.5,"w":1.5,"l":17.411}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":3.797},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.15,"y":2.984,"w":1.5,"l":3.031},{"oc":"#221f1f","x":77.963,"y":5.969,"w":0.75,"l":1.555},{"oc":"#221f1f","x":49.5,"y":8.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.875,"y":8.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":74.25,"y":8.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":86.625,"y":8.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.875,"y":11.984,"w":0.75,"l":3.781},{"oc":"#221f1f","x":49.5,"y":11.984,"w":0.75,"l":3.781},{"oc":"#221f1f","x":74.25,"y":11.984,"w":0.75,"l":3.781},{"oc":"#221f1f","x":61.875,"y":11.984,"w":0.75,"l":3.781},{"oc":"#221f1f","x":74.25,"y":11.984,"w":0.75,"l":3.781},{"oc":"#221f1f","x":86.625,"y":11.984,"w":0.75,"l":3.781},{"oc":"#221f1f","x":61.875,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.5,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.875,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.5,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":17.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.875,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.5,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":20.234,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":23.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.913,"y":23.234,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.625,"y":24.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":24.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.5,"y":27.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":61.875,"y":27.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":74.25,"y":27.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":86.625,"y":27.735,"w":0.75,"l":3.031},{"oc":"#221f1f","x":49.5,"y":30.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":61.875,"y":30.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":74.25,"y":30.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":86.625,"y":30.735,"w":0.75,"l":3.781},{"oc":"#221f1f","x":49.5,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.875,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":34.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.5,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.875,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":49.5,"y":37.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.875,"y":37.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":37.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":37.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":38.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":38.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":40.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":41.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":41.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.625,"y":43.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":82.913,"y":43.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":86.625,"y":44.984,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":44.984,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":7.835,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":74.25,"y":12,"w":12.375,"h":3.75,"clr":-1},{"oc":"#221f1f","x":6.188,"y":26.619,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":74.25,"y":30.75,"w":12.375,"h":3.75,"clr":-1},{"oc":"#bfbfbf","x":0,"y":48.74,"w":6.685,"h":0.76,"clr":-1}],"Texts":[{"x":30.109,"y":10.956,"w":48.35000000000001,"clr":0,"A":"left","R":[{"T":"Form%208949","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":27.708,"w":27.746000000000006,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20for%20how%20to%20figure%20the%20amounts%20to%20enter%20on%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":28.27,"w":5.555,"clr":-1,"A":"left","R":[{"T":"lines%20below.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":29.083,"w":27.525000000000002,"clr":-1,"A":"left","R":[{"T":"This%20form%20may%20be%20easier%20to%20complete%20if%20you%20round%20off%20cents%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":29.645,"w":6.184000000000001,"clr":-1,"A":"left","R":[{"T":"whole%20dollars.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.958,"w":27.746000000000006,"clr":-1,"A":"left","R":[{"T":"See%20instructions%20for%20how%20to%20figure%20the%20amounts%20to%20enter%20on%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":9.52,"w":5.555,"clr":-1,"A":"left","R":[{"T":"lines%20below.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":10.333,"w":27.525000000000002,"clr":-1,"A":"left","R":[{"T":"This%20form%20may%20be%20easier%20to%20complete%20if%20you%20round%20off%20cents%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":10.895,"w":6.184000000000001,"clr":-1,"A":"left","R":[{"T":"whole%20dollars.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":2.009,"w":7.055999999999999,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20D%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":2.696,"w":5.9460000000000015,"clr":-1,"A":"left","R":[{"T":"(Form%201040)%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":4.356,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.856,"w":11.093000000000002,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":18.57,"y":4.91,"w":1.63,"clr":-1,"A":"left","R":[{"T":"(99)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":38.773,"y":2.469,"w":12.171000000000006,"clr":-1,"A":"left","R":[{"T":"Capital%20Gains%20and%20Losses","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":39.298,"y":3.524,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.329,"y":3.617,"w":19.005000000000003,"clr":-1,"A":"left","R":[{"T":"%20Attach%20to%20Form%201040%20or%20Form%201040NR.%20%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":22.65,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":81.656,"y":4.242,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":".%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.756,"y":4.774,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":30.17,"y":4.867,"w":33.67999999999999,"clr":-1,"A":"left","R":[{"T":"Use%20Form%208949%20to%20list%20your%20transactions%20for%20lines%201b%2C%202%2C%203%2C%208b%2C%209%2C%20and%2010.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":85.741,"y":1.972,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.857,"y":3.7990000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.827,"y":3.7990000000000004,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.963,"y":4.344,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.963,"y":4.79,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.94,"y":4.79,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.938,"y":5.712,"w":11.483000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.4,"y":5.712,"w":13.368000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":2,"TS":[0,10,0,0]}]},{"x":6.836,"y":7.657,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":7.664999999999999,"w":32.900000000000006,"clr":-1,"A":"left","R":[{"T":"Short-Term%20Capital%20Gains%20and%20Losses%2C%20Assets%20Held%20One%20Year%20or%20Less%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":54.714,"y":9.356,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":52.876,"y":9.856,"w":4.815000000000001,"clr":-1,"A":"left","R":[{"T":"Proceeds%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.24,"y":10.356,"w":2.555,"clr":-1,"A":"left","R":[{"T":"(sales","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":55.649,"y":10.356,"w":2.759,"clr":-1,"A":"left","R":[{"T":"price)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.111,"y":9.356,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(e)","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":66.543,"y":9.856,"w":2.6670000000000003,"clr":-1,"A":"left","R":[{"T":"Cost%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.813,"y":10.356,"w":6.926000000000002,"clr":-1,"A":"left","R":[{"T":"(or%20other%20basis)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.464,"y":8.856,"w":1.277,"clr":-1,"A":"left","R":[{"T":"(g)","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":76.822,"y":9.356,"w":6.151000000000002,"clr":-1,"A":"left","R":[{"T":"Adjustments%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.818,"y":9.856,"w":9.761000000000003,"clr":-1,"A":"left","R":[{"T":"%20to%20gain%20or%20loss%20from%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.738,"y":10.356,"w":9.892000000000003,"clr":-1,"A":"left","R":[{"T":"Form(s)%208949%2C%20Part%20I%2C%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.619,"y":10.857,"w":7.595000000000001,"clr":-1,"A":"left","R":[{"T":"line%202%2C%20column%20(g)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.699,"y":8.856,"w":8.279000000000002,"clr":-1,"A":"left","R":[{"T":"(h)%20Gain%20or%20(loss)%20","S":-1,"TS":[0,8.809999999999999,1,0]}]},{"oc":"#221f1f","x":88.197,"y":9.356,"w":10.689000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20column%20(e)%20%20%20%20%20%20%20","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"oc":"#221f1f","x":88.076,"y":9.856,"w":9.263000000000002,"clr":-1,"A":"left","R":[{"T":"from%20column%20(d)%20and%20","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"oc":"#221f1f","x":87.355,"y":10.356,"w":10.706000000000001,"clr":-1,"A":"left","R":[{"T":"combine%20the%20result%20with%20","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"oc":"#221f1f","x":90.231,"y":10.857,"w":4.946,"clr":-1,"A":"left","R":[{"T":"column%20(g)%20","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"oc":"#221f1f","x":6.92,"y":11.964,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"1a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":11.964,"w":24.596,"clr":-1,"A":"left","R":[{"T":"Totals%20for%20all%20short-term%20transactions%20reported%20on%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":12.652,"w":24.927999999999997,"clr":-1,"A":"left","R":[{"T":"1099-B%20for%20which%20basis%20was%20reported%20to%20the%20IRS%20and%20for%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":13.339,"w":22.505000000000006,"clr":-1,"A":"left","R":[{"T":"which%20you%20have%20no%20adjustments%20(see%20instructions).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":14.027,"w":24.649000000000004,"clr":-1,"A":"left","R":[{"T":"However%2C%20if%20you%20choose%20to%20report%20all%20these%20transactions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":14.714,"w":23.32300000000001,"clr":-1,"A":"left","R":[{"T":"on%20Form%208949%2C%20leave%20this%20line%20blank%20and%20go%20to%20line%201b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":14.714,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.891,"y":15.652000000000001,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":15.652000000000001,"w":25.26200000000001,"clr":-1,"A":"left","R":[{"T":"Totals%20for%20all%20transactions%20reported%20on%20Form(s)%208949%20with%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":16.339,"w":3.167,"clr":-1,"A":"left","R":[{"T":"Box%20A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.263,"y":16.339,"w":4.093999999999999,"clr":-1,"A":"left","R":[{"T":"checked%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.438,"y":16.339,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.364,"y":17.152,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":17.152,"w":25.26200000000001,"clr":-1,"A":"left","R":[{"T":"Totals%20for%20all%20transactions%20reported%20on%20Form(s)%208949%20with%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":17.839,"w":3.167,"clr":-1,"A":"left","R":[{"T":"Box%20B%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.292,"y":17.839,"w":4.093999999999999,"clr":-1,"A":"left","R":[{"T":"checked%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.438,"y":17.839,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.364,"y":18.652,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":18.652,"w":25.26200000000001,"clr":-1,"A":"left","R":[{"T":"Totals%20for%20all%20transactions%20reported%20on%20Form(s)%208949%20with%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":19.339,"w":3.167,"clr":-1,"A":"left","R":[{"T":"Box%20C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.349,"y":19.339,"w":4.093999999999999,"clr":-1,"A":"left","R":[{"T":"checked%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.438,"y":19.339,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.235,"y":20.183,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.521,"y":20.183,"w":43.108999999999966,"clr":-1,"A":"left","R":[{"T":"Short-term%20gain%20from%20Form%206252%20and%20short-term%20gain%20or%20(loss)%20from%20Forms%204684%2C%206781%2C%20and%208824%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.999,"y":20.183,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.089,"y":20.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.364,"y":21.652,"w":1.112,"clr":-1,"A":"left","R":[{"T":"5%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":21.652,"w":41.06600000000004,"clr":-1,"A":"left","R":[{"T":"Net%20short-term%20gain%20or%20(loss)%20from%20partnerships%2C%20S%20corporations%2C%20estates%2C%20and%20trusts%20from%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":22.339,"w":7.394,"clr":-1,"A":"left","R":[{"T":"Schedule(s)%20K-1","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.438,"y":22.339,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":"............................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.089,"y":22.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.364,"y":23.152,"w":1.112,"clr":-1,"A":"left","R":[{"T":"6%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":23.152,"w":34.766,"clr":-1,"A":"left","R":[{"T":"Short-term%20capital%20loss%20carryover.%20Enter%20the%20amount%2C%20if%20any%2C%20from%20line%208%20of%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.641,"y":23.839,"w":5.390000000000001,"clr":-1,"A":"left","R":[{"T":"Worksheet%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.347,"y":23.839,"w":8.206000000000001,"clr":-1,"A":"left","R":[{"T":"in%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.74,"y":23.839,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":".......................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.089,"y":23.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":86.572,"y":23.801,"w":7.746000000000006,"clr":-1,"A":"left","R":[{"T":"(%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.364,"y":24.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":24.589,"w":17.726000000000003,"clr":-1,"A":"left","R":[{"T":"Net%20short-term%20capital%20gain%20or%20(loss).%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":33.438,"y":24.589,"w":28.194000000000006,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%201a%20through%206%20in%20column%20(h).%20If%20you%20have%20any%20long-","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.656,"y":25.277,"w":38.20699999999997,"clr":-1,"A":"left","R":[{"T":"term%20capital%20gains%20or%20losses%2C%20go%20to%20Part%20II%20below.%20Otherwise%2C%20go%20to%20Part%20III%20on%20the%20back%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.881,"y":25.277,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":84.089,"y":25.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"x":6.582,"y":26.44,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":26.415,"w":34.232,"clr":-1,"A":"left","R":[{"T":"Long-Term%20Capital%20Gains%20and%20Losses%2C%20Assets%20Held%20More%20Than%20One%20Year%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":54.714,"y":28.106,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":52.876,"y":28.606,"w":4.815000000000001,"clr":-1,"A":"left","R":[{"T":"Proceeds%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.24,"y":29.106,"w":2.555,"clr":-1,"A":"left","R":[{"T":"(sales","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":55.649,"y":29.106,"w":2.759,"clr":-1,"A":"left","R":[{"T":"price)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.111,"y":28.106,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(e)","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":66.543,"y":28.606,"w":2.6670000000000003,"clr":-1,"A":"left","R":[{"T":"Cost%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.813,"y":29.106,"w":6.926000000000002,"clr":-1,"A":"left","R":[{"T":"(or%20other%20basis)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.464,"y":27.606,"w":1.277,"clr":-1,"A":"left","R":[{"T":"(g)","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":76.822,"y":28.106,"w":6.151000000000002,"clr":-1,"A":"left","R":[{"T":"Adjustments%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.818,"y":28.606,"w":9.761000000000003,"clr":-1,"A":"left","R":[{"T":"%20to%20gain%20or%20loss%20from%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.583,"y":29.106,"w":9.873000000000003,"clr":-1,"A":"left","R":[{"T":"Form(s)%208949%2C%20Part%20II%2C%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.619,"y":29.606,"w":7.595000000000001,"clr":-1,"A":"left","R":[{"T":"line%202%2C%20column%20(g)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.42,"y":27.606,"w":8.279000000000002,"clr":-1,"A":"left","R":[{"T":"(h)%20Gain%20or%20(loss)%20","S":-1,"TS":[0,9.23,1,0]}]},{"oc":"#221f1f","x":87.881,"y":28.106,"w":10.411000000000005,"clr":-1,"A":"left","R":[{"T":"Subtract%20column%20(e)%20%20%20%20%20%20","S":-1,"TS":[0,9.23,0,0]}]},{"oc":"#221f1f","x":87.752,"y":28.606,"w":9.263000000000002,"clr":-1,"A":"left","R":[{"T":"from%20column%20(d)%20and%20","S":-1,"TS":[0,9.23,0,0]}]},{"oc":"#221f1f","x":86.979,"y":29.106,"w":10.706000000000001,"clr":-1,"A":"left","R":[{"T":"combine%20the%20result%20with%20","S":-1,"TS":[0,9.23,0,0]}]},{"oc":"#221f1f","x":90.063,"y":29.606,"w":4.946,"clr":-1,"A":"left","R":[{"T":"column%20(g)%20","S":-1,"TS":[0,9.23,0,0]}]},{"oc":"#221f1f","x":6.92,"y":30.714,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"8a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":30.714,"w":24.244,"clr":-1,"A":"left","R":[{"T":"Totals%20for%20all%20long-term%20transactions%20reported%20on%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":31.402,"w":24.927999999999997,"clr":-1,"A":"left","R":[{"T":"1099-B%20for%20which%20basis%20was%20reported%20to%20the%20IRS%20and%20for%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":32.089,"w":22.505000000000006,"clr":-1,"A":"left","R":[{"T":"which%20you%20have%20no%20adjustments%20(see%20instructions).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":32.776,"w":24.649000000000004,"clr":-1,"A":"left","R":[{"T":"However%2C%20if%20you%20choose%20to%20report%20all%20these%20transactions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":33.464,"w":23.60100000000001,"clr":-1,"A":"left","R":[{"T":"on%20Form%208949%2C%20leave%20this%20line%20blank%20and%20go%20to%20line%208b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.19,"y":33.464,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.891,"y":34.402,"w":1.167,"clr":-1,"A":"left","R":[{"T":"8b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":34.402,"w":25.26200000000001,"clr":-1,"A":"left","R":[{"T":"Totals%20for%20all%20transactions%20reported%20on%20Form(s)%208949%20with%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":35.089,"w":3.167,"clr":-1,"A":"left","R":[{"T":"Box%20D%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.349,"y":35.089,"w":4.093999999999999,"clr":-1,"A":"left","R":[{"T":"checked%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.438,"y":35.089,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.364,"y":35.902,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":35.902,"w":25.26200000000001,"clr":-1,"A":"left","R":[{"T":"Totals%20for%20all%20transactions%20reported%20on%20Form(s)%208949%20with%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":36.589,"w":3.1119999999999997,"clr":-1,"A":"left","R":[{"T":"Box%20E%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.205,"y":36.589,"w":4.093999999999999,"clr":-1,"A":"left","R":[{"T":"checked%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.438,"y":36.589,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.762,"y":37.402,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":37.402,"w":25.26200000000001,"clr":-1,"A":"left","R":[{"T":"Totals%20for%20all%20transactions%20reported%20on%20Form(s)%208949%20with%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":38.089,"w":3.0559999999999996,"clr":-1,"A":"left","R":[{"T":"Box%20F%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.12,"y":38.089,"w":3.816,"clr":-1,"A":"left","R":[{"T":"checked","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.374,"y":38.089,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":38.902,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":38.902,"w":45.310999999999986,"clr":-1,"A":"left","R":[{"T":"Gain%20from%20Form%204797%2C%20Part%20I%3B%20long-term%20gain%20from%20Forms%202439%20and%206252%3B%20and%20long-term%20gain%20or%20%20(loss)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.652,"y":39.589,"w":15.194000000000006,"clr":-1,"A":"left","R":[{"T":"from%20Forms%204684%2C%206781%2C%20and%208824","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":39.589,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.659,"y":39.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":41.09,"w":46.28599999999998,"clr":-1,"A":"left","R":[{"T":"Net%20long-term%20gain%20or%20(loss)%20from%20partnerships%2C%20S%20corporations%2C%20estates%2C%20and%20trusts%20from%20Schedule(s)%20K-1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.659,"y":41.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":42.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":42.589,"w":20.52200000000001,"clr":-1,"A":"left","R":[{"T":"Capital%20gain%20distributions.%20See%20the%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":42.589,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.659,"y":42.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":43.402,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":43.402,"w":35.15599999999999,"clr":-1,"A":"left","R":[{"T":"Long-term%20capital%20loss%20carryover.%20Enter%20the%20amount%2C%20if%20any%2C%20from%20line%2013%20of%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":44.089,"w":5.390000000000001,"clr":-1,"A":"left","R":[{"T":"Worksheet%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.184,"y":44.089,"w":8.206000000000001,"clr":-1,"A":"left","R":[{"T":"in%20the%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.75,"y":44.089,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.659,"y":44.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":86.572,"y":44.052,"w":7.746000000000006,"clr":-1,"A":"left","R":[{"T":"(%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":44.902,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":9.65,"y":44.902,"w":17.337000000000003,"clr":-1,"A":"left","R":[{"T":"Net%20long-term%20capital%20gain%20or%20(loss).%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":32.857,"y":44.902,"w":28.80500000000001,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%208a%20through%2014%20in%20column%20(h).%20Then%20go%20to%20Part%20III%20on","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.662,"y":45.589,"w":4.15,"clr":-1,"A":"left","R":[{"T":"the%20back%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.263,"y":45.589,"w":41.32299999999997,"clr":-1,"A":"left","R":[{"T":"...............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":83.659,"y":45.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.938,"y":46.357,"w":33.23,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":66.404,"y":46.375,"w":7.7620000000000005,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011338H%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.126,"y":46.375,"w":14.17200000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20(Form%201040)%202013%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":45.534,"y":20.893,"w":4.836,"clr":-1,"A":"left","R":[{"T":"Form%206781","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.942,"y":20.855,"w":4.836,"clr":-1,"A":"left","R":[{"T":"Form%206252","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.966,"y":20.792,"w":5.336,"clr":-1,"A":"left","R":[{"T":"Forms%204684","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.527,"y":20.807,"w":4.836,"clr":-1,"A":"left","R":[{"T":"From%208824","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.195,"y":40.281,"w":3.7613344080000006,"clr":-1,"A":"left","R":[{"T":"Form%204797","S":-1,"TS":[0,10.000001999999999,0,0]}]},{"oc":"#221f1f","x":21.613,"y":40.297,"w":3.7613344080000006,"clr":-1,"A":"left","R":[{"T":"Form%202439","S":-1,"TS":[0,10.000001999999999,0,0]}]},{"oc":"#221f1f","x":33.859,"y":40.25,"w":3.7613344080000006,"clr":-1,"A":"left","R":[{"T":"Form%206252","S":-1,"TS":[0,10.000001999999999,0,0]}]},{"oc":"#221f1f","x":46.019,"y":40.25,"w":3.7613344080000006,"clr":-1,"A":"left","R":[{"T":"Form%204684","S":-1,"TS":[0,10.000001999999999,0,0]}]},{"oc":"#221f1f","x":58.051,"y":40.203,"w":3.7613344080000006,"clr":-1,"A":"left","R":[{"T":"Form%206781","S":-1,"TS":[0,10.000001999999999,0,0]}]},{"oc":"#221f1f","x":70.469,"y":40.203,"w":3.7613344080000006,"clr":-1,"A":"left","R":[{"T":"Form%208824","S":-1,"TS":[0,10.000001999999999,0,0]}]},{"x":54.406,"y":23.969,"w":158.92000000000002,"clr":0,"A":"left","R":[{"T":"ENTER%20AS%20A%20NEGATIVE%20NUMBER","S":-1,"TS":[0,13,0,0]}]},{"x":55.173,"y":44.143,"w":158.92000000000002,"clr":0,"A":"left","R":[{"T":"ENTER%20AS%20A%20NEGATIVE%20NUMBER","S":-1,"TS":[0,13,0,0]}]},{"x":31.836,"y":29.746,"w":48.35000000000001,"clr":0,"A":"left","R":[{"T":"Form%208949","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":23.68,"y":4.242,"w":42.06699999999996,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Schedule%20D%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fscheduled","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":57.356,"y":23.152,"w":11.226,"clr":-1,"A":"left","R":[{"T":"Capital%20Loss%20Carryover%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":57.956,"y":43.402,"w":11.226,"clr":-1,"A":"left","R":[{"T":"Capital%20Loss%20Carryover%20","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8350,"AM":1024,"x":6.139,"y":6.522,"w":71.45,"h":0.856},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8351,"AM":1024,"x":78.338,"y":6.528,"w":20.391,"h":0.885},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8949ST"}},"id":{"Id":"Add_F8949","EN":0},"TI":8352,"AM":1024,"x":39.66,"y":11.067,"w":6.685,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1ASPRCE","EN":0},"TI":8353,"AM":0,"x":49.805,"y":14.923,"w":12.024,"h":0.833,"TU":"Line 1a. Column (d). Totals for all short-term transactions reported on Form 1099-B for which basis was reported to the IRS and for which you have no adjustments (see instructions). However, if you choose to report all these transactions on Form 8949, leave this line blank and go to line 1b."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1ACOST","EN":0},"TI":8354,"AM":0,"x":62.105,"y":14.923,"w":12.024,"h":0.833,"TU":"Line 1a. Column (e). Totals for all short-term transactions reported on Form 1099-B for which basis was reported to the IRS and for which you have no adjustments (see instructions). However, if you choose to report all these transactions on Form 8949, leave this line blank and go to line 1b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1AGOL","EN":0},"TI":8355,"AM":0,"x":86.93,"y":14.931,"w":12.128,"h":0.833,"TU":"Line 1a. Column (h). Totals for all short-term transactions reported on Form 1099-B for which basis was reported to the IRS and for which you have no adjustments (see instructions). However, if you choose to report all these transactions on Form 8949, leave this line blank and go to line 1b"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1PRICE","EN":0},"TI":8356,"AM":1024,"x":49.717,"y":16.481,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1BASIS","EN":0},"TI":8357,"AM":1024,"x":62.092,"y":16.446,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1ADJST","EN":0},"TI":8358,"AM":1024,"x":74.436,"y":16.33,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1GORL","EN":0},"TI":8359,"AM":1024,"x":86.965,"y":16.337,"w":12.128,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B1PRICE","EN":0},"TI":8360,"AM":1024,"x":49.53,"y":17.924,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B1BASIS","EN":0},"TI":8361,"AM":1024,"x":62.054,"y":17.889,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B1ADJST","EN":0},"TI":8362,"AM":1024,"x":74.473,"y":17.854,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B1GORL","EN":0},"TI":8363,"AM":1024,"x":87.002,"y":17.834,"w":12.127,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C1PRICE","EN":0},"TI":8364,"AM":1024,"x":49.585,"y":19.379,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C1BASIS","EN":0},"TI":8365,"AM":1024,"x":61.96,"y":19.343,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C1ADJST","EN":0},"TI":8366,"AM":1024,"x":74.378,"y":19.344,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C1GORL","EN":0},"TI":8367,"AM":1024,"x":86.907,"y":19.351,"w":12.128,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"Add_F6252","EN":0},"TI":8368,"AM":1024,"x":18.407,"y":20.947,"w":6.685,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4684"}},"id":{"Id":"Add_F4684","EN":0},"TI":8369,"AM":1024,"x":36.252,"y":20.88,"w":6.685,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6781"}},"id":{"Id":"Add_F6781","EN":0},"TI":8370,"AM":1024,"x":53.825,"y":20.927,"w":6.685,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8824"}},"id":{"Id":"Add_F8824","EN":0},"TI":8371,"AM":1024,"x":71.1,"y":20.838,"w":6.685,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4F","EN":0},"TI":8372,"AM":0,"x":86.895,"y":20.822,"w":12.128,"h":0.833,"TU":"Line 4. Short-term gain from Form 6252 and short-term gain or (loss) from Forms 4684, 6781, and 8824."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5F","EN":0},"TI":8373,"AM":0,"x":86.934,"y":22.372,"w":12.128,"h":0.833,"TU":"Line 5. Net short-term gain or (loss) from partnerships, S corporations, estates, and trusts from Schedule(s) K-1."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L6F","EN":0},"TI":8374,"AM":0,"x":87.494,"y":23.817,"w":10.545,"h":0.833,"TU":"Line 6. Short term capital loss carryover. Enter the amount, if any, from line 8 of your Capital Loss Carryover Worksheet in the instructions. ","MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7F","EN":0},"TI":8375,"AM":1024,"x":86.811,"y":25.307,"w":12.128,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8949LT"}},"id":{"Id":"Add_F8949","EN":0},"TI":8376,"AM":1024,"x":41.312,"y":29.823,"w":6.685,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8ASPRCE","EN":0},"TI":8377,"AM":0,"x":49.757,"y":33.699,"w":11.901,"h":0.833,"TU":"Line 8a. Column (d). Totals from all long-term transactions reported on Form 1099-B for which basis whas reported to the IRS and for which you have no adjustments (see instructions). However, if you choose to report all these transactions on Form 8949, leave this line blank and go to line 8b."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8ACOST","EN":0},"TI":8378,"AM":0,"x":62.4,"y":33.744,"w":11.532,"h":0.833,"TU":"Line 8a. Column (e). Totals from all long-term transactions reported on Form 1099-B for which basis whas reported to the IRS and for which you have no adjustments (see instructions). However, if you choose to report all these transactions on Form 8949, leave this line blank and go to line 8b."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8AGOL","EN":0},"TI":8379,"AM":0,"x":86.732,"y":33.644,"w":12.127,"h":0.833,"TU":"Line 8a. Column (h). Totals from all long-term transactions reported on Form 1099-B for which basis whas reported to the IRS and for which you have no adjustments (see instructions). However, if you choose to report all these transactions on Form 8949, leave this line blank and go to line 8b."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2PRICE","EN":0},"TI":8380,"AM":1024,"x":49.641,"y":35.246,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2BASIS","EN":0},"TI":8381,"AM":1024,"x":62.016,"y":35.211,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2ADJST","EN":0},"TI":8382,"AM":1024,"x":74.36,"y":35.095,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2GORL","EN":0},"TI":8383,"AM":1024,"x":86.777,"y":35.068,"w":12.128,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B2PRICE","EN":0},"TI":8384,"AM":1024,"x":49.529,"y":36.689,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B2BASIS","EN":0},"TI":8385,"AM":1024,"x":62.129,"y":36.654,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B2ADJST","EN":0},"TI":8386,"AM":1024,"x":74.397,"y":36.592,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B2GORL","EN":0},"TI":8387,"AM":1024,"x":86.814,"y":36.565,"w":12.127,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C2PRICE","EN":0},"TI":8388,"AM":1024,"x":49.509,"y":38.206,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C2BASIS","EN":0},"TI":8389,"AM":1024,"x":61.884,"y":38.171,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C2ADJST","EN":0},"TI":8390,"AM":1024,"x":74.303,"y":38.109,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C2GORL","EN":0},"TI":8391,"AM":1024,"x":86.719,"y":38.082,"w":12.128,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11F","EN":0},"TI":8392,"AM":0,"x":86.64,"y":39.603,"w":12.128,"h":0.833,"TU":"Line 11. Gain from Form 4797, Part I; long-term gain from Forms 2439 and 6252; and long-term gain or (loss) from Forms 4684, 6781, and 8824."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"Add_F4797","EN":0},"TI":8393,"AM":1024,"x":15.95,"y":40.439,"w":5.412,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"Add_F2439","EN":0},"TI":8394,"AM":1024,"x":28.305,"y":40.447,"w":5.562,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"Add_F6252","EN":0},"TI":8395,"AM":1024,"x":40.563,"y":40.405,"w":5.562,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"Add_F4684","EN":0},"TI":8396,"AM":1024,"x":52.663,"y":40.406,"w":5.562,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"Add_F6781","EN":0},"TI":8397,"AM":1024,"x":64.741,"y":40.336,"w":5.562,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"Add_F8824","EN":0},"TI":8398,"AM":1024,"x":77.132,"y":40.328,"w":5.562,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12F","EN":0},"TI":8399,"AM":0,"x":86.866,"y":41.176,"w":12.127,"h":0.833,"TU":"Line 12. Net long-term gain or (loss) from partnerships, S corporations, estates, and trusts from Schedule(s) K-1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13F","EN":0},"TI":8400,"AM":0,"x":86.847,"y":42.605,"w":12.128,"h":0.833,"TU":"Line 13. Capital gain distributions. See the instructions."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14F","EN":0},"TI":8401,"AM":0,"x":87.351,"y":44.064,"w":10.93,"h":0.833,"TU":"Line 14. Long-term capital loss carryover. Enter the amount, if any from line 13 of your Capital Loss Carryover Worksheet in the instructions.","MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15F","EN":0},"TI":8402,"AM":1024,"x":86.716,"y":45.599,"w":12.128,"h":0.833}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":3,"w":1.5,"l":86.711},{"oc":"#221f1f","x":92.77,"y":3,"w":1.5,"l":6.273},{"oc":"#221f1f","x":6.145,"y":4.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":84.107,"y":6,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.395,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":15.75,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.395,"y":15.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.107,"y":18,"w":0.75,"l":14.936},{"oc":"#221f1f","x":80.395,"y":18,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.395,"y":27.75,"w":0.75,"l":18.648},{"oc":"#221f1f","x":80.395,"y":36,"w":1.5,"l":18.648},{"oc":"#221f1f","x":6.145,"y":36,"w":1.5,"l":92.899},{"oc":"#221f1f","x":0.086,"y":49.469,"w":0.75,"l":1.797},{"oc":"#221f1f","x":0.086,"y":48.938,"w":0.75,"l":1.797}],"VLines":[{"oc":"#221f1f","x":84.15,"y":4.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":4.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":5.984,"w":0.75,"l":9.031},{"oc":"#221f1f","x":80.438,"y":5.984,"w":0.75,"l":9.031},{"oc":"#221f1f","x":84.15,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":14.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":15.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.438,"y":15.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.15,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":17.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.15,"y":17.984,"w":0.75,"l":9.031},{"oc":"#221f1f","x":80.438,"y":17.984,"w":0.75,"l":9.031},{"oc":"#221f1f","x":84.15,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":26.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.438,"y":27.734,"w":0.75,"l":8.297},{"oc":"#221f1f","x":1.883,"y":48.938,"w":0.75,"l":0.531},{"oc":"#221f1f","x":0.086,"y":48.938,"w":0.75,"l":0.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.188,"y":3.382,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":6,"w":3.712,"h":9,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":15.75,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":18,"w":3.712,"h":9,"clr":-1},{"oc":"#bebfc1","x":80.438,"y":27.75,"w":18.563,"h":8.25,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.969,"w":1.625,"h":0.468,"clr":-1},{"oc":"#bfbfbf","x":0.344,"y":48.959,"w":0,"h":0.416,"clr":-1},{"oc":"#bfbfbf","x":0.172,"y":48.896,"w":1.456,"h":0.541,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.972,"w":13.302000000000007,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20(Form%201040)%202013","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.698,"y":2.009,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.795,"y":2.009,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.329,"y":3.203,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.531,"y":3.165,"w":4.557,"clr":-1,"A":"left","R":[{"T":"Summary","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.692,"y":5.089,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":5.089,"w":19.507000000000005,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%207%20and%2015%20and%20enter%20the%20result","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":5.089,"w":23.993999999999993,"clr":-1,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.184,"y":5.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":6.652,"w":6.631,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20line%2016%20is%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.102,"y":6.652,"w":2.612,"clr":-1,"A":"left","R":[{"T":"gain%2C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.707,"y":6.652,"w":33.254000000000005,"clr":-1,"A":"left","R":[{"T":"enter%20the%20amount%20from%20line%2016%20on%20Form%201040%2C%20line%2013%2C%20or%20Form%201040NR%2C%20line","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.097,"y":7.339,"w":13.207000000000004,"clr":-1,"A":"left","R":[{"T":"14.%20Then%20go%20to%20line%2017%20below.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.894,"y":8.152,"w":6.631,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20line%2016%20is%20a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.828,"y":8.152,"w":2.5570000000000004,"clr":-1,"A":"left","R":[{"T":"loss%2C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.415,"y":8.152,"w":34.212999999999994,"clr":-1,"A":"left","R":[{"T":"skip%20lines%2017%20through%2020%20below.%20Then%20go%20to%20line%2021.%20Also%20be%20sure%20to%20complete%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.099,"y":8.839,"w":3.205,"clr":-1,"A":"left","R":[{"T":"line%2022.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.895,"y":9.652,"w":5.976000000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20line%2016%20is%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.691,"y":9.652,"w":2.6720000000000006,"clr":-1,"A":"left","R":[{"T":"zero%2C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.42,"y":9.652,"w":34.883,"clr":-1,"A":"left","R":[{"T":"skip%20lines%2017%20through%2021%20below%20and%20enter%20-0-%20on%20Form%201040%2C%20line%2013%2C%20or%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.106,"y":10.339,"w":16.329000000000004,"clr":-1,"A":"left","R":[{"T":"1040NR%2C%20line%2014.%20Then%20go%20to%20line%2022.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.708,"y":11.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.903,"y":11.839,"w":8.855000000000002,"clr":-1,"A":"left","R":[{"T":"Are%20lines%2015%20and%2016%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.569,"y":11.839,"w":2.166,"clr":-1,"A":"left","R":[{"T":"both","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":26.578,"y":11.839,"w":3.5010000000000003,"clr":-1,"A":"left","R":[{"T":"%20gains%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.363,"y":12.589,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.543,"y":12.589,"w":6.5390000000000015,"clr":-1,"A":"left","R":[{"T":"%20Go%20to%20line%2018.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.363,"y":13.339,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.884,"y":13.339,"w":19.415000000000003,"clr":-1,"A":"left","R":[{"T":"%20Skip%20lines%2018%20through%2021%2C%20and%20go%20to%20line%2022.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.798,"y":14.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":14.839,"w":19.025000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%2C%20if%20any%2C%20from%20line%207%20of%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.879,"y":14.839,"w":12.615000000000006,"clr":-1,"A":"left","R":[{"T":"28%25%20Rate%20Gain%20Worksheet%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.583,"y":14.839,"w":7.928000000000001,"clr":-1,"A":"left","R":[{"T":"in%20the%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.501,"y":14.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.563,"y":14.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.713,"y":14.745,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.184,"y":14.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"18%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":16.402,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":16.402,"w":19.581000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%2C%20if%20any%2C%20from%20line%2018%20of%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.842,"y":16.402,"w":20.78400000000001,"clr":-1,"A":"left","R":[{"T":"Unrecaptured%20Section%201250%20Gain%20Worksheet","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":66.714,"y":16.402,"w":3.02,"clr":-1,"A":"left","R":[{"T":"%20in%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.878,"y":17.1,"w":5.186,"clr":-1,"A":"left","R":[{"T":"instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.365,"y":17.1,"w":37.32399999999998,"clr":-1,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.713,"y":17.006,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.184,"y":17.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.692,"y":18.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":18.589,"w":8.855000000000002,"clr":-1,"A":"left","R":[{"T":"Are%20lines%2018%20and%2019%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.726,"y":18.589,"w":2.167,"clr":-1,"A":"left","R":[{"T":"both","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.734,"y":18.589,"w":6.926000000000002,"clr":-1,"A":"left","R":[{"T":"%20zero%20or%20blank%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.363,"y":19.277,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.294,"y":19.277,"w":6.595000000000001,"clr":-1,"A":"left","R":[{"T":"%20Complete%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":59.36,"y":19.277,"w":8.206000000000001,"clr":-1,"A":"left","R":[{"T":"%20in%20the%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.358,"y":19.964,"w":31.75000000000001,"clr":-1,"A":"left","R":[{"T":"for%20Form%201040%2C%20line%2044%20(or%20in%20the%20instructions%20for%20Form%201040NR%2C%20line%2042).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.687,"y":19.964,"w":3.4440000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":62.313,"y":19.964,"w":6.4830000000000005,"clr":-1,"A":"left","R":[{"T":"complete%20lines","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.348,"y":20.651,"w":7.984,"clr":-1,"A":"left","R":[{"T":"21%20and%2022%20below.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.363,"y":22.402,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.673,"y":22.402,"w":6.595000000000001,"clr":-1,"A":"left","R":[{"T":"%20Complete%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.938,"y":22.402,"w":12.837000000000005,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20Tax%20Worksheet","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":42.974,"y":22.402,"w":8.762000000000002,"clr":-1,"A":"left","R":[{"T":"%20in%20the%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.207,"y":22.402,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.715,"y":22.402,"w":8.429000000000002,"clr":-1,"A":"left","R":[{"T":"%20complete%20lines%2021%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.361,"y":23.089,"w":6.594000000000001,"clr":-1,"A":"left","R":[{"T":"and%2022%20below.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.691,"y":25.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.886,"y":25.339,"w":38.401999999999994,"clr":-1,"A":"left","R":[{"T":"If%20line%2016%20is%20a%20loss%2C%20enter%20here%20and%20on%20Form%201040%2C%20line%2013%2C%20or%20Form%201040NR%2C%20line%2014%2C%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.617,"y":25.339,"w":3.7800000000000007,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":69.596,"y":25.339,"w":1.7040000000000002,"clr":-1,"A":"left","R":[{"T":"%20of%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":26.745,"w":10.595000000000002,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20The%20loss%20on%20line%2016%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":27.448,"w":21.968000000000007,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20(%243%2C000)%2C%20or%20if%20married%20filing%20separately%2C%20(%241%2C500)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.775,"y":27.281,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,15,0,0]}]},{"oc":"#221f1f","x":49.25,"y":26.839,"w":40.00500000000001,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,7.5,0,0]}]},{"oc":"#221f1f","x":81.184,"y":26.839,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":84.044,"y":26.801,"w":9.414000000000009,"clr":-1,"A":"left","R":[{"T":"(%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":28.906,"w":3.056,"clr":-1,"A":"left","R":[{"T":"Note.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":14.67,"y":28.906,"w":36.13999999999999,"clr":-1,"A":"left","R":[{"T":"When%20figuring%20which%20amount%20is%20smaller%2C%20treat%20both%20amounts%20as%20positive%20numbers.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":30.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.888,"y":30.589,"w":37.18,"clr":-1,"A":"left","R":[{"T":"Do%20you%20have%20qualified%20dividends%20on%20Form%201040%2C%20line%209b%2C%20or%20Form%201040NR%2C%20line%2010b%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.363,"y":32.027,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.294,"y":32.027,"w":6.595000000000001,"clr":-1,"A":"left","R":[{"T":"%20Complete%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.309,"y":32.027,"w":24.896000000000008,"clr":-1,"A":"left","R":[{"T":"Qualified%20Dividends%20and%20Capital%20Gain%20Tax%20Worksheet","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":59.36,"y":32.027,"w":8.206000000000001,"clr":-1,"A":"left","R":[{"T":"%20in%20the%20instructions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.358,"y":32.714,"w":31.75000000000001,"clr":-1,"A":"left","R":[{"T":"for%20Form%201040%2C%20line%2044%20(or%20in%20the%20instructions%20for%20Form%201040NR%2C%20line%2042).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.363,"y":34.339,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.712,"y":34.339,"w":22.80400000000001,"clr":-1,"A":"left","R":[{"T":"%20Complete%20the%20rest%20of%20Form%201040%20or%20Form%201040NR.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.126,"y":35.875,"w":14.17200000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20D%20(Form%201040)%202013%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":25.309,"y":19.277,"w":24.896000000000008,"clr":-1,"A":"left","R":[{"T":"Qualified%20Dividends%20and%20Capital%20Gain%20Tax%20Worksheet","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":8403,"AM":1024,"x":25.966,"y":2.062,"w":36.603,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":8404,"AM":1024,"x":67.911,"y":2.192,"w":25.535,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":8405,"AM":1024,"x":84.261,"y":5.143,"w":14.602,"h":0.842,"TU":"16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":8408,"AM":0,"x":84.487,"y":14.673,"w":13.897,"h":1.017,"TU":"Line 18. Enter the amount, in any from line 7 of the 28% Rate Gain Worksheet in the instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":8409,"AM":0,"x":84.228,"y":16.805,"w":14.689,"h":1.18,"TU":"Line 19. Enter the amount, if any, from line 18 of the Unrecaptured Section 1250 Gain Worksheet in the instructions."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":8412,"AM":0,"x":85.312,"y":26.798,"w":12.741,"h":0.883,"TU":"Line 21. If line 16 is a loss, enter here and on Form 1040, line 13, of Form 1040NR, line 14, the smaller of the loss on line 16 or $33,000, or if married filing separately, $1,500.","MV":"-"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GAINXY","EN":0},"TI":8406,"AM":0,"x":11.221,"y":12.674,"w":1.969,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GAINXN","EN":0},"TI":8407,"AM":0,"x":11.277,"y":13.461,"w":1.8,"h":0.833,"checked":false}],"id":{"Id":"A377RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NORGUNXY","EN":0},"TI":8410,"AM":0,"x":11.168,"y":19.458,"w":1.856,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NORGUNXN","EN":0},"TI":8411,"AM":0,"x":11.274,"y":22.443,"w":1.744,"h":0.833,"checked":false}],"id":{"Id":"A381RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"QUALDVXY","EN":0},"TI":8413,"AM":0,"x":11.245,"y":32.156,"w":1.8,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FQUALDVXN","EN":0},"TI":8414,"AM":0,"x":11.309,"y":34.453,"w":1.856,"h":0.833,"checked":false}],"id":{"Id":"A387RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Capital Gains and Losses","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131209192343-08'00'","ModDate":"D:20140116122920-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":30.75,"w":0.75,"l":15.781,"oc":"#221f1f"},{"x":2.234,"y":12,"w":0.75,"l":15.781,"oc":"#221f1f"},{"x":2.234,"y":6,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.234,"y":6,"w":1.5,"l":5.431,"oc":"#221f1f"},{"x":7.634,"y":6,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.569,"y":3,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.584,"y":6,"w":1.5,"l":5.431,"oc":"#221f1f"},{"x":2.234,"y":7.5,"w":1.125,"l":26.131,"oc":"#221f1f"},{"x":28.334,"y":7.5,"w":1.125,"l":7.681,"oc":"#221f1f"},{"x":2.234,"y":9,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":17.984,"y":12,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.484,"y":12,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.984,"y":12,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":12,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":15.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":3.584,"y":15.75,"w":0.75,"l":14.431,"oc":"#221f1f"},{"x":17.984,"y":15.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.484,"y":15.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.984,"y":15.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":15.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":17.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":3.584,"y":17.25,"w":0.75,"l":14.431,"oc":"#221f1f"},{"x":17.984,"y":17.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.484,"y":17.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.984,"y":17.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":17.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":18.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":3.584,"y":18.75,"w":0.75,"l":14.431,"oc":"#221f1f"},{"x":17.984,"y":18.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.484,"y":18.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.984,"y":18.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":18.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":20.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":3.584,"y":20.25,"w":0.75,"l":14.431,"oc":"#221f1f"},{"x":17.984,"y":20.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.484,"y":20.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.984,"y":20.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":20.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":21.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.484,"y":21.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":23.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.484,"y":23.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":24.75,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":31.484,"y":24.75,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":26.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":26.25,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":27.75,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":17.984,"y":30.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.484,"y":30.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.984,"y":30.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":30.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":34.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":3.584,"y":34.5,"w":0.75,"l":14.431,"oc":"#221f1f"},{"x":17.984,"y":34.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.484,"y":34.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.984,"y":34.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":34.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":36,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":3.584,"y":36,"w":0.75,"l":14.431,"oc":"#221f1f"},{"x":17.984,"y":36,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.484,"y":36,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.984,"y":36,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":36,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":37.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":3.584,"y":37.5,"w":0.75,"l":14.431,"oc":"#221f1f"},{"x":17.984,"y":37.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.484,"y":37.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.984,"y":37.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":37.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":39,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":3.584,"y":39,"w":0.75,"l":14.431,"oc":"#221f1f"},{"x":17.984,"y":39,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.484,"y":39,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":26.984,"y":39,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":39,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":40.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.484,"y":40.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":42,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.484,"y":42,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":43.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.484,"y":43.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":45,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":31.484,"y":45,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":46.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.484,"y":46.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":2.234,"y":46.5,"w":1.5,"l":19.831,"oc":"#221f1f"},{"x":22.034,"y":46.5,"w":1.5,"l":7.681,"oc":"#221f1f"},{"x":29.684,"y":46.5,"w":1.5,"l":6.331,"oc":"#221f1f"}],"VLines":[{"x":7.65,"y":2.234,"w":1.5,"l":3.797,"oc":"#221f1f"},{"x":30.6,"y":2.234,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":2.984,"w":1.5,"l":3.031,"oc":"#221f1f"},{"x":28.35,"y":5.969,"w":0.75,"l":1.555,"oc":"#221f1f"},{"x":18,"y":8.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":22.5,"y":8.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":27,"y":8.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":31.5,"y":8.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":22.5,"y":11.984,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":18,"y":11.984,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":27,"y":11.984,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":22.5,"y":11.984,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":27,"y":11.984,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":31.5,"y":11.984,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":22.5,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.5,"y":17.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18,"y":17.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27,"y":17.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":17.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.5,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":20.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.15,"y":20.234,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":21.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.15,"y":21.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":23.234,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":30.15,"y":23.234,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":31.5,"y":24.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.15,"y":24.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18,"y":27.735,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":22.5,"y":27.735,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":27,"y":27.735,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":31.5,"y":27.735,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":18,"y":30.735,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":22.5,"y":30.735,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":27,"y":30.735,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":31.5,"y":30.735,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":18,"y":34.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.5,"y":34.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27,"y":34.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":34.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.5,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18,"y":37.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.5,"y":37.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27,"y":37.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":37.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":38.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.15,"y":38.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":40.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.15,"y":40.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":41.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.15,"y":41.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.5,"y":43.485,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":30.15,"y":43.485,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":31.5,"y":44.984,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.15,"y":44.984,"w":0.75,"l":1.531,"oc":"#221f1f"}],"Fills":[{"x":2.25,"y":7.835,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":27,"y":12,"w":4.5,"h":3.75,"oc":"#bebfc1"},{"x":2.25,"y":26.619,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":27,"y":30.75,"w":4.5,"h":3.75,"oc":"#bebfc1"}],"Texts":[{"x":10.79,"y":10.956,"w":48.35,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Form 8949","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":27.708,"w":27.746,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"See instructions for how to figure the amounts to enter on the ","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":28.27,"w":5.555,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"lines below. ","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":29.083,"w":27.525,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"This form may be easier to complete if you round off cents to ","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":29.645,"w":6.184,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"whole dollars.","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":8.958,"w":27.746,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"See instructions for how to figure the amounts to enter on the ","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":9.52,"w":5.555,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"lines below. ","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":10.333,"w":27.525,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"This form may be easier to complete if you round off cents to ","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":10.895,"w":6.184,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"whole dollars.","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":2.009,"w":7.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"SCHEDULE D ","S":10,"TS":[0,14,1,0]}]},{"x":2,"y":2.696,"w":5.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(Form 1040) ","S":10,"TS":[0,14,1,0]}]},{"x":2,"y":4.356,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":2,"y":4.856,"w":11.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":6.593,"y":4.91,"w":1.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(99)","S":2,"TS":[0,10,0,0]}]},{"x":13.94,"y":2.469,"w":12.171,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Capital Gains and Losses","S":11,"TS":[0,18,1,0]}]},{"x":14.131,"y":3.524,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":14.506,"y":3.617,"w":19.005,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Attach to Form 1040 or Form 1040NR. ","S":-1,"TS":[0,11,1,0]}]},{"x":24.036,"y":3.524,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,9,0,0]}]},{"x":8.077,"y":4.149,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":29.534,"y":4.242,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". ","S":-1,"TS":[0,11,0,0]}]},{"x":29.951,"y":4.149,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,9,0,0]}]},{"x":10.298,"y":4.774,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":10.673,"y":4.867,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":10.812,"y":4.867,"w":33.68,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Use Form 8949 to list your transactions for lines 1b, 2, 3, 8b, 9, and 10. ","S":-1,"TS":[0,11,1,0]}]},{"x":31.019,"y":1.972,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.425,"y":3.7990000000000004,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.505,"y":3.7990000000000004,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":31.1,"y":4.344,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.1,"y":4.79,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":34.001,"y":4.79,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12","S":10,"TS":[0,14,1,0]}]},{"x":34.696,"y":4.79,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":5.712,"w":11.483,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name(s) shown on return ","S":2,"TS":[0,10,0,0]}]},{"x":28.35,"y":5.712,"w":13.368,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your social security number","S":2,"TS":[0,10,0,0]}]},{"x":2.327,"y":7.657,"w":2.833,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I ","S":-1,"TS":[0,13,0,0]}]},{"x":5.125,"y":7.664999999999999,"w":32.9,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Short-Term Capital Gains and Losses, Assets Held One Year or Less ","S":10,"TS":[0,14,1,0]}]},{"x":19.737,"y":9.356,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(d) ","S":8,"TS":[0,10,1,0]}]},{"x":19.068,"y":9.856,"w":4.815,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Proceeds ","S":2,"TS":[0,10,0,0]}]},{"x":18.837,"y":10.356,"w":2.555,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(sales","S":2,"TS":[0,10,0,0]}]},{"x":19.955,"y":10.356,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":20.077,"y":10.356,"w":2.759,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"price) ","S":2,"TS":[0,10,0,0]}]},{"x":24.245,"y":9.356,"w":1.222,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(e)","S":8,"TS":[0,10,1,0]}]},{"x":24.755,"y":9.356,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":24.877,"y":9.356,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":24.038,"y":9.856,"w":2.667,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cost ","S":2,"TS":[0,10,0,0]}]},{"x":23.046,"y":10.356,"w":6.926,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(or other basis) ","S":2,"TS":[0,10,0,0]}]},{"x":28.737,"y":8.856,"w":1.277,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(g)","S":8,"TS":[0,10,1,0]}]},{"x":29.263,"y":8.856,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":29.385,"y":8.856,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":27.776,"y":9.356,"w":6.151,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Adjustments ","S":2,"TS":[0,10,0,0]}]},{"x":27.047,"y":9.856,"w":9.761,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" to gain or loss from ","S":2,"TS":[0,10,0,0]}]},{"x":27.018,"y":10.356,"w":9.892,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form(s) 8949, Part I, ","S":2,"TS":[0,10,0,0]}]},{"x":27.339,"y":10.857,"w":7.595,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 2, column (g)","S":2,"TS":[0,10,0,0]}]},{"x":32.095,"y":8.856,"w":8.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(h) Gain or (loss) ","S":-1,"TS":[0,8.809999999999999,1,0]}]},{"x":31.912999999999997,"y":9.356,"w":10.689,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract column (e) ","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":31.869,"y":9.856,"w":9.263,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from column (d) and ","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":31.606,"y":10.356,"w":10.706,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"combine the result with ","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":32.652,"y":10.857,"w":4.946,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"column (g) ","S":-1,"TS":[0,8.809999999999999,0,0]}]},{"x":2.357,"y":11.964,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1a ","S":9,"TS":[0,12,1,0]}]},{"x":3.35,"y":11.964,"w":24.596,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Totals for all short-term transactions reported on Form ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":12.652,"w":24.928,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1099-B for which basis was reported to the IRS and for ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":13.339,"w":22.505,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"which you have no adjustments (see instructions). ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":14.027,"w":24.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"However, if you choose to report all these transactions ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":14.714,"w":23.323,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on Form 8949, leave this line blank and go to line 1b","S":3,"TS":[0,12,0,0]}]},{"x":16.469,"y":14.714,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":17,"y":14.714,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":2.347,"y":15.652000000000001,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1b","S":9,"TS":[0,12,1,0]}]},{"x":3.35,"y":15.652000000000001,"w":25.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Totals for all transactions reported on Form(s) 8949 with ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":16.339,"w":3.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Box A ","S":9,"TS":[0,12,1,0]}]},{"x":5.027,"y":16.339,"w":4.094,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"checked ","S":3,"TS":[0,12,0,0]}]},{"x":8,"y":16.339,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":2.519,"y":17.152,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":2.675,"y":17.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":17.152,"w":25.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Totals for all transactions reported on Form(s) 8949 with ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":17.839,"w":3.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Box B ","S":9,"TS":[0,12,1,0]}]},{"x":5.038,"y":17.839,"w":4.094,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"checked ","S":3,"TS":[0,12,0,0]}]},{"x":8,"y":17.839,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":2.519,"y":18.652,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 ","S":9,"TS":[0,12,1,0]}]},{"x":2.675,"y":19.339,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":18.652,"w":25.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Totals for all transactions reported on Form(s) 8949 with ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":19.339,"w":3.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Box C ","S":9,"TS":[0,12,1,0]}]},{"x":5.059,"y":19.339,"w":4.094,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"checked ","S":3,"TS":[0,12,0,0]}]},{"x":8,"y":19.339,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":2.472,"y":20.183,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":9,"TS":[0,12,1,0]}]},{"x":3.303,"y":20.183,"w":43.109,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Short-term gain from Form 6252 and short-term gain or (loss) from Forms 4684, 6781, and 8824 ","S":3,"TS":[0,12,0,0]}]},{"x":28.204,"y":20.183,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":30.419,"y":20.839,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":9,"TS":[0,12,1,0]}]},{"x":2.519,"y":21.652,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":2.675,"y":22.339,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":21.652,"w":41.066,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Net short-term gain or (loss) from partnerships, S corporations, estates, and trusts from ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":22.339,"w":7.394,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule(s) K-1","S":3,"TS":[0,12,0,0]}]},{"x":8,"y":22.339,"w":38.657,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............................ ","S":3,"TS":[0,12,0,0]}]},{"x":30.419,"y":22.339,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":2.519,"y":23.152,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":2.675,"y":23.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":23.152,"w":34.766,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Short-term capital loss carryover. Enter the amount, if any, from line 8 of your ","S":3,"TS":[0,12,0,0]}]},{"x":26.618,"y":23.152,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.347,"y":23.839,"w":5.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Worksheet ","S":9,"TS":[0,12,1,0]}]},{"x":6.149,"y":23.839,"w":8.206,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"in the instructions ","S":3,"TS":[0,12,0,0]}]},{"x":11.746,"y":23.839,"w":31.992,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................... ","S":3,"TS":[0,12,0,0]}]},{"x":30.419,"y":23.839,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":31.321,"y":23.801,"w":7.746,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"( )","S":3,"TS":[0,12,0,0]}]},{"x":2.519,"y":24.589,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7","S":9,"TS":[0,12,1,0]}]},{"x":3.35,"y":24.589,"w":17.726,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Net short-term capital gain or (loss). ","S":9,"TS":[0,12,1,0]}]},{"x":12,"y":24.589,"w":28.194,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine lines 1a through 6 in column (h). If you have any long-","S":3,"TS":[0,12,0,0]}]},{"x":3.352,"y":25.277,"w":38.207,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"term capital gains or losses, go to Part II below. Otherwise, go to Part III on the back ","S":3,"TS":[0,12,0,0]}]},{"x":25.252,"y":25.277,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":30.419,"y":25.339,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":9,"TS":[0,12,1,0]}]},{"x":2.234,"y":26.44,"w":2.85,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II","S":-1,"TS":[0,13,0,0]}]},{"x":5.125,"y":26.415,"w":34.232,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Long-Term Capital Gains and Losses, Assets Held More Than One Year ","S":10,"TS":[0,14,1,0]}]},{"x":19.737,"y":28.106,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(d) ","S":8,"TS":[0,10,1,0]}]},{"x":19.068,"y":28.606,"w":4.815,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Proceeds ","S":2,"TS":[0,10,0,0]}]},{"x":18.837,"y":29.106,"w":2.555,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(sales","S":2,"TS":[0,10,0,0]}]},{"x":19.955,"y":29.106,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":20.077,"y":29.106,"w":2.759,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"price) ","S":2,"TS":[0,10,0,0]}]},{"x":24.245,"y":28.106,"w":1.222,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(e)","S":8,"TS":[0,10,1,0]}]},{"x":24.755,"y":28.106,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":24.877,"y":28.106,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":24.038,"y":28.606,"w":2.667,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cost ","S":2,"TS":[0,10,0,0]}]},{"x":23.046,"y":29.106,"w":6.926,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(or other basis) ","S":2,"TS":[0,10,0,0]}]},{"x":28.737,"y":27.606,"w":1.277,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(g)","S":8,"TS":[0,10,1,0]}]},{"x":29.263,"y":27.606,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":29.385,"y":27.606,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":27.776,"y":28.106,"w":6.151,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Adjustments ","S":2,"TS":[0,10,0,0]}]},{"x":27.047,"y":28.606,"w":9.761,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" to gain or loss from ","S":2,"TS":[0,10,0,0]}]},{"x":26.962,"y":29.106,"w":9.873,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form(s) 8949, Part II, ","S":2,"TS":[0,10,0,0]}]},{"x":27.339,"y":29.606,"w":7.595,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 2, column (g)","S":2,"TS":[0,10,0,0]}]},{"x":31.994,"y":27.606,"w":8.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(h) Gain or (loss) ","S":-1,"TS":[0,9.23,1,0]}]},{"x":31.798000000000002,"y":28.106,"w":10.411,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract column (e) ","S":-1,"TS":[0,9.23,0,0]}]},{"x":31.750999999999998,"y":28.606,"w":9.263,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from column (d) and ","S":-1,"TS":[0,9.23,0,0]}]},{"x":31.47,"y":29.106,"w":10.706,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"combine the result with ","S":-1,"TS":[0,9.23,0,0]}]},{"x":32.591,"y":29.606,"w":4.946,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"column (g) ","S":-1,"TS":[0,9.23,0,0]}]},{"x":2.357,"y":30.714,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8a ","S":9,"TS":[0,12,1,0]}]},{"x":3.35,"y":30.714,"w":24.244,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Totals for all long-term transactions reported on Form ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":31.402,"w":24.928,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1099-B for which basis was reported to the IRS and for ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":32.089,"w":22.505,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"which you have no adjustments (see instructions). ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":32.776,"w":24.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"However, if you choose to report all these transactions ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":33.464,"w":23.601,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on Form 8949, leave this line blank and go to line 8b ","S":3,"TS":[0,12,0,0]}]},{"x":17.001,"y":33.464,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":2.347,"y":34.402,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8b","S":9,"TS":[0,12,1,0]}]},{"x":3.35,"y":34.402,"w":25.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Totals for all transactions reported on Form(s) 8949 with ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":35.089,"w":3.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Box D ","S":9,"TS":[0,12,1,0]}]},{"x":5.059,"y":35.089,"w":4.094,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"checked ","S":3,"TS":[0,12,0,0]}]},{"x":8,"y":35.089,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":2.519,"y":35.902,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":9,"TS":[0,12,1,0]}]},{"x":2.675,"y":36.589,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":35.902,"w":25.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Totals for all transactions reported on Form(s) 8949 with ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":36.589,"w":3.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Box E ","S":9,"TS":[0,12,1,0]}]},{"x":5.007,"y":36.589,"w":4.094,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"checked ","S":3,"TS":[0,12,0,0]}]},{"x":8,"y":36.589,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":2.3,"y":37.402,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":9,"TS":[0,12,1,0]}]},{"x":2.613,"y":38.089,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":37.402,"w":25.262,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Totals for all transactions reported on Form(s) 8949 with ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":38.089,"w":3.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Box F ","S":9,"TS":[0,12,1,0]}]},{"x":4.976,"y":38.089,"w":3.816,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"checked","S":3,"TS":[0,12,0,0]}]},{"x":7.25,"y":38.089,"w":18.662,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":38.902,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":9,"TS":[0,12,1,0]}]},{"x":2.9,"y":39.589,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":38.902,"w":45.311,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Gain from Form 4797, Part I; long-term gain from Forms 2439 and 6252; and long-term gain or (loss) ","S":3,"TS":[0,12,0,0]}]},{"x":3.351,"y":39.589,"w":15.194,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from Forms 4684, 6781, and 8824","S":3,"TS":[0,12,0,0]}]},{"x":12.501,"y":39.589,"w":29.326,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......................","S":3,"TS":[0,12,0,0]}]},{"x":30.262,"y":39.589,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":41.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":9,"TS":[0,12,1,0]}]},{"x":3.35,"y":41.09,"w":46.286,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Net long-term gain or (loss) from partnerships, S corporations, estates, and trusts from Schedule(s) K-1 ","S":3,"TS":[0,12,0,0]}]},{"x":30.262,"y":41.089,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":42.589,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":9,"TS":[0,12,1,0]}]},{"x":3.35,"y":42.589,"w":20.522,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Capital gain distributions. See the instructions","S":3,"TS":[0,12,0,0]}]},{"x":15.5,"y":42.589,"w":23.994,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":30.262,"y":42.589,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":43.402,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":9,"TS":[0,12,1,0]}]},{"x":2.9,"y":44.089,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":43.402,"w":35.156,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Long-term capital loss carryover. Enter the amount, if any, from line 13 of your ","S":3,"TS":[0,12,0,0]}]},{"x":26.635,"y":43.402,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":44.089,"w":5.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Worksheet ","S":9,"TS":[0,12,1,0]}]},{"x":6.09,"y":44.089,"w":8.206,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"in the instructions ","S":3,"TS":[0,12,0,0]}]},{"x":11.75,"y":44.089,"w":30.659,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"x":30.262,"y":44.089,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":9,"TS":[0,12,1,0]}]},{"x":31.321,"y":44.052,"w":7.746,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"( )","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":44.902,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15 ","S":9,"TS":[0,12,1,0]}]},{"x":2.9,"y":45.589,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":44.902,"w":17.337,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Net long-term capital gain or (loss). ","S":9,"TS":[0,12,1,0]}]},{"x":11.789,"y":44.902,"w":28.805,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine lines 8a through 14 in column (h). Then go to Part III on","S":3,"TS":[0,12,0,0]}]},{"x":3.355,"y":45.589,"w":4.15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the back ","S":3,"TS":[0,12,0,0]}]},{"x":5.755,"y":45.589,"w":41.323,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............................","S":3,"TS":[0,12,0,0]}]},{"x":30.262,"y":45.589,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15 ","S":9,"TS":[0,12,1,0]}]},{"x":2,"y":46.357,"w":33.23,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see your tax return instructions.","S":-1,"TS":[0,11,1,0]}]},{"x":23.988,"y":46.375,"w":7.762,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11338H ","S":2,"TS":[0,10,0,0]}]},{"x":29.705,"y":46.375,"w":14.172,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule D (Form 1040) 2013 ","S":8,"TS":[0,10,1,0]}]},{"x":16.399,"y":20.893,"w":4.836,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 6781","S":3,"TS":[0,12,0,0]}]},{"x":3.456,"y":20.855,"w":4.836,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 6252","S":3,"TS":[0,12,0,0]}]},{"x":9.647,"y":20.792,"w":5.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Forms 4684","S":3,"TS":[0,12,0,0]}]},{"x":22.578,"y":20.807,"w":4.836,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"From 8824","S":3,"TS":[0,12,0,0]}]},{"x":3.185,"y":40.281,"w":3.761,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 4797","S":-1,"TS":[0,10.000001999999999,0,0]}]},{"x":7.7,"y":40.297,"w":3.761,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 2439","S":-1,"TS":[0,10.000001999999999,0,0]}]},{"x":12.153,"y":40.25,"w":3.761,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 6252","S":-1,"TS":[0,10.000001999999999,0,0]}]},{"x":16.575,"y":40.25,"w":3.761,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 4684","S":-1,"TS":[0,10.000001999999999,0,0]}]},{"x":20.95,"y":40.203,"w":3.761,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 6781","S":-1,"TS":[0,10.000001999999999,0,0]}]},{"x":25.466,"y":40.203,"w":3.761,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 8824","S":-1,"TS":[0,10.000001999999999,0,0]}]},{"x":19.625,"y":23.969,"w":158.92,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"ENTER AS A NEGATIVE NUMBER","S":-1,"TS":[0,13,0,0]}]},{"x":19.904,"y":44.143,"w":158.92,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"ENTER AS A NEGATIVE NUMBER","S":-1,"TS":[0,13,0,0]}]},{"x":11.417,"y":29.746,"w":48.35,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Form 8949","S":-1,"TS":[0,13,0,0]}]},{"x":8.452,"y":4.242,"w":42.067,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Information about Schedule D and its separate instructions is at www.irs.gov/scheduled","S":-1,"TS":[0,11,1,0]}]},{"x":20.698,"y":23.152,"w":11.226,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Capital Loss Carryover ","S":9,"TS":[0,12,1,0]}]},{"x":20.916,"y":43.402,"w":11.226,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Capital Loss Carryover ","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":898,"AM":1024,"x":2.232,"y":6.522,"w":25.982,"h":0.856},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":899,"AM":1024,"x":28.486,"y":6.528,"w":7.415,"h":0.885},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8949ST"}},"id":{"Id":"A405","EN":0},"TI":900,"AM":1024,"x":14.422,"y":11.067,"w":2.431,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1ASPRCE","EN":0},"TI":901,"AM":0,"TU":"Line 1a. Column (d). Totals for all short-term transactions reported on Form 1099-B for which basis was reported to the IRS and for which you have no adjustments (see instructions). However, if you choose to report all these transactions on Form 8949, leave this line blank and go to line 1b.","x":18.111,"y":14.923,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1ACOST","EN":0},"TI":902,"AM":0,"TU":"Line 1a. Column (e). Totals for all short-term transactions reported on Form 1099-B for which basis was reported to the IRS and for which you have no adjustments (see instructions). However, if you choose to report all these transactions on Form 8949, leave this line blank and go to line 1b","x":22.584,"y":14.923,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1AGOL","EN":0},"TI":903,"AM":0,"TU":"Line 1a. Column (h). Totals for all short-term transactions reported on Form 1099-B for which basis was reported to the IRS and for which you have no adjustments (see instructions). However, if you choose to report all these transactions on Form 8949, leave this line blank and go to line 1b","x":31.611,"y":14.931,"w":4.41,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1PRICE","EN":0},"TI":904,"AM":1024,"x":18.079,"y":16.481,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1BASIS","EN":0},"TI":905,"AM":1024,"x":22.579,"y":16.446,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1ADJST","EN":0},"TI":906,"AM":1024,"x":27.067,"y":16.33,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A1GORL","EN":0},"TI":907,"AM":1024,"x":31.624,"y":16.337,"w":4.41,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B1PRICE","EN":0},"TI":908,"AM":1024,"x":18.011,"y":17.924,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B1BASIS","EN":0},"TI":909,"AM":1024,"x":22.565,"y":17.889,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B1ADJST","EN":0},"TI":910,"AM":1024,"x":27.081,"y":17.854,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B1GORL","EN":0},"TI":911,"AM":1024,"x":31.637,"y":17.834,"w":4.41,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C1PRICE","EN":0},"TI":912,"AM":1024,"x":18.031,"y":19.379,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C1BASIS","EN":0},"TI":913,"AM":1024,"x":22.531,"y":19.343,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C1ADJST","EN":0},"TI":914,"AM":1024,"x":27.047,"y":19.344,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C1GORL","EN":0},"TI":915,"AM":1024,"x":31.603,"y":19.351,"w":4.41,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"A389","EN":0},"TI":916,"AM":1024,"x":6.693,"y":20.947,"w":2.431,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4684"}},"id":{"Id":"A395","EN":0},"TI":917,"AM":1024,"x":13.182,"y":20.88,"w":2.431,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6781"}},"id":{"Id":"A390","EN":0},"TI":918,"AM":1024,"x":19.573,"y":20.927,"w":2.431,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8824"}},"id":{"Id":"A396","EN":0},"TI":919,"AM":1024,"x":25.854,"y":20.838,"w":2.431,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4F","EN":0},"TI":920,"AM":0,"TU":"Line 4. Short-term gain from Form 6252 and short-term gain or (loss) from Forms 4684, 6781, and 8824.","x":31.598,"y":20.822,"w":4.41,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5F","EN":0},"TI":921,"AM":0,"TU":"Line 5. Net short-term gain or (loss) from partnerships, S corporations, estates, and trusts from Schedule(s) K-1.","x":31.612,"y":22.372,"w":4.41,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L6F","EN":0},"TI":922,"AM":0,"TU":"Line 6. Short term capital loss carryover. Enter the amount, if any, from line 8 of your Capital Loss Carryover Worksheet in the instructions. ","x":31.816,"y":23.817,"w":3.835,"h":0.833,"MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7F","EN":0},"TI":923,"AM":1024,"x":31.567,"y":25.307,"w":4.41,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8949LT"}},"id":{"Id":"A406","EN":0},"TI":924,"AM":1024,"x":15.022,"y":29.823,"w":2.431,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8ASPRCE","EN":0},"TI":925,"AM":0,"TU":"Line 8a. Column (d). Totals from all long-term transactions reported on Form 1099-B for which basis whas reported to the IRS and for which you have no adjustments (see instructions). However, if you choose to report all these transactions on Form 8949, leave this line blank and go to line 8b.","x":18.093,"y":33.699,"w":4.328,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8ACOST","EN":0},"TI":926,"AM":0,"TU":"Line 8a. Column (e). Totals from all long-term transactions reported on Form 1099-B for which basis whas reported to the IRS and for which you have no adjustments (see instructions). However, if you choose to report all these transactions on Form 8949, leave this line blank and go to line 8b.","x":22.691,"y":33.744,"w":4.194,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8AGOL","EN":0},"TI":927,"AM":0,"TU":"Line 8a. Column (h). Totals from all long-term transactions reported on Form 1099-B for which basis whas reported to the IRS and for which you have no adjustments (see instructions). However, if you choose to report all these transactions on Form 8949, leave this line blank and go to line 8b.","x":31.539,"y":33.644,"w":4.41,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2PRICE","EN":0},"TI":928,"AM":1024,"x":18.051,"y":35.246,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2BASIS","EN":0},"TI":929,"AM":1024,"x":22.551,"y":35.211,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2ADJST","EN":0},"TI":930,"AM":1024,"x":27.04,"y":35.095,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A2GORL","EN":0},"TI":931,"AM":1024,"x":31.555,"y":35.068,"w":4.41,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B2PRICE","EN":0},"TI":932,"AM":1024,"x":18.011,"y":36.689,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B2BASIS","EN":0},"TI":933,"AM":1024,"x":22.592,"y":36.654,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B2ADJST","EN":0},"TI":934,"AM":1024,"x":27.054,"y":36.592,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"B2GORL","EN":0},"TI":935,"AM":1024,"x":31.569,"y":36.565,"w":4.41,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C2PRICE","EN":0},"TI":936,"AM":1024,"x":18.003,"y":38.206,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C2BASIS","EN":0},"TI":937,"AM":1024,"x":22.503,"y":38.171,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C2ADJST","EN":0},"TI":938,"AM":1024,"x":27.019,"y":38.109,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"C2GORL","EN":0},"TI":939,"AM":1024,"x":31.534,"y":38.082,"w":4.41,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11F","EN":0},"TI":940,"AM":0,"TU":"Line 11. Gain from Form 4797, Part I; long-term gain from Forms 2439 and 6252; and long-term gain or (loss) from Forms 4684, 6781, and 8824.","x":31.505,"y":39.603,"w":4.41,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"A392","EN":0},"TI":941,"AM":1024,"x":5.8,"y":40.439,"w":1.968,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"A404","EN":0},"TI":942,"AM":1024,"x":10.293,"y":40.447,"w":2.023,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"A393","EN":0},"TI":943,"AM":1024,"x":14.75,"y":40.405,"w":2.023,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"A394","EN":0},"TI":944,"AM":1024,"x":19.15,"y":40.406,"w":2.023,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"A397","EN":0},"TI":945,"AM":1024,"x":23.542,"y":40.336,"w":2.023,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6252"}},"id":{"Id":"A398","EN":0},"TI":946,"AM":1024,"x":28.048,"y":40.328,"w":2.023,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12F","EN":0},"TI":947,"AM":0,"TU":"Line 12. Net long-term gain or (loss) from partnerships, S corporations, estates, and trusts from Schedule(s) K-1.","x":31.588,"y":41.176,"w":4.41,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13F","EN":0},"TI":948,"AM":0,"TU":"Line 13. Capital gain distributions. See the instructions.","x":31.581,"y":42.605,"w":4.41,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L14F","EN":0},"TI":949,"AM":0,"TU":"Line 14. Long-term capital loss carryover. Enter the amount, if any from line 13 of your Capital Loss Carryover Worksheet in the instructions.","x":31.764,"y":44.064,"w":3.974,"h":0.833,"MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15F","EN":0},"TI":950,"AM":1024,"x":31.533,"y":45.599,"w":4.41,"h":0.833}],"Boxsets":[]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":3,"w":1.5,"l":31.531,"oc":"#221f1f"},{"x":33.734,"y":3,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":2.234,"y":4.501,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":30.584,"y":6,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.234,"y":6,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":15.75,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.234,"y":15.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":18,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.584,"y":18,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":29.234,"y":18,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.234,"y":27.75,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":29.234,"y":36,"w":1.5,"l":6.781,"oc":"#221f1f"},{"x":2.234,"y":36,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":30.6,"y":4.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.25,"y":4.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.6,"y":5.984,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":29.25,"y":5.984,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":30.6,"y":14.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.25,"y":14.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":15.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.25,"y":15.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.6,"y":17.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.25,"y":17.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":17.984,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":29.25,"y":17.984,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":30.6,"y":26.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.25,"y":26.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.25,"y":27.734,"w":0.75,"l":8.297,"oc":"#221f1f"}],"Fills":[{"x":2.25,"y":3.382,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":29.25,"y":6,"w":1.35,"h":9,"oc":"#bebfc1"},{"x":29.25,"y":18,"w":1.35,"h":9,"oc":"#bebfc1"},{"x":29.25,"y":27.75,"w":6.75,"h":8.25,"oc":"#bebfc1"}],"Texts":[{"x":2,"y":1.972,"w":13.302,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule D (Form 1040) 2013","S":2,"TS":[0,10,0,0]}]},{"x":34.276,"y":2.009,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":2.009,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.142,"y":3.203,"w":3.423,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III ","S":-1,"TS":[0,13,0,0]}]},{"x":5.125,"y":3.165,"w":4.557,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Summary","S":10,"TS":[0,14,1,0]}]},{"x":2.275,"y":5.089,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":5.089,"w":19.507,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine lines 7 and 15 and enter the result","S":3,"TS":[0,12,0,0]}]},{"x":15.5,"y":5.089,"w":23.994,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":29.362,"y":5.089,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":6.652,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If line 16 is a ","S":3,"TS":[0,12,0,0]}]},{"x":7.151,"y":6.652,"w":2.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"gain, ","S":9,"TS":[0,12,1,0]}]},{"x":8.462,"y":6.652,"w":33.254,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"enter the amount from line 16 on Form 1040, line 13, or Form 1040NR, line","S":3,"TS":[0,12,0,0]}]},{"x":4.24,"y":7.339,"w":13.207,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14. Then go to line 17 below. ","S":3,"TS":[0,12,0,0]}]},{"x":3.8019999999999996,"y":8.152,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If line 16 is a ","S":3,"TS":[0,12,0,0]}]},{"x":7.051,"y":8.152,"w":2.557,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"loss, ","S":9,"TS":[0,12,1,0]}]},{"x":8.356,"y":8.152,"w":34.213,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"skip lines 17 through 20 below. Then go to line 21. Also be sure to complete ","S":3,"TS":[0,12,0,0]}]},{"x":4.24,"y":8.839,"w":3.205,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 22.","S":3,"TS":[0,12,0,0]}]},{"x":3.803,"y":9.652,"w":5.976,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If line 16 is ","S":3,"TS":[0,12,0,0]}]},{"x":6.638,"y":9.652,"w":2.672,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"zero, ","S":9,"TS":[0,12,1,0]}]},{"x":7.994,"y":9.652,"w":34.883,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"skip lines 17 through 21 below and enter -0- on Form 1040, line 13, or Form ","S":3,"TS":[0,12,0,0]}]},{"x":4.243,"y":10.339,"w":16.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1040NR, line 14. Then go to line 22.","S":3,"TS":[0,12,0,0]}]},{"x":2.28,"y":11.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17 ","S":3,"TS":[0,12,0,0]}]},{"x":3.806,"y":11.839,"w":8.855,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Are lines 15 and 16 ","S":3,"TS":[0,12,0,0]}]},{"x":8.412,"y":11.839,"w":2.166,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"both","S":9,"TS":[0,12,1,0]}]},{"x":9.506,"y":11.839,"w":3.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" gains? ","S":3,"TS":[0,12,0,0]}]},{"x":4.7,"y":12.589,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"x":5.857,"y":12.589,"w":6.539,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Go to line 18. ","S":3,"TS":[0,12,0,0]}]},{"x":4.7,"y":13.339,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"x":5.617,"y":13.339,"w":19.415,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Skip lines 18 through 21, and go to line 22.","S":3,"TS":[0,12,0,0]}]},{"x":2.313,"y":14.839,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18 ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":14.839,"w":19.025,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount, if any, from line 7 of the ","S":3,"TS":[0,12,0,0]}]},{"x":13.252,"y":14.839,"w":12.615,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28% Rate Gain Worksheet ","S":9,"TS":[0,12,1,0]}]},{"x":19.689,"y":14.839,"w":7.928,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"in the instructions","S":3,"TS":[0,12,0,0]}]},{"x":24.75,"y":14.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":25.5,"y":14.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":28.1,"y":14.745,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.362,"y":14.839,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"18 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":16.402,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19 ","S":3,"TS":[0,12,0,0]}]},{"x":2.9,"y":17.089,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":16.402,"w":19.581,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount, if any, from line 18 of the ","S":3,"TS":[0,12,0,0]}]},{"x":13.602,"y":16.402,"w":20.784,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Unrecaptured Section 1250 Gain Worksheet","S":9,"TS":[0,12,1,0]}]},{"x":24.101,"y":16.402,"w":3.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" in the ","S":3,"TS":[0,12,0,0]}]},{"x":3.7969999999999997,"y":17.1,"w":5.186,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions","S":3,"TS":[0,12,0,0]}]},{"x":7.246,"y":17.1,"w":37.324,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............................","S":3,"TS":[0,12,0,0]}]},{"x":28.1,"y":17.006,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":29.362,"y":17.089,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":18.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20 ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":18.589,"w":8.855,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Are lines 18 and 19 ","S":3,"TS":[0,12,0,0]}]},{"x":8.468,"y":18.589,"w":2.167,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"both","S":3,"TS":[0,12,0,0]}]},{"x":9.562,"y":18.589,"w":6.926,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" zero or blank? ","S":3,"TS":[0,12,0,0]}]},{"x":4.7,"y":19.277,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"x":5.766,"y":19.277,"w":6.595,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Complete the ","S":3,"TS":[0,12,0,0]}]},{"x":16.079,"y":19.277,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":21.426,"y":19.277,"w":8.206,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" in the instructions","S":3,"TS":[0,12,0,0]}]},{"x":4.698,"y":19.964,"w":31.75,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"for Form 1040, line 44 (or in the instructions for Form 1040NR, line 42). ","S":3,"TS":[0,12,0,0]}]},{"x":20.818,"y":19.964,"w":3.444,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not ","S":9,"TS":[0,12,1,0]}]},{"x":22.5,"y":19.964,"w":6.483,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"complete lines","S":3,"TS":[0,12,0,0]}]},{"x":4.695,"y":20.651,"w":7.984,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21 and 22 below. ","S":3,"TS":[0,12,0,0]}]},{"x":4.7,"y":22.402,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"x":5.54,"y":22.402,"w":6.595,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Complete the ","S":3,"TS":[0,12,0,0]}]},{"x":8.909,"y":22.402,"w":12.837,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule D Tax Worksheet","S":9,"TS":[0,12,1,0]}]},{"x":15.468,"y":22.402,"w":8.762,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" in the instructions. ","S":3,"TS":[0,12,0,0]}]},{"x":19.916,"y":22.402,"w":3.166,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not","S":9,"TS":[0,12,1,0]}]},{"x":21.555,"y":22.402,"w":8.429,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" complete lines 21 ","S":3,"TS":[0,12,0,0]}]},{"x":4.699,"y":23.089,"w":6.594,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and 22 below. ","S":3,"TS":[0,12,0,0]}]},{"x":2.274,"y":25.339,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21 ","S":9,"TS":[0,12,1,0]}]},{"x":3.7990000000000004,"y":25.339,"w":38.402,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If line 16 is a loss, enter here and on Form 1040, line 13, or Form 1040NR, line 14, the ","S":3,"TS":[0,12,0,0]}]},{"x":23.338,"y":25.339,"w":3.78,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"smaller ","S":9,"TS":[0,12,1,0]}]},{"x":25.148,"y":25.339,"w":1.704,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of: ","S":3,"TS":[0,12,0,0]}]},{"x":3.7990000000000004,"y":26.745,"w":10.595,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• The loss on line 16 or ","S":3,"TS":[0,12,0,0]}]},{"x":3.7990000000000004,"y":27.448,"w":21.968,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• ($3,000), or if married filing separately, ($1,500) ","S":3,"TS":[0,12,0,0]}]},{"x":16.85,"y":27.281,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[3,15,0,0]}]},{"x":17.75,"y":26.839,"w":40.005,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,7.5,0,0]}]},{"x":29.362,"y":26.839,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21 ","S":9,"TS":[0,12,1,0]}]},{"x":30.402,"y":26.801,"w":9.414,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"( )","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":28.906,"w":3.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Note. ","S":9,"TS":[0,12,1,0]}]},{"x":5.176,"y":28.906,"w":36.14,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"When figuring which amount is smaller, treat both amounts as positive numbers. ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":30.589,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8,"y":30.589,"w":37.18,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do you have qualified dividends on Form 1040, line 9b, or Form 1040NR, line 10b? ","S":3,"TS":[0,12,0,0]}]},{"x":4.7,"y":32.027,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"x":5.766,"y":32.027,"w":6.595,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Complete the ","S":3,"TS":[0,12,0,0]}]},{"x":9.044,"y":32.027,"w":24.896,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Qualified Dividends and Capital Gain Tax Worksheet","S":9,"TS":[0,12,1,0]}]},{"x":21.426,"y":32.027,"w":8.206,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" in the instructions","S":3,"TS":[0,12,0,0]}]},{"x":4.698,"y":32.714,"w":31.75,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"for Form 1040, line 44 (or in the instructions for Form 1040NR, line 42). ","S":3,"TS":[0,12,0,0]}]},{"x":4.7,"y":34.339,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"x":5.554,"y":34.339,"w":22.804,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Complete the rest of Form 1040 or Form 1040NR. ","S":3,"TS":[0,12,0,0]}]},{"x":29.705,"y":35.875,"w":14.172,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule D (Form 1040) 2013 ","S":8,"TS":[0,10,1,0]}]},{"x":9.044,"y":19.277,"w":24.896,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Qualified Dividends and Capital Gain Tax Worksheet","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":2175,"AM":1024,"x":9.442,"y":2.062,"w":13.31,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2176,"AM":1024,"x":24.695,"y":2.192,"w":9.286,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":2177,"AM":1024,"TU":"16","x":30.64,"y":5.143,"w":5.31,"h":0.842},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":2180,"AM":0,"TU":"Line 18. Enter the amount, in any from line 7 of the 28% Rate Gain Worksheet in the instructions.","x":30.723,"y":14.673,"w":5.053,"h":1.017},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":2181,"AM":0,"TU":"Line 19. Enter the amount, if any, from line 18 of the Unrecaptured Section 1250 Gain Worksheet in the instructions.","x":30.628,"y":16.805,"w":5.342,"h":1.18},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":2184,"AM":0,"TU":"Line 21. If line 16 is a loss, enter here and on Form 1040, line 13, of Form 1040NR, line 14, the smaller of the loss on line 16 or $33,000, or if married filing separately, $1,500.","x":31.022,"y":26.798,"w":4.633,"h":0.883,"MV":"-"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GAINXY","EN":0},"TI":2178,"AM":0,"TU":"Line 17. Checkboxes.","x":4.08,"y":12.674,"w":0.716,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"GAINXN","EN":0},"TI":2179,"AM":0,"TU":"Line 17. Checkboxes.","x":4.101,"y":13.461,"w":0.655,"h":0.833,"checked":false}],"id":{"Id":"A377RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NORGUNXY","EN":0},"TI":2182,"AM":0,"TU":"Line 20. Checkboxes.","x":4.061,"y":19.458,"w":0.675,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NORGUNXN","EN":0},"TI":2183,"AM":0,"TU":"Line 20. Checkboxes.","x":4.1,"y":22.443,"w":0.634,"h":0.833,"checked":false}],"id":{"Id":"A381RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"QUALDVXY","EN":0},"TI":2185,"AM":0,"TU":"Line 22. Checkboxes.","x":4.089,"y":32.156,"w":0.655,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FQUALDVXN","EN":0},"TI":2186,"AM":0,"TU":"Line 22. Checkboxes.","x":4.112,"y":34.453,"w":0.675,"h":0.833,"checked":false}],"id":{"Id":"A387RB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHE1.json b/test/data/fd/form/FSCHE1.json index 39950ea0..ec70a540 100755 --- a/test/data/fd/form/FSCHE1.json +++ b/test/data/fd/form/FSCHE1.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.105,"y":5.258,"w":1.5,"l":14.936},{"oc":"#221f1f","x":20.997,"y":5.251,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.025,"y":3.001,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.025,"y":5.258,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":71.861},{"oc":"#221f1f","x":77.922,"y":6.751,"w":1.125,"l":21.123},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":9.751,"w":1.125,"l":2.561},{"oc":"#221f1f","x":8.622,"y":9.751,"w":1.125,"l":78.049},{"oc":"#221f1f","x":86.584,"y":9.751,"w":1.125,"l":6.273},{"oc":"#221f1f","x":92.772,"y":9.751,"w":1.125,"l":6.273},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":11.097,"y":10.501,"w":0.75,"l":87.838},{"oc":"#221f1f","x":6.147,"y":11.251,"w":0.75,"l":5.036},{"oc":"#221f1f","x":11.097,"y":11.251,"w":0.75,"l":87.838},{"oc":"#221f1f","x":6.147,"y":12.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":11.097,"y":12.001,"w":0.75,"l":87.838},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":11.097,"y":12.751,"w":0.75,"l":87.838},{"oc":"#221f1f","x":6.126,"y":14.251,"w":0.75,"l":5.036},{"oc":"#221f1f","x":11.076,"y":14.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.126,"y":15.001,"w":0.75,"l":5.036},{"dsh":1,"oc":"#221f1f","x":11.076,"y":15.001,"w":0.75,"l":14.936},{"oc":"#221f1f","x":6.126,"y":15.751,"w":0.75,"l":5.036},{"dsh":1,"oc":"#221f1f","x":11.076,"y":15.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":63.908,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":76.283,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":88.658,"y":14.251,"w":0.75,"l":10.398},{"oc":"#221f1f","x":58.958,"y":14.251,"w":0.75,"l":5.036},{"oc":"#221f1f","x":58.958,"y":15.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":63.908,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":76.283,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":88.658,"y":15.001,"w":0.75,"l":10.398},{"oc":"#221f1f","x":93.169,"y":14.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":93.169,"y":14.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":58.958,"y":15.751,"w":0.75,"l":5.036},{"oc":"#221f1f","x":63.908,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":76.283,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":88.658,"y":15.751,"w":0.75,"l":10.398},{"oc":"#221f1f","x":93.169,"y":15.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":93.169,"y":15.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":93.169,"y":16.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":93.169,"y":15.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.147,"y":16.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":18.751,"w":0.75,"l":22.361},{"oc":"#221f1f","x":28.422,"y":18.751,"w":0.75,"l":22.361},{"oc":"#221f1f","x":50.72,"y":18.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":64.309,"y":18.751,"w":0.75,"l":34.736},{"oc":"#221f1f","x":6.147,"y":18.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.147,"y":19.501,"w":0.75,"l":19.886},{"oc":"#221f1f","x":25.947,"y":18.751,"w":0.75,"l":24.836},{"oc":"#221f1f","x":25.947,"y":19.501,"w":0.75,"l":24.836},{"oc":"#221f1f","x":50.697,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":18.751,"w":0.75,"l":14.927},{"oc":"#221f1f","x":54.409,"y":19.501,"w":0.75,"l":14.927},{"oc":"#221f1f","x":69.25,"y":18.751,"w":0.75,"l":14.936},{"oc":"#221f1f","x":69.25,"y":19.501,"w":0.75,"l":14.936},{"oc":"#221f1f","x":84.1,"y":18.751,"w":0.75,"l":14.9},{"oc":"#221f1f","x":84.1,"y":19.501,"w":0.75,"l":14.9},{"oc":"#221f1f","x":6.147,"y":19.501,"w":0.75,"l":5.036},{"oc":"#221f1f","x":11.097,"y":19.501,"w":0.75,"l":39.686},{"oc":"#221f1f","x":50.74,"y":19.501,"w":0.75,"l":3.712},{"oc":"#221f1f","x":50.74,"y":18.751,"w":0.75,"l":3.712},{"oc":"#221f1f","x":54.409,"y":19.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":19.501,"w":0.75,"l":3.79},{"oc":"#221f1f","x":69.251,"y":19.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.388,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.101,"y":19.501,"w":0.75,"l":11.197},{"oc":"#221f1f","x":95.211,"y":19.501,"w":0.75,"l":3.79},{"oc":"#221f1f","x":6.147,"y":20.251,"w":0.75,"l":5.036},{"oc":"#221f1f","x":11.097,"y":20.251,"w":0.75,"l":39.686},{"oc":"#221f1f","x":50.74,"y":20.251,"w":0.75,"l":3.712},{"oc":"#221f1f","x":50.74,"y":19.501,"w":0.75,"l":3.712},{"oc":"#221f1f","x":54.409,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":20.251,"w":0.75,"l":3.79},{"oc":"#221f1f","x":69.251,"y":20.251,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.388,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.101,"y":20.251,"w":0.75,"l":11.197},{"oc":"#221f1f","x":95.211,"y":20.251,"w":0.75,"l":3.79},{"oc":"#221f1f","x":6.147,"y":21.001,"w":0.75,"l":5.036},{"oc":"#221f1f","x":11.097,"y":21.001,"w":0.75,"l":39.686},{"oc":"#221f1f","x":50.697,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":21.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":21.001,"w":0.75,"l":3.79},{"oc":"#221f1f","x":69.251,"y":21.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.388,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.101,"y":21.001,"w":0.75,"l":11.197},{"oc":"#221f1f","x":95.211,"y":21.001,"w":0.75,"l":3.79},{"oc":"#221f1f","x":6.147,"y":21.001,"w":0.75,"l":28.548},{"oc":"#221f1f","x":54.409,"y":21.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":21.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":21.001,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":22.501,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":23.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":23.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":23.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":23.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":24,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":24,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":24,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":24.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":24.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":24.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":25.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":25.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":25.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":26.249,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":26.249,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":26.249,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":26.249,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":26.249,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":26.249,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":26.249,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":26.999,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":26.999,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":26.999,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":26.999,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":26.999,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":26.999,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":26.999,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":27.749,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":27.749,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":27.749,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":27.749,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":27.749,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":27.749,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":27.749,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":28.499,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":28.499,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":28.499,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":28.499,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":28.499,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":28.499,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":28.499,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":29.249,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":29.249,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":29.249,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":29.249,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":29.249,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":29.249,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":29.249,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":29.999,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":29.999,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":29.999,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":29.999,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":29.999,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":29.999,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":29.999,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":30.749,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":30.749,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":30.749,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":30.749,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":30.749,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":30.749,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":30.749,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":31.499,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":31.499,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":31.499,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":31.499,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":31.499,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":31.499,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":31.499,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.697,"y":32.249,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":32.249,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":32.249,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":32.249,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":32.249,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":32.249,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":32.249,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":20.997,"y":32.998,"w":0.75,"l":28.755},{"oc":"#221f1f","x":50.697,"y":32.998,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.409,"y":32.998,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.547,"y":32.998,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.259,"y":32.998,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.397,"y":32.998,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":32.998,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.247,"y":32.998,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.723,"y":36.983,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.435,"y":36.983,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.573,"y":36.983,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.285,"y":36.983,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.423,"y":36.983,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.135,"y":36.983,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.273,"y":36.983,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.723,"y":39.233,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.435,"y":39.233,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.573,"y":39.233,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.285,"y":39.233,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.423,"y":39.233,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.135,"y":39.233,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.273,"y":39.233,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.723,"y":40.733,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.435,"y":40.733,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.573,"y":40.733,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.285,"y":40.733,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.423,"y":40.733,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.135,"y":40.733,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.573,"y":41.485,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.285,"y":41.485,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.423,"y":41.485,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.135,"y":40.735,"w":0.75,"l":14.936},{"oc":"#221f1f","x":65.573,"y":42.235,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.285,"y":42.235,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.423,"y":42.235,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.573,"y":42.985,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.285,"y":42.985,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.423,"y":42.985,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.573,"y":43.735,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.285,"y":43.735,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.423,"y":43.735,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.573,"y":44.485,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.285,"y":44.485,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.423,"y":44.485,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.423,"y":45.235,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.135,"y":45.235,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.273,"y":45.235,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.423,"y":45.985,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.135,"y":45.985,"w":1.125,"l":11.223},{"oc":"#221f1f","x":95.273,"y":45.985,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.172,"y":48.235,"w":1.5,"l":44.636},{"oc":"#221f1f","x":50.723,"y":48.235,"w":1.5,"l":31.023},{"oc":"#221f1f","x":81.66,"y":48.233,"w":1.5,"l":17.411},{"oc":"#221f1f","x":50.574,"y":33.859,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.287,"y":33.859,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.424,"y":33.859,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.137,"y":33.859,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.274,"y":33.859,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.987,"y":33.859,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.124,"y":33.859,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.574,"y":34.609,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.287,"y":34.609,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.424,"y":34.609,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.137,"y":34.609,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.274,"y":34.609,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.987,"y":34.609,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.124,"y":34.609,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.574,"y":35.359,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.287,"y":35.359,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.424,"y":35.359,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.137,"y":35.359,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.274,"y":35.359,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.987,"y":35.359,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.124,"y":35.359,"w":0.75,"l":3.798},{"oc":"#221f1f","x":50.471,"y":36.226,"w":0.75,"l":3.798},{"oc":"#221f1f","x":54.184,"y":36.226,"w":0.75,"l":11.223},{"oc":"#221f1f","x":65.321,"y":36.226,"w":0.75,"l":3.798},{"oc":"#221f1f","x":69.034,"y":36.226,"w":0.75,"l":11.223},{"oc":"#221f1f","x":80.171,"y":36.226,"w":0.75,"l":3.798},{"oc":"#221f1f","x":83.884,"y":36.226,"w":0.75,"l":11.223},{"oc":"#221f1f","x":95.021,"y":36.226,"w":0.75,"l":3.798}],"VLines":[{"oc":"#221f1f","x":20.998,"y":2.235,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.111,"y":2.235,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.111,"y":2.985,"w":1.5,"l":2.281},{"oc":"#221f1f","x":77.965,"y":5.22,"w":0.75,"l":1.555},{"oc":"#221f1f","x":11.14,"y":9.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.14,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.14,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.14,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.119,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.969,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":25.969,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.119,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.969,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.119,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.969,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":11.119,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.951,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.326,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":88.701,"y":12.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.001,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.951,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.326,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":88.701,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.544,"y":14.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":93.169,"y":14.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":59.001,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.951,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.326,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":88.701,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.544,"y":15.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":93.169,"y":15.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":59.001,"y":15.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.951,"y":15.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":76.326,"y":15.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":88.701,"y":15.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":94.544,"y":15.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":93.169,"y":15.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":25.99,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":25.99,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.293,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.143,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":18.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":50.74,"y":18.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":69.293,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.143,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":19.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":50.74,"y":19.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":65.59,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.293,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.431,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.143,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.254,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.293,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.431,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.143,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.254,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":24.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":26.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":26.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":26.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":26.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":26.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":26.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":26.983,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":26.983,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":26.983,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":26.983,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":26.983,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":26.983,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.983,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":27.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":27.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":27.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":27.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":27.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":27.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":27.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":28.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":28.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":28.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":28.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":28.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":28.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":28.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":29.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":29.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":29.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":29.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":29.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":29.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":29.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":29.983,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":29.983,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":29.983,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":29.983,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":29.983,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":29.983,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":29.983,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":30.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":30.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":30.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":30.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":30.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":30.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":30.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":31.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":31.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":31.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":31.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":31.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":31.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":31.483,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.452,"y":32.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":32.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":32.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.302,"y":32.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":32.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":32.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.233,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.478,"y":36.217,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.766,"y":36.217,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.616,"y":36.217,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.328,"y":36.217,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.466,"y":36.217,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.178,"y":36.217,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.316,"y":36.217,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.478,"y":36.967,"w":0.75,"l":2.281},{"oc":"#221f1f","x":50.766,"y":36.967,"w":0.75,"l":2.281},{"oc":"#221f1f","x":65.616,"y":36.967,"w":0.75,"l":2.281},{"oc":"#221f1f","x":69.328,"y":36.967,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.466,"y":36.967,"w":0.75,"l":2.281},{"oc":"#221f1f","x":84.178,"y":36.967,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.316,"y":36.967,"w":0.75,"l":2.281},{"oc":"#221f1f","x":54.478,"y":39.217,"w":0.75,"l":1.531},{"oc":"#221f1f","x":50.766,"y":39.217,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.616,"y":39.217,"w":0.75,"l":1.531},{"oc":"#221f1f","x":69.328,"y":39.217,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.466,"y":39.217,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.178,"y":39.217,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.316,"y":39.217,"w":0.75,"l":1.539},{"oc":"#221f1f","x":69.328,"y":40.72,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.616,"y":40.72,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.466,"y":40.72,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.178,"y":40.72,"w":0.75,"l":3.781},{"oc":"#221f1f","x":69.328,"y":41.47,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.616,"y":41.47,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.466,"y":41.47,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.328,"y":42.22,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.616,"y":42.22,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.466,"y":42.22,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.328,"y":42.97,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.616,"y":42.97,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.466,"y":42.97,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.328,"y":43.72,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.616,"y":43.72,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.466,"y":43.72,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.178,"y":44.47,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.466,"y":44.47,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.316,"y":44.47,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.178,"y":45.22,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.466,"y":45.22,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.316,"y":45.22,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.178,"y":45.97,"w":0.75,"l":2.281},{"oc":"#221f1f","x":80.466,"y":45.97,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.316,"y":45.97,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.316,"y":47.47,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.33,"y":33.844,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.617,"y":33.844,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.467,"y":33.844,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.18,"y":33.844,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.317,"y":33.844,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.03,"y":33.844,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.167,"y":33.844,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.33,"y":34.594,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.617,"y":34.594,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.467,"y":34.594,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.18,"y":34.594,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.317,"y":34.594,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.03,"y":34.594,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.167,"y":34.594,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.33,"y":35.344,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.617,"y":35.344,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.467,"y":35.344,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.18,"y":35.344,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.317,"y":35.344,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.03,"y":35.344,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.167,"y":35.344,"w":0.75,"l":0.781},{"oc":"#221f1f","x":54.416,"y":33.016,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.703,"y":33.016,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.553,"y":33.016,"w":0.75,"l":0.781},{"oc":"#221f1f","x":69.266,"y":33.016,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.403,"y":33.016,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.116,"y":33.016,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.253,"y":33.016,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":6.751,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":84.178,"y":40.735,"w":14.85,"h":3.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":11.405,"y":9.59,"w":19.724999999999998,"clr":-1,"A":"left","R":[{"T":"Physical%20address%20of%20each%20property%20%20%20%20%20%20%20street","S":3,"TS":[0,12,0,0]}]},{"x":34.656,"y":31.328000000000003,"w":55.13600000000001,"clr":0,"A":"left","R":[{"T":"See%20Form%204562","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.898,"y":2.01,"w":7.0009999999999994,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20E%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.898,"y":2.697,"w":5.9460000000000015,"clr":-1,"A":"left","R":[{"T":"(Form%201040)%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.898,"y":3.8200000000000003,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.898,"y":4.32,"w":13.279000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":37.929,"y":2.101,"w":15.004000000000005,"clr":-1,"A":"left","R":[{"T":"Supplemental%20Income%20and%20Loss","S":-1,"TS":[0,16,1,0]}]},{"oc":"#221f1f","x":21.828,"y":2.758,"w":44.23599999999997,"clr":-1,"A":"left","R":[{"T":"(From%20rental%20real%20estate%2C%20royalties%2C%20partnerships%2C%20S%20corporations%2C%20estates%2C%20trusts%2C%20REMICs%2C%20etc.)","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":37.179,"y":3.476,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":38.547,"y":3.5700000000000003,"w":21.229000000000006,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%201040NR%2C%20or%20Form%201041.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":23.003,"y":4.179,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":85.702,"y":1.9729999999999999,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.817,"y":3.3310000000000004,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.787,"y":3.3310000000000004,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.923,"y":3.926,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.923,"y":4.373,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.901,"y":4.373,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.911,"w":11.483000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.402,"y":4.907,"w":13.449000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":8,"TS":[0,10,1,0]}]},{"x":6.838,"y":6.572,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":6.521,"w":26.508000000000003,"clr":-1,"A":"left","R":[{"T":"Income%20or%20Loss%20From%20Rental%20Real%20Estate%20and%20Royalties%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":50.485,"y":6.521,"w":3.056,"clr":-1,"A":"left","R":[{"T":"Note.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":54.249,"y":6.521,"w":26.263999999999996,"clr":-1,"A":"left","R":[{"T":"If%20you%20are%20in%20the%20business%20of%20renting%20personal%20property%2C%20use%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.602,"y":7.239,"w":5.724,"clr":-1,"A":"left","R":[{"T":"Schedule%20C%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":21.612,"y":7.239,"w":0.907,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":22.859,"y":7.239,"w":2.889,"clr":-1,"A":"left","R":[{"T":"%20C-EZ%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":26.296,"y":7.239,"w":35.876,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).%20If%20you%20are%20an%20individual%2C%20report%20farm%20rental%20income%20or%20loss%20from%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":71.156,"y":7.239,"w":5.279999999999999,"clr":-1,"A":"left","R":[{"T":"Form%204835%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":77.899,"y":7.239,"w":8.522000000000004,"clr":-1,"A":"left","R":[{"T":"on%20page%202%2C%20line%2040.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.647,"y":7.996,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.415,"y":8.001,"w":43.77199999999997,"clr":-1,"A":"left","R":[{"T":"Did%20you%20make%20any%20payments%20in%202013%20that%20would%20require%20you%20to%20file%20Form(s)%201099%3F%20(see%20instructions)","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":88.628,"y":8.108,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.642,"y":8.108,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.633,"y":8.802,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.658,"y":8.802,"w":23.744000000000003,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20did%20you%20or%20will%20you%20file%20required%20Forms%201099%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.628,"y":8.858,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.642,"y":8.858,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.541,"y":9.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.885,"y":10.302,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.869999999999999,"y":11.052,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.8420000000000005,"y":11.802,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.492,"y":12.59,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":12.522,"y":12.59,"w":7.741,"clr":-1,"A":"left","R":[{"T":"Type%20of%20Property%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.824,"y":13.265,"w":7.073,"clr":-1,"A":"left","R":[{"T":"(from%20list%20below)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.864000000000001,"y":14.053,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.85,"y":14.803,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.821,"y":15.553,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":27.355,"y":12.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":29.865,"y":12.653,"w":18.631000000000004,"clr":-1,"A":"left","R":[{"T":"For%20each%20rental%20real%20estate%20property%20listed%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":29.865,"y":13.153,"w":19.208000000000002,"clr":-1,"A":"left","R":[{"T":"above%2C%20report%20the%20number%20of%20fair%20rental%20and%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":29.865,"y":13.653,"w":13.522000000000002,"clr":-1,"A":"left","R":[{"T":"personal%20use%20days.%20Check%20the%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":48.57,"y":13.653,"w":2.2790000000000004,"clr":-1,"A":"left","R":[{"T":"QJV%20","S":-1,"TS":[0,11.64,1,0]}]},{"oc":"#221f1f","x":51.899,"y":13.653,"w":1.963,"clr":-1,"A":"left","R":[{"T":"box%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":29.865,"y":14.153,"w":19.226999999999997,"clr":-1,"A":"left","R":[{"T":"only%20if%20you%20meet%20the%20requirements%20to%20file%20as%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":29.865,"y":14.654,"w":18.67000000000001,"clr":-1,"A":"left","R":[{"T":"a%20qualified%20joint%20venture.%20See%20instructions.%20","S":-1,"TS":[0,11.64,0,0]}]},{"oc":"#221f1f","x":65.893,"y":12.534,"w":5.724000000000002,"clr":-1,"A":"left","R":[{"T":"Fair%20Rental%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":68.054,"y":13.209,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Days","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":77.365,"y":12.534,"w":6.614000000000001,"clr":-1,"A":"left","R":[{"T":"Personal%20Use%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":80.429,"y":13.209,"w":2.39,"clr":-1,"A":"left","R":[{"T":"Days","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":92.088,"y":12.876,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"QJV","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":60.696,"y":14.09,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":60.681,"y":14.84,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":60.653,"y":15.59,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":16.34,"w":8.279,"clr":-1,"A":"left","R":[{"T":"Type%20of%20Property%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":17.09,"w":12.039000000000005,"clr":-1,"A":"left","R":[{"T":"1%20%20Single%20Family%20Residence","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":17.84,"w":11.577000000000005,"clr":-1,"A":"left","R":[{"T":"2%20%20Multi-Family%20Residence","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.215,"y":17.09,"w":13.576000000000002,"clr":-1,"A":"left","R":[{"T":"3%20%20Vacation%2FShort-Term%20Rental","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.215,"y":17.84,"w":6.502000000000001,"clr":-1,"A":"left","R":[{"T":"4%20%20Commercial","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.513,"y":17.09,"w":3.354,"clr":-1,"A":"left","R":[{"T":"5%20%20Land","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":50.513,"y":17.84,"w":5.204000000000001,"clr":-1,"A":"left","R":[{"T":"6%20%20Royalties","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.102,"y":17.09,"w":6.056000000000001,"clr":-1,"A":"left","R":[{"T":"7%20%20Self-Rental","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":64.102,"y":17.89,"w":8.261000000000001,"clr":-1,"A":"left","R":[{"T":"8%20%20Other%20(describe)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.971,"y":18.496,"w":4.112,"clr":-1,"A":"left","R":[{"T":"Income%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":41.353,"y":18.496,"w":5.279000000000001,"clr":-1,"A":"left","R":[{"T":"Properties%3A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":61.093,"y":18.496,"w":1,"clr":-1,"A":"left","R":[{"T":"A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":75.924,"y":18.496,"w":1,"clr":-1,"A":"left","R":[{"T":"B%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":90.727,"y":18.501,"w":1,"clr":-1,"A":"left","R":[{"T":"C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.984999999999999,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":6.945,"clr":-1,"A":"left","R":[{"T":"Rents%20received%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.44,"y":19.34,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.916,"y":19.34,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.984999999999999,"y":20.052,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.09,"w":8.166,"clr":-1,"A":"left","R":[{"T":"Royalties%20received","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":20.09,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.916,"y":20.077,"w":0.556,"clr":-1,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":20.84,"w":5.280000000000001,"clr":-1,"A":"left","R":[{"T":"Expenses%3A%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":21.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":21.59,"w":5,"clr":-1,"A":"left","R":[{"T":"Advertising","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":21.59,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.916,"y":21.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":22.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":22.339,"w":14.613000000000007,"clr":-1,"A":"left","R":[{"T":"Auto%20and%20travel%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":22.339,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.916,"y":22.339,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.089,"w":11.911000000000005,"clr":-1,"A":"left","R":[{"T":"Cleaning%20and%20maintenance","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":23.089,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.916,"y":23.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":23.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.839,"w":6.0760000000000005,"clr":-1,"A":"left","R":[{"T":"Commissions","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":23.839,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.916,"y":23.839,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.555,"y":24.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.589,"w":4.371,"clr":-1,"A":"left","R":[{"T":"Insurance","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":24.589,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.916,"y":24.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":25.338,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.338,"w":15.131000000000004,"clr":-1,"A":"left","R":[{"T":"Legal%20and%20other%20professional%20fees%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":25.338,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.486,"y":25.338,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.088,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.088,"w":8.021,"clr":-1,"A":"left","R":[{"T":"Management%20fees","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.502,"y":26.088,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.486,"y":26.088,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":26.838,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.838,"w":24.616000000000007,"clr":-1,"A":"left","R":[{"T":"Mortgage%20interest%20paid%20to%20banks%2C%20etc.%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.486,"y":26.838,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":27.588,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":27.588,"w":6.094000000000001,"clr":-1,"A":"left","R":[{"T":"Other%20interest","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":27.588,"w":18.662,"clr":-1,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.486,"y":27.588,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":28.338,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.338,"w":3.407,"clr":-1,"A":"left","R":[{"T":"Repairs","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.253,"y":28.338,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.486,"y":28.338,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.088,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.088,"w":3.871,"clr":-1,"A":"left","R":[{"T":"Supplies","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.315,"y":29.088,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.486,"y":29.088,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":29.838,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.838,"w":2.6660000000000004,"clr":-1,"A":"left","R":[{"T":"Taxes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.253,"y":29.838,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.486,"y":29.838,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":30.588,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.588,"w":3.2769999999999997,"clr":-1,"A":"left","R":[{"T":"Utilities","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.253,"y":30.588,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.486,"y":30.588,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":31.338,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.338,"w":15.613000000000001,"clr":-1,"A":"left","R":[{"T":"Depreciation%20expense%20or%20depletion%20","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":34.813,"y":31.338,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":36.877,"y":31.338,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":38.941,"y":31.338,"w":6.875,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.73,0,0]}]},{"oc":"#221f1f","x":51.486,"y":31.338,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.088,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.067,"w":5.112000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20(list)%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.797,"y":31.973,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.72,"y":36.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.915,"y":36.072,"w":17.727,"clr":-1,"A":"left","R":[{"T":"Total%20expenses.%20Add%20lines%205%20through%2019%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.965,"y":36.072,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.512,"y":36.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.72,"y":36.978,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.915,"y":36.947,"w":25.022000000000002,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2020%20from%20line%203%20(rents)%20and%2For%204%20(royalties).%20If%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.917,"y":37.634,"w":24.783000000000012,"clr":-1,"A":"left","R":[{"T":"result%20is%20a%20(loss)%2C%20see%20instructions%20to%20find%20out%20if%20you%20must%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.918,"y":38.321,"w":1.5550000000000002,"clr":-1,"A":"left","R":[{"T":"file%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.98,"y":38.321,"w":5.279999999999999,"clr":-1,"A":"left","R":[{"T":"Form%206198%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":22.469,"y":38.321,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.512,"y":38.322,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.72,"y":39.197,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.915,"y":39.135,"w":24.707000000000008,"clr":-1,"A":"left","R":[{"T":"Deductible%20rental%20real%20estate%20loss%20after%20limitation%2C%20if%20any%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.915,"y":39.822,"w":1.4080000000000001,"clr":-1,"A":"left","R":[{"T":"on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.75,"y":39.822,"w":5.279999999999999,"clr":-1,"A":"left","R":[{"T":"Form%208582%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":20.4,"y":39.822,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.841,"y":39.822,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.512,"y":39.822,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.565,"y":39.777,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":68.556,"y":39.777,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.416,"y":39.777,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":83.406,"y":39.777,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":84.266,"y":39.777,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":98.256,"y":39.777,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.72,"y":40.574,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"23a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.915,"y":40.574,"w":27.558999999999994,"clr":-1,"A":"left","R":[{"T":"Total%20of%20all%20amounts%20reported%20on%20line%203%20for%20all%20rental%20properties%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.465,"y":40.574,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.918,"y":40.574,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"23a","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.44,"y":41.324,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.915,"y":41.324,"w":27.761999999999997,"clr":-1,"A":"left","R":[{"T":"Total%20of%20all%20amounts%20reported%20on%20line%204%20for%20all%20royalty%20properties","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.465,"y":41.324,"w":5.332,"clr":-1,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.889,"y":41.324,"w":1.723,"clr":-1,"A":"left","R":[{"T":"23b","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.44,"y":42.074,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.915,"y":42.074,"w":25.058999999999997,"clr":-1,"A":"left","R":[{"T":"Total%20of%20all%20amounts%20reported%20on%20line%2012%20for%20all%20properties","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.34,"y":42.074,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.918,"y":42.074,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"23c","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.44,"y":42.824,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.915,"y":42.824,"w":25.058999999999997,"clr":-1,"A":"left","R":[{"T":"Total%20of%20all%20amounts%20reported%20on%20line%2018%20for%20all%20properties","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.34,"y":42.824,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.889,"y":42.824,"w":1.723,"clr":-1,"A":"left","R":[{"T":"23d","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":8.44,"y":43.574,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.915,"y":43.574,"w":25.058999999999997,"clr":-1,"A":"left","R":[{"T":"Total%20of%20all%20amounts%20reported%20on%20line%2020%20for%20all%20properties","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.34,"y":43.574,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.918,"y":43.575,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"23e","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.72,"y":44.324,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.915,"y":44.324,"w":4.335000000000001,"clr":-1,"A":"left","R":[{"T":"Income.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":16.67,"y":44.324,"w":18.135,"clr":-1,"A":"left","R":[{"T":"Add%20positive%20amounts%20shown%20on%20line%2021.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.801,"y":44.324,"w":3.1660000000000004,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":46.214,"y":44.324,"w":8.483,"clr":-1,"A":"left","R":[{"T":"%20include%20any%20losses","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.778,"y":44.324,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.212,"y":44.324,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.72,"y":45.074,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.915,"y":45.074,"w":4.280000000000001,"clr":-1,"A":"left","R":[{"T":"Losses.%20%20","S":-1,"TS":[0,11.46,1,0]}]},{"oc":"#221f1f","x":16.025,"y":45.074,"w":42.83999999999997,"clr":-1,"A":"left","R":[{"T":"Add%20royalty%20losses%20from%20line%2021%20and%20rental%20real%20estate%20losses%20from%20line%2022.%20Enter%20total%20losses%20here%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":81.212,"y":45.074,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"25%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":84.094,"y":45.03,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":98.256,"y":45.03,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.72,"y":45.981,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.915,"y":45.95,"w":24.785999999999998,"clr":-1,"A":"left","R":[{"T":"Total%20rental%20real%20estate%20and%20royalty%20income%20or%20(loss).%20","S":-1,"TS":[0,11.55,1,0]}]},{"oc":"#221f1f","x":44.818,"y":45.95,"w":21.248,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%2024%20and%2025.%20Enter%20the%20result%20here.%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.917,"y":46.637,"w":45.272999999999975,"clr":-1,"A":"left","R":[{"T":"If%20Parts%20II%2C%20III%2C%20IV%2C%20and%20line%2040%20on%20page%202%20do%20not%20apply%20to%20you%2C%20also%20enter%20this%20amount%20on%20Form%201040%2C%20line%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.904,"y":47.324,"w":41.606999999999985,"clr":-1,"A":"left","R":[{"T":"17%2C%20or%20Form%201040NR%2C%20line%2018.%20Otherwise%2C%20include%20this%20amount%20in%20the%20total%20on%20line%2041%20on%20page%202.","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":73.701,"y":47.324,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":75.764,"y":47.324,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":77.828,"y":47.324,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":81.212,"y":47.325,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"26%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.068,"y":48.467,"w":32.342000000000006,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20the%20separate%20instructions.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":51.398,"y":48.063,"w":7.3180000000000005,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011344L","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.368,"y":48.483,"w":14.11700000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20E%20(Form%201040)%202013%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":51.363,"y":33.698,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"x":61.906,"y":48.036,"w":67.60000000000002,"clr":0,"A":"left","R":[{"T":"Schedule%20E%20page%202","S":-1,"TS":[0,11,0,0]}]},{"x":58.839,"y":9.565,"w":14.166,"clr":0,"A":"left","R":[{"T":"city","S":3,"TS":[0,12,0,0]}]},{"x":76.349,"y":9.608,"w":22.338,"clr":0,"A":"left","R":[{"T":"%20state","S":3,"TS":[0,12,0,0]}]},{"x":85.675,"y":9.599,"w":40.5,"clr":0,"A":"left","R":[{"T":"%20ZIP%20Code","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":24.274,"y":4.272,"w":41.95699999999996,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Schedule%20E%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fschedulee.","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC","EN":0},"TI":8415,"AM":0,"x":21.567,"y":3.608,"w":14.241,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8416,"AM":1024,"x":6.188,"y":5.839,"w":71.651,"h":0.833,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8417,"AM":1024,"x":78.107,"y":5.831,"w":20.872,"h":0.833,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_L1A_1_","EN":0},"TI":8422,"AM":0,"x":11.413,"y":10.448,"w":36.168,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_CITY_1_","EN":0},"TI":8423,"AM":0,"x":48.311,"y":10.427,"w":21.289,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_ST_1_","EN":0},"TI":8424,"AM":0,"x":72.304,"y":10.55,"w":4.426,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"LINE1A_ZIP_1_","EN":0},"TI":8425,"AM":0,"x":80.953,"y":10.454,"w":18.07,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_L1A_2_","EN":0},"TI":8426,"AM":0,"x":11.33,"y":11.167,"w":36.168,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_CITY_2_","EN":0},"TI":8427,"AM":0,"x":48.229,"y":11.146,"w":21.289,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_ST_2_","EN":0},"TI":8428,"AM":0,"x":72.349,"y":11.304,"w":4.426,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"LINE1A_ZIP_2_","EN":0},"TI":8429,"AM":0,"x":80.87,"y":11.174,"w":18.07,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_L1A_3_","EN":0},"TI":8430,"AM":0,"x":11.33,"y":11.98,"w":36.168,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_CITY_3_","EN":0},"TI":8431,"AM":0,"x":48.229,"y":11.959,"w":21.289,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_ST_3_","EN":0},"TI":8432,"AM":0,"x":72.395,"y":12.042,"w":4.426,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"LINE1A_ZIP_3_","EN":0},"TI":8433,"AM":0,"x":80.87,"y":11.986,"w":18.07,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TYPE_1_","EN":0},"TI":8434,"AM":0,"x":11.139,"y":14.152,"w":14.008,"h":0.86,"PL":{"V":[" ","Single Family Residence","Multi-Family Residence","Vacation/Short-Term Rental","Commercial","Land","Royalties","Self-Rental","Other"],"D":["(no entry)","1","2","3","4","5","6","7","Other"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB14_FAIRDAY_1_","EN":0},"TI":8435,"AM":0,"x":64.056,"y":14.284,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB14_PERSDAY_1_","EN":0},"TI":8436,"AM":0,"x":76.539,"y":14.304,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TYPE_2_","EN":0},"TI":8438,"AM":0,"x":11.006,"y":15.029,"w":14.291,"h":0.833,"PL":{"V":[" ","Single Family Residence","Multi-Family Residence","Vacation/Short-Term Rental","Commercial","Land","Royalties","Self-Rental","Other"],"D":["(no entry)","1","2","3","4","5","6","7","Other"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB14_FAIRDAY_2_","EN":0},"TI":8439,"AM":0,"x":63.981,"y":15.019,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB14_PERSDAY_2_","EN":0},"TI":8440,"AM":0,"x":76.634,"y":15.019,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TYPE_3_","EN":0},"TI":8442,"AM":0,"x":11.077,"y":15.773,"w":14.572,"h":0.833,"PL":{"V":[" ","Single Family Residence","Multi-Family Residence","Vacation/Short-Term Rental","Commercial","Land","Royalties","Self-Rental","Other"],"D":["(no entry)","1","2","3","4","5","6","7","Other"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB14_FAIRDAY_3_","EN":0},"TI":8443,"AM":0,"x":64.036,"y":15.802,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB14_PERSDAY_3_","EN":0},"TI":8444,"AM":0,"x":76.613,"y":15.829,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHER_TYOTH_1_","EN":0},"TI":8446,"AM":0,"x":77.888,"y":17.87,"w":14.54,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE3B_L3_1_","EN":0},"TI":8447,"AM":0,"x":54.553,"y":19.538,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE3B_L3_2_","EN":0},"TI":8448,"AM":0,"x":69.541,"y":19.539,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE3B_L3_3_","EN":0},"TI":8449,"AM":0,"x":84.12,"y":19.559,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE4_L4_1_","EN":0},"TI":8450,"AM":0,"x":54.683,"y":20.318,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE4_L4_2_","EN":0},"TI":8451,"AM":0,"x":69.671,"y":20.319,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE4_L4_3_","EN":0},"TI":8452,"AM":0,"x":84.25,"y":20.339,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE5_L5_1_","EN":0},"TI":8453,"AM":0,"x":54.738,"y":21.753,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE5_L5_2_","EN":0},"TI":8454,"AM":0,"x":69.725,"y":21.754,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE5_L5_3_","EN":0},"TI":8455,"AM":0,"x":84.304,"y":21.774,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE6AT_L6AT_1_","EN":0},"TI":8456,"AM":0,"x":54.695,"y":22.527,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE6AT_L6AT_2_","EN":0},"TI":8457,"AM":0,"x":69.683,"y":22.529,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE6AT_L6AT_3_","EN":0},"TI":8458,"AM":0,"x":84.412,"y":22.576,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE7_L7_1_","EN":0},"TI":8459,"AM":0,"x":54.732,"y":23.249,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE7_L7_2_","EN":0},"TI":8460,"AM":0,"x":69.72,"y":23.25,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE7_L7_3_","EN":0},"TI":8461,"AM":0,"x":84.299,"y":23.27,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE8_L8_1_","EN":0},"TI":8462,"AM":0,"x":54.622,"y":24.026,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE8_L8_2_","EN":0},"TI":8463,"AM":0,"x":69.61,"y":24.027,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE8_L8_3_","EN":0},"TI":8464,"AM":0,"x":84.189,"y":24.047,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE9_L9_1_","EN":0},"TI":8465,"AM":0,"x":54.528,"y":24.808,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE9_L9_2_","EN":0},"TI":8466,"AM":0,"x":69.515,"y":24.809,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE9_L9_3_","EN":0},"TI":8467,"AM":0,"x":84.094,"y":24.829,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10_1_","EN":0},"TI":8468,"AM":0,"x":54.475,"y":25.523,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10_2_","EN":0},"TI":8469,"AM":0,"x":69.463,"y":25.524,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10_3_","EN":0},"TI":8470,"AM":0,"x":84.042,"y":25.544,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11_1_","EN":0},"TI":8471,"AM":0,"x":54.604,"y":26.303,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11_2_","EN":0},"TI":8472,"AM":0,"x":69.592,"y":26.305,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11_3_","EN":0},"TI":8473,"AM":0,"x":84.171,"y":26.325,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE12_L12_1_","EN":0},"TI":8474,"AM":0,"x":54.509,"y":27.004,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE12_L12_2_","EN":0},"TI":8475,"AM":0,"x":69.497,"y":27.005,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE12_L12_3_","EN":0},"TI":8476,"AM":0,"x":84.076,"y":27.025,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE13_L13_1_","EN":0},"TI":8477,"AM":0,"x":54.467,"y":27.778,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE13_L13_2_","EN":0},"TI":8478,"AM":0,"x":69.455,"y":27.779,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE13_L13_3_","EN":0},"TI":8479,"AM":0,"x":84.184,"y":27.826,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14_1_","EN":0},"TI":8480,"AM":0,"x":54.504,"y":28.499,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14_2_","EN":0},"TI":8481,"AM":0,"x":69.492,"y":28.5,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14_3_","EN":0},"TI":8482,"AM":0,"x":84.071,"y":28.52,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE15_L15_1_","EN":0},"TI":8483,"AM":0,"x":54.394,"y":29.276,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE15_L15_2_","EN":0},"TI":8484,"AM":0,"x":69.382,"y":29.277,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE15_L15_3_","EN":0},"TI":8485,"AM":0,"x":84.133,"y":29.297,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE16_L16_1_","EN":0},"TI":8486,"AM":0,"x":54.493,"y":30.037,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE16_L16_2_","EN":0},"TI":8487,"AM":0,"x":69.481,"y":30.038,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE16_L16_3_","EN":0},"TI":8488,"AM":0,"x":84.06,"y":30.058,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE17_L17_1_","EN":0},"TI":8489,"AM":0,"x":54.449,"y":30.793,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE17_L17_2_","EN":0},"TI":8490,"AM":0,"x":69.437,"y":30.795,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE17_L17_3_","EN":0},"TI":8491,"AM":0,"x":84.188,"y":30.814,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4562E"}},"id":{"Id":"Add_F4562E","EN":0},"TI":8492,"AM":1024,"x":44.086,"y":31.49,"w":6.311,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE18_L20_1_","EN":0},"TI":8493,"AM":0,"x":54.579,"y":31.472,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE18_L20_2_","EN":0},"TI":8494,"AM":0,"x":69.417,"y":31.501,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE18_L20_3_","EN":0},"TI":8495,"AM":0,"x":84.22,"y":31.548,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18T_1_","EN":0},"TI":8496,"AM":0,"x":20.996,"y":32.252,"w":28.772,"h":0.833,"MV":"aaaaaaaaaaaaaaaaaaaa"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18A_1_","EN":0},"TI":8497,"AM":0,"x":54.421,"y":32.324,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18B_1_","EN":0},"TI":8498,"AM":0,"x":69.259,"y":32.352,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18C_1_","EN":0},"TI":8499,"AM":0,"x":84.062,"y":32.399,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18T_2_","EN":0},"TI":8500,"AM":0,"x":21.016,"y":33.05,"w":28.772,"h":0.833,"MV":"aaaaaaaaaaaaaaaaaaaa"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18A_2_","EN":0},"TI":8501,"AM":0,"x":54.784,"y":33.087,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18B_2_","EN":0},"TI":8502,"AM":0,"x":69.622,"y":33.115,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18C_2_","EN":0},"TI":8503,"AM":0,"x":84.226,"y":33.126,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18T_3_","EN":0},"TI":8504,"AM":0,"x":21.093,"y":33.906,"w":28.772,"h":0.833,"MV":"aaaaaaaaaaaaaaaaaaaa"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18A_3_","EN":0},"TI":8505,"AM":0,"x":54.861,"y":33.915,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18B_3_","EN":0},"TI":8506,"AM":0,"x":69.699,"y":33.944,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18C_3_","EN":0},"TI":8507,"AM":0,"x":84.203,"y":33.892,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18T_4_","EN":0},"TI":8508,"AM":0,"x":21.051,"y":34.723,"w":28.772,"h":0.833,"MV":"aaaaaaaaaaaaaaaaaaaa"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18A_4_","EN":0},"TI":8509,"AM":0,"x":54.647,"y":34.733,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18B_4_","EN":0},"TI":8510,"AM":0,"x":69.609,"y":34.643,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18C_4_","EN":0},"TI":8511,"AM":0,"x":84.014,"y":34.653,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18T_5_","EN":0},"TI":8512,"AM":0,"x":20.933,"y":35.587,"w":28.772,"h":0.833,"MV":"aaaaaaaaaaaaaaaaaaaa"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18A_5_","EN":0},"TI":8513,"AM":0,"x":54.602,"y":35.488,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18B_5_","EN":0},"TI":8514,"AM":0,"x":69.34,"y":35.47,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18C_5_","EN":0},"TI":8515,"AM":0,"x":84.343,"y":35.554,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE20_L19_1_","EN":0},"TI":8516,"AM":1024,"x":54.419,"y":36.357,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE20_L19_2_","EN":0},"TI":8517,"AM":1024,"x":69.407,"y":36.313,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE20_L19_3_","EN":0},"TI":8518,"AM":1024,"x":84.285,"y":36.289,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6198E"}},"id":{"Id":"Add_F6198E","EN":0},"TI":8519,"AM":1024,"x":21.887,"y":38.458,"w":6.311,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE21_L22_1_","EN":0},"TI":8520,"AM":0,"x":54.574,"y":38.527,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE21_L22_2_","EN":0},"TI":8521,"AM":0,"x":69.443,"y":38.528,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE21_L22_3_","EN":0},"TI":8522,"AM":0,"x":84.44,"y":38.521,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8582"}},"id":{"Id":"Add_F8582","EN":0},"TI":8523,"AM":1024,"x":33.394,"y":39.947,"w":6.311,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE22_L23_1_","EN":0},"TI":8524,"AM":0,"x":55.182,"y":40.084,"w":10.278,"h":0.833,"MV":"-"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE22_L23_2_","EN":0},"TI":8525,"AM":0,"x":69.945,"y":40.085,"w":10.428,"h":0.833,"MV":"-"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE22_L23_3_","EN":0},"TI":8526,"AM":0,"x":85.048,"y":40.078,"w":10.053,"h":0.833,"MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RENT1","EN":0},"TI":8527,"AM":1024,"x":69.303,"y":40.82,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ROYAL2","EN":0},"TI":8528,"AM":1024,"x":69.303,"y":41.57,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L12T","EN":0},"TI":8529,"AM":1024,"x":69.303,"y":42.32,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20T","EN":0},"TI":8530,"AM":1024,"x":69.303,"y":43.07,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19T","EN":0},"TI":8531,"AM":1024,"x":69.303,"y":43.82,"w":10.952,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":8532,"AM":1024,"x":84.19,"y":44.609,"w":10.762,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":8533,"AM":0,"x":84.545,"y":45.418,"w":10.312,"h":0.833,"MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":8534,"AM":1024,"x":84.257,"y":47.436,"w":10.746,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHE2"}},"id":{"Id":"Add_SchE_Page2","EN":0},"TI":8535,"AM":1024,"x":75.088,"y":48.171,"w":6.311,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099AY","EN":0},"TI":8418,"AM":0,"x":86.696,"y":8.242,"w":1.222,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099AN","EN":0},"TI":8419,"AM":0,"x":92.898,"y":8.285,"w":1.222,"h":0.833,"checked":false}],"id":{"Id":"A519RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099BY","EN":0},"TI":8420,"AM":0,"x":86.825,"y":8.995,"w":1.222,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099BN","EN":0},"TI":8421,"AM":0,"x":92.802,"y":8.894,"w":1.408,"h":0.833,"checked":false}],"id":{"Id":"A523RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TB14_QJV_1_","EN":0},"TI":8437,"AM":0,"x":93.113,"y":14.214,"w":1.671,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TB14_QJV_2_","EN":0},"TI":8441,"AM":0,"x":93.048,"y":14.926,"w":1.671,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TB14_QJV_3_","EN":0},"TI":8445,"AM":0,"x":92.953,"y":15.708,"w":1.671,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Supplemental Income and Loss","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131127105735-08'00'","ModDate":"D:20140114141328-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.22,"y":5.258,"w":1.5,"l":5.431,"oc":"#221f1f"},{"x":7.635,"y":5.251,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.555,"y":3.001,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.555,"y":5.258,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.235,"y":6.751,"w":1.125,"l":26.131,"oc":"#221f1f"},{"x":28.335,"y":6.751,"w":1.125,"l":7.681,"oc":"#221f1f"},{"x":2.235,"y":8.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":9.751,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":9.751,"w":1.125,"l":28.381,"oc":"#221f1f"},{"x":31.485,"y":9.751,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":33.735,"y":9.751,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":10.501,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":4.035,"y":10.501,"w":0.75,"l":31.941,"oc":"#221f1f"},{"x":2.235,"y":11.251,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":4.035,"y":11.251,"w":0.75,"l":31.941,"oc":"#221f1f"},{"x":2.235,"y":12.001,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":4.035,"y":12.001,"w":0.75,"l":31.941,"oc":"#221f1f"},{"x":2.235,"y":12.751,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":4.035,"y":12.751,"w":0.75,"l":31.941,"oc":"#221f1f"},{"x":2.228,"y":14.251,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":4.028,"y":14.251,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":2.228,"y":15.001,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":4.028,"y":15.001,"w":0.75,"l":5.431,"oc":"#221f1f","dsh":1},{"x":2.228,"y":15.751,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":4.028,"y":15.751,"w":0.75,"l":5.431,"oc":"#221f1f","dsh":1},{"x":23.239,"y":14.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.739,"y":14.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":32.239,"y":14.251,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":21.439,"y":14.251,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":21.439,"y":15.001,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":23.239,"y":15.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.739,"y":15.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":32.239,"y":15.001,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":33.88,"y":14.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.88,"y":14.376,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":21.439,"y":15.751,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":23.239,"y":15.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.739,"y":15.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":32.239,"y":15.751,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":33.88,"y":15.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.88,"y":15.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.88,"y":16.376,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.88,"y":15.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":2.235,"y":16.501,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":18.751,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":10.335,"y":18.751,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":18.444,"y":18.751,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":23.385,"y":18.751,"w":0.75,"l":12.631,"oc":"#221f1f"},{"x":2.235,"y":18.751,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":2.235,"y":19.501,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":9.435,"y":18.751,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":9.435,"y":19.501,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":18.435,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":18.751,"w":0.75,"l":5.428,"oc":"#221f1f"},{"x":19.785,"y":19.501,"w":0.75,"l":5.428,"oc":"#221f1f"},{"x":25.182,"y":18.751,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":25.182,"y":19.501,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":30.582,"y":18.751,"w":0.75,"l":5.418,"oc":"#221f1f"},{"x":30.582,"y":19.501,"w":0.75,"l":5.418,"oc":"#221f1f"},{"x":2.235,"y":19.501,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":4.035,"y":19.501,"w":0.75,"l":14.431,"oc":"#221f1f"},{"x":18.451,"y":19.501,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":18.451,"y":18.751,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":19.785,"y":19.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":19.501,"w":0.75,"l":1.378,"oc":"#221f1f"},{"x":25.182,"y":19.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.232,"y":19.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.582,"y":19.501,"w":0.75,"l":4.072,"oc":"#221f1f"},{"x":34.622,"y":19.501,"w":0.75,"l":1.378,"oc":"#221f1f"},{"x":2.235,"y":20.251,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":4.035,"y":20.251,"w":0.75,"l":14.431,"oc":"#221f1f"},{"x":18.451,"y":20.251,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":18.451,"y":19.501,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":19.785,"y":20.251,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":20.251,"w":0.75,"l":1.378,"oc":"#221f1f"},{"x":25.182,"y":20.251,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.232,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.582,"y":20.251,"w":0.75,"l":4.072,"oc":"#221f1f"},{"x":34.622,"y":20.251,"w":0.75,"l":1.378,"oc":"#221f1f"},{"x":2.235,"y":21.001,"w":0.75,"l":1.831,"oc":"#221f1f"},{"x":4.035,"y":21.001,"w":0.75,"l":14.431,"oc":"#221f1f"},{"x":18.435,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":21.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":21.001,"w":0.75,"l":1.378,"oc":"#221f1f"},{"x":25.182,"y":21.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.232,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.582,"y":21.001,"w":0.75,"l":4.072,"oc":"#221f1f"},{"x":34.622,"y":21.001,"w":0.75,"l":1.378,"oc":"#221f1f"},{"x":2.235,"y":21.001,"w":0.75,"l":10.381,"oc":"#221f1f"},{"x":19.785,"y":21.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":21.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":21.001,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.435,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":22.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":22.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":22.501,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.435,"y":23.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":23.25,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":23.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":23.25,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":23.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":23.25,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":23.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.435,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":24,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":24,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":24,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.435,"y":24.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":24.75,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":24.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":24.75,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":24.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":24.75,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":24.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.435,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":25.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":25.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":25.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.435,"y":26.249,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":26.249,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":26.249,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":26.249,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":26.249,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":26.249,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":26.249,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.435,"y":26.999,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":26.999,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":26.999,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":26.999,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":26.999,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":26.999,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":26.999,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.435,"y":27.749,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":27.749,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":27.749,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":27.749,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":27.749,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":27.749,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":27.749,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.435,"y":28.499,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":28.499,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":28.499,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":28.499,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":28.499,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":28.499,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":28.499,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.435,"y":29.249,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":29.249,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":29.249,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":29.249,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":29.249,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":29.249,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":29.249,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.435,"y":29.999,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":29.999,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":29.999,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":29.999,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":29.999,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":29.999,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":29.999,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.435,"y":30.749,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":30.749,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":30.749,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":30.749,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":30.749,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":30.749,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":30.749,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.435,"y":31.499,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":31.499,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":31.499,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":31.499,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":31.499,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":31.499,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":31.499,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.435,"y":32.249,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":32.249,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":32.249,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":32.249,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":32.249,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":32.249,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":32.249,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":7.635,"y":32.998,"w":0.75,"l":10.456,"oc":"#221f1f","dsh":1},{"x":18.435,"y":32.998,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.785,"y":32.998,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.835,"y":32.998,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.185,"y":32.998,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.235,"y":32.998,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":32.998,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.635,"y":32.998,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.445,"y":36.983,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.795,"y":36.983,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.845,"y":36.983,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.195,"y":36.983,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.245,"y":36.983,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.595,"y":36.983,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.645,"y":36.983,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.445,"y":39.233,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.795,"y":39.233,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.845,"y":39.233,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.195,"y":39.233,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.245,"y":39.233,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.595,"y":39.233,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.645,"y":39.233,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.445,"y":40.733,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.795,"y":40.733,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.845,"y":40.733,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.195,"y":40.733,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.245,"y":40.733,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.595,"y":40.733,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.845,"y":41.485,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.195,"y":41.485,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.245,"y":41.485,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.595,"y":40.735,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":23.845,"y":42.235,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.195,"y":42.235,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.245,"y":42.235,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.845,"y":42.985,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.195,"y":42.985,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.245,"y":42.985,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.845,"y":43.735,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.195,"y":43.735,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.245,"y":43.735,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.845,"y":44.485,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.195,"y":44.485,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.245,"y":44.485,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.245,"y":45.235,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.595,"y":45.235,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.645,"y":45.235,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.245,"y":45.985,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.595,"y":45.985,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":34.645,"y":45.985,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.244,"y":48.235,"w":1.5,"l":16.231,"oc":"#221f1f"},{"x":18.445,"y":48.235,"w":1.5,"l":11.281,"oc":"#221f1f"},{"x":29.695,"y":48.233,"w":1.5,"l":6.331,"oc":"#221f1f"},{"x":18.391,"y":33.859,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.741,"y":33.859,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.791,"y":33.859,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.141,"y":33.859,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.191,"y":33.859,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.541,"y":33.859,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.591,"y":33.859,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.391,"y":34.609,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.741,"y":34.609,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.791,"y":34.609,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.141,"y":34.609,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.191,"y":34.609,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.541,"y":34.609,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.591,"y":34.609,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.391,"y":35.359,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.741,"y":35.359,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.791,"y":35.359,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.141,"y":35.359,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.191,"y":35.359,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.541,"y":35.359,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.591,"y":35.359,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":18.353,"y":36.226,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":19.703,"y":36.226,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":23.753,"y":36.226,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":25.103,"y":36.226,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":29.153,"y":36.226,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.503,"y":36.226,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":34.553,"y":36.226,"w":0.75,"l":1.381,"oc":"#221f1f"}],"VLines":[{"x":7.636,"y":2.235,"w":1.5,"l":3.047,"oc":"#221f1f"},{"x":30.586,"y":2.235,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.586,"y":2.985,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":28.351,"y":5.22,"w":0.75,"l":1.555,"oc":"#221f1f"},{"x":4.051,"y":9.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":4.051,"y":10.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":4.051,"y":11.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":4.051,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":4.043,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":9.443,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":9.443,"y":14.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":4.043,"y":14.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":9.443,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":4.043,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":9.443,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":4.043,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.255,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.755,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":32.255,"y":12.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.455,"y":14.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.255,"y":14.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.755,"y":14.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":32.255,"y":14.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.38,"y":14.376,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.88,"y":14.376,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":21.455,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.255,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.755,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":32.255,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.38,"y":15.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.88,"y":15.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":21.455,"y":15.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.255,"y":15.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.755,"y":15.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":32.255,"y":15.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.38,"y":15.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.88,"y":15.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":9.451,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":9.451,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.198,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.598,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":18.751,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":18.451,"y":18.751,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":25.198,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.598,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":19.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":18.451,"y":19.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":23.851,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.198,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.248,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.598,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.638,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.198,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.248,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.598,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.638,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":23.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":23.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":23.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":23.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":23.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":23.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":23.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":24.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":26.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":26.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":26.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":26.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":26.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":26.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":26.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":26.983,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":26.983,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":26.983,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":26.983,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":26.983,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":26.983,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":26.983,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":27.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":27.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":27.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":27.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":27.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":27.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":27.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":28.483,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":28.483,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":28.483,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":28.483,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":28.483,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":28.483,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":28.483,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":29.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":29.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":29.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":29.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":29.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":29.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":29.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":29.983,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":29.983,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":29.983,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":29.983,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":29.983,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":29.983,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":29.983,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":30.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":30.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":30.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":30.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":30.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":30.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":30.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":31.483,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":31.483,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":31.483,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":31.483,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":31.483,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":31.483,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":31.483,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.801,"y":32.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":32.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":32.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.201,"y":32.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":32.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":32.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":32.233,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.81,"y":36.217,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.46,"y":36.217,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.86,"y":36.217,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.21,"y":36.217,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.26,"y":36.217,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.61,"y":36.217,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.66,"y":36.217,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.81,"y":36.967,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":18.46,"y":36.967,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":23.86,"y":36.967,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":25.21,"y":36.967,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.26,"y":36.967,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.61,"y":36.967,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.66,"y":36.967,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":19.81,"y":39.217,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.46,"y":39.217,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":23.86,"y":39.217,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.21,"y":39.217,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.26,"y":39.217,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.61,"y":39.217,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.66,"y":39.217,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":25.21,"y":40.72,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.86,"y":40.72,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.26,"y":40.72,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.61,"y":40.72,"w":0.75,"l":3.781,"oc":"#221f1f"},{"x":25.21,"y":41.47,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.86,"y":41.47,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.26,"y":41.47,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.21,"y":42.22,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.86,"y":42.22,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.26,"y":42.22,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.21,"y":42.97,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.86,"y":42.97,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.26,"y":42.97,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.21,"y":43.72,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.86,"y":43.72,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.26,"y":43.72,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.61,"y":44.47,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.26,"y":44.47,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.66,"y":44.47,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.61,"y":45.22,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.26,"y":45.22,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.66,"y":45.22,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.61,"y":45.97,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":29.26,"y":45.97,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.66,"y":45.97,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.66,"y":47.47,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.756,"y":33.844,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.406,"y":33.844,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.806,"y":33.844,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.156,"y":33.844,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.206,"y":33.844,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.556,"y":33.844,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.606,"y":33.844,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.756,"y":34.594,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.406,"y":34.594,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.806,"y":34.594,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.156,"y":34.594,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.206,"y":34.594,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.556,"y":34.594,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.606,"y":34.594,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.756,"y":35.344,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.406,"y":35.344,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.806,"y":35.344,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.156,"y":35.344,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.206,"y":35.344,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.556,"y":35.344,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.606,"y":35.344,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":19.787,"y":33.016,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.437,"y":33.016,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.837,"y":33.016,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":25.187,"y":33.016,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.237,"y":33.016,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.587,"y":33.016,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.637,"y":33.016,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":6.751,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":30.61,"y":40.735,"w":5.4,"h":3.75,"oc":"#bebfc1"}],"Texts":[{"x":3.9880000000000004,"y":9.59,"w":19.725,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Physical address of each property street","S":3,"TS":[0,12,0,0]}]},{"x":12.443,"y":31.328000000000003,"w":55.136,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"See Form 4562","S":-1,"TS":[0,11,0,0]}]},{"x":1.9860000000000002,"y":2.01,"w":7.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"SCHEDULE E ","S":10,"TS":[0,14,1,0]}]},{"x":1.9860000000000002,"y":2.697,"w":5.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(Form 1040) ","S":10,"TS":[0,14,1,0]}]},{"x":1.9860000000000002,"y":3.8200000000000003,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":1.9860000000000002,"y":4.32,"w":13.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99) ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":13.633,"y":2.101,"w":15.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Supplemental Income and Loss","S":-1,"TS":[0,16,1,0]}]},{"x":24.088,"y":2.101,"w":7.2,"oc":"#221f1f","sw":0.390625,"A":"left","R":[{"T":" ","S":-1,"TS":[2,17,0,0]}]},{"x":7.7780000000000005,"y":2.758,"w":44.236,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(From rental real estate, royalties, partnerships, S corporations, estates, trusts, REMICs, etc.)","S":-1,"TS":[0,11,1,0]}]},{"x":13.361,"y":3.476,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":13.736,"y":3.476,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":48,"TS":[3,10,0,0]}]},{"x":13.858,"y":3.5700000000000003,"w":21.229,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach to Form 1040, 1040NR, or Form 1041. ","S":-1,"TS":[0,11,1,0]}]},{"x":8.067,"y":4.272,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":8.206,"y":4.179,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":8.581,"y":4.21,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":1,"TS":[0,8,0,0]}]},{"x":31.005,"y":1.9729999999999999,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.411,"y":3.3310000000000004,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.491,"y":3.3310000000000004,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":31.086,"y":3.926,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.086,"y":4.373,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":33.987,"y":4.373,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":4.911,"w":11.483,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name(s) shown on return ","S":2,"TS":[0,10,0,0]}]},{"x":28.351,"y":4.907,"w":13.449,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Your social security number","S":8,"TS":[0,10,1,0]}]},{"x":2.327,"y":6.572,"w":2.833,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I ","S":-1,"TS":[0,13,0,0]}]},{"x":5.151,"y":6.521,"w":26.508,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Income or Loss From Rental Real Estate and Royalties ","S":9,"TS":[0,12,1,0]}]},{"x":18.199,"y":6.521,"w":3.056,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Note. ","S":-1,"TS":[0,11,1,0]}]},{"x":19.568,"y":6.521,"w":26.264,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you are in the business of renting personal property, use ","S":-1,"TS":[0,11,0,0]}]},{"x":34.762,"y":6.521,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":5.151,"y":7.239,"w":5.724,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule C ","S":-1,"TS":[0,11,1,0]}]},{"x":7.7,"y":7.239,"w":0.907,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or","S":-1,"TS":[0,11,0,0]}]},{"x":8.153,"y":7.239,"w":2.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" C-EZ ","S":-1,"TS":[0,11,1,0]}]},{"x":9.403,"y":7.239,"w":35.876,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions). If you are an individual, report farm rental income or loss from ","S":-1,"TS":[0,11,0,0]}]},{"x":25.716,"y":7.239,"w":5.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 4835 ","S":-1,"TS":[0,11,1,0]}]},{"x":28.168,"y":7.239,"w":8.522,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on page 2, line 40. ","S":-1,"TS":[0,11,0,0]}]},{"x":2.258,"y":7.996,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"x":2.901,"y":8.001,"w":43.772,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you make any payments in 2013 that would require you to file Form(s) 1099? (see instructions)","S":-1,"TS":[0,11.82,0,0]}]},{"x":32.069,"y":8.108,"w":1.685,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"x":34.256,"y":8.108,"w":1.296,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":2.253,"y":8.802,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"x":2.989,"y":8.802,"w":23.744,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If “Yes,” did you or will you file required Forms 1099?","S":3,"TS":[0,12,0,0]}]},{"x":32.069,"y":8.858,"w":1.685,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"x":34.256,"y":8.858,"w":1.296,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":2.583,"y":9.59,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1a","S":9,"TS":[0,12,1,0]}]},{"x":2.708,"y":10.302,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"x":2.703,"y":11.052,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"x":2.692,"y":11.802,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" C ","S":9,"TS":[0,12,1,0]}]},{"x":2.565,"y":12.59,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1b","S":9,"TS":[0,12,1,0]}]},{"x":4.394,"y":12.59,"w":7.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Type of Property ","S":3,"TS":[0,12,0,0]}]},{"x":4.504,"y":13.265,"w":7.073,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(from list below)","S":3,"TS":[0,12,0,0]}]},{"x":2.701,"y":14.053,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"x":2.695,"y":14.803,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"x":2.685,"y":15.553,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" C ","S":9,"TS":[0,12,1,0]}]},{"x":9.788,"y":12.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":9,"TS":[0,12,1,0]}]},{"x":10.701,"y":12.653,"w":18.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"For each rental real estate property listed ","S":-1,"TS":[0,11.64,0,0]}]},{"x":10.701,"y":13.153,"w":19.208,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"above, report the number of fair rental and ","S":-1,"TS":[0,11.64,0,0]}]},{"x":10.701,"y":13.653,"w":13.522,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"personal use days. Check the ","S":-1,"TS":[0,11.64,0,0]}]},{"x":17.503,"y":13.653,"w":2.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"QJV ","S":-1,"TS":[0,11.64,1,0]}]},{"x":18.713,"y":13.653,"w":1.963,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"box ","S":-1,"TS":[0,11.64,0,0]}]},{"x":10.701,"y":14.153,"w":19.227,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"only if you meet the requirements to file as ","S":-1,"TS":[0,11.64,0,0]}]},{"x":10.701,"y":14.654,"w":18.67,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a qualified joint venture. See instructions. ","S":-1,"TS":[0,11.64,0,0]}]},{"x":23.802,"y":12.534,"w":5.724,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Fair Rental ","S":9,"TS":[0,12,1,0]}]},{"x":24.588,"y":13.209,"w":2.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Days","S":9,"TS":[0,12,1,0]}]},{"x":27.974,"y":12.534,"w":6.614,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Personal Use ","S":9,"TS":[0,12,1,0]}]},{"x":29.088,"y":13.209,"w":2.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Days","S":9,"TS":[0,12,1,0]}]},{"x":33.327,"y":12.876,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"QJV","S":9,"TS":[0,12,1,0]}]},{"x":21.912,"y":14.09,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"x":21.907,"y":14.84,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"x":21.896,"y":15.59,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" C ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":16.34,"w":8.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Type of Property:","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":17.09,"w":12.039,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 Single Family Residence","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":17.84,"w":11.577,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 Multi-Family Residence","S":3,"TS":[0,12,0,0]}]},{"x":10.101,"y":17.09,"w":13.576,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 Vacation/Short-Term Rental","S":3,"TS":[0,12,0,0]}]},{"x":10.101,"y":17.84,"w":6.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 Commercial","S":3,"TS":[0,12,0,0]}]},{"x":18.209,"y":17.09,"w":3.354,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 Land","S":3,"TS":[0,12,0,0]}]},{"x":18.209,"y":17.84,"w":5.204,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6 Royalties","S":3,"TS":[0,12,0,0]}]},{"x":23.151,"y":17.09,"w":6.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7 Self-Rental","S":3,"TS":[0,12,0,0]}]},{"x":23.151,"y":17.89,"w":8.261,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8 Other (describe)","S":3,"TS":[0,12,0,0]}]},{"x":2.376,"y":18.496,"w":4.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Income: ","S":9,"TS":[0,12,1,0]}]},{"x":14.878,"y":18.496,"w":5.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Properties:","S":9,"TS":[0,12,1,0]}]},{"x":18.289,"y":18.496,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":22.057,"y":18.496,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A ","S":9,"TS":[0,12,1,0]}]},{"x":27.45,"y":18.496,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B ","S":9,"TS":[0,12,1,0]}]},{"x":32.833,"y":18.501,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"C ","S":9,"TS":[0,12,1,0]}]},{"x":2.089,"y":18.496,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.8890000000000002,"y":18.496,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":18.289,"y":18.496,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":19.639,"y":18.485,"w":0.556,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":23.689,"y":18.485,"w":0.556,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":25.036,"y":18.485,"w":0.556,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":29.086,"y":18.485,"w":0.556,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":30.436,"y":18.485,"w":0.556,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":34.476,"y":18.485,"w":0.556,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":2.744,"y":19.34,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":19.34,"w":6.945,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Rents received ","S":3,"TS":[0,12,0,0]}]},{"x":8.001,"y":19.34,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":18.719,"y":19.34,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3","S":9,"TS":[0,12,1,0]}]},{"x":2.744,"y":20.052,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":20.09,"w":8.166,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Royalties received","S":3,"TS":[0,12,0,0]}]},{"x":8.751,"y":20.09,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":18.719,"y":20.077,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":20.84,"w":5.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Expenses: ","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":20.697,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":20.697,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":18.201,"y":20.697,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":19.551,"y":20.697,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":23.601,"y":20.697,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":24.951,"y":20.697,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":29.001,"y":20.697,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":34.401,"y":20.697,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.588,"y":21.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":21.59,"w":5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Advertising","S":3,"TS":[0,12,0,0]}]},{"x":7.251,"y":21.59,"w":18.662,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"x":18.719,"y":21.59,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":22.339,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":22.339,"w":14.613,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Auto and travel (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":12.501,"y":22.339,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"x":18.719,"y":22.339,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":23.089,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":23.089,"w":11.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cleaning and maintenance","S":3,"TS":[0,12,0,0]}]},{"x":11.001,"y":23.089,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":18.719,"y":23.089,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":23.839,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":23.839,"w":6.076,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Commissions","S":3,"TS":[0,12,0,0]}]},{"x":7.251,"y":23.839,"w":18.662,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"x":18.719,"y":23.839,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8 ","S":9,"TS":[0,12,1,0]}]},{"x":2.588,"y":24.589,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":24.589,"w":4.371,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Insurance","S":3,"TS":[0,12,0,0]}]},{"x":6.501,"y":24.589,"w":19.995,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"x":18.719,"y":24.589,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":25.338,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":25.338,"w":15.131,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Legal and other professional fees ","S":3,"TS":[0,12,0,0]}]},{"x":12.501,"y":25.338,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"x":18.563,"y":25.338,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":26.088,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":26.088,"w":8.021,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Management fees","S":3,"TS":[0,12,0,0]}]},{"x":8.751,"y":26.088,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":18.563,"y":26.088,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":26.838,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":26.838,"w":24.616,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Mortgage interest paid to banks, etc. (see instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":18.563,"y":26.838,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":27.588,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":27.588,"w":6.094,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other interest","S":3,"TS":[0,12,0,0]}]},{"x":7.251,"y":27.588,"w":18.662,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":3,"TS":[0,12,0,0]}]},{"x":18.563,"y":27.588,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":28.338,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":28.338,"w":3.407,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Repairs","S":3,"TS":[0,12,0,0]}]},{"x":5.751,"y":28.338,"w":21.328,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"x":18.563,"y":28.338,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":29.088,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":29.088,"w":3.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Supplies","S":3,"TS":[0,12,0,0]}]},{"x":6.501,"y":29.088,"w":19.995,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"x":18.563,"y":29.088,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":29.838,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":29.838,"w":2.666,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxes","S":3,"TS":[0,12,0,0]}]},{"x":5.751,"y":29.838,"w":21.328,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"x":18.563,"y":29.838,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":30.588,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"17 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":30.588,"w":3.277,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Utilities","S":3,"TS":[0,12,0,0]}]},{"x":5.751,"y":30.588,"w":21.328,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"x":18.563,"y":30.588,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"17 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":31.338,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":31.338,"w":15.613,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Depreciation expense or depletion ","S":-1,"TS":[0,11.73,0,0]}]},{"x":12.5,"y":31.338,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.73,0,0]}]},{"x":13.251,"y":31.338,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.73,0,0]}]},{"x":14.001,"y":31.338,"w":6.875,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11.73,0,0]}]},{"x":18.563,"y":31.338,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"18","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":32.088,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":32.067,"w":5.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other (list) ","S":3,"TS":[0,12,0,0]}]},{"x":6.676,"y":31.973,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2.285,"y":36.072,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"x":3.8099999999999996,"y":36.072,"w":17.727,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total expenses. Add lines 5 through 19 ","S":3,"TS":[0,12,0,0]}]},{"x":14.01,"y":36.072,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":18.572,"y":36.072,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":9,"TS":[0,12,1,0]}]},{"x":2.285,"y":36.978,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"x":3.8099999999999996,"y":36.947,"w":25.022,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 20 from line 3 (rents) and/or 4 (royalties). If ","S":3,"TS":[0,12,0,0]}]},{"x":3.811,"y":37.634,"w":24.783,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"result is a (loss), see instructions to find out if you must ","S":3,"TS":[0,12,0,0]}]},{"x":3.811,"y":38.321,"w":1.555,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"file ","S":3,"TS":[0,12,0,0]}]},{"x":4.561,"y":38.321,"w":5.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 6198 ","S":9,"TS":[0,12,1,0]}]},{"x":8.011,"y":38.321,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":18.572,"y":38.322,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21","S":9,"TS":[0,12,1,0]}]},{"x":2.285,"y":39.197,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"x":3.8099999999999996,"y":39.135,"w":24.707,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Deductible rental real estate loss after limitation, if any, ","S":3,"TS":[0,12,0,0]}]},{"x":3.8099999999999996,"y":39.822,"w":1.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on ","S":3,"TS":[0,12,0,0]}]},{"x":4.477,"y":39.822,"w":5.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 8582 ","S":9,"TS":[0,12,1,0]}]},{"x":7.259,"y":39.822,"w":7.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":12.51,"y":39.822,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"x":18.572,"y":39.822,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22","S":9,"TS":[0,12,1,0]}]},{"x":19.683,"y":39.777,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"x":24.77,"y":39.777,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"x":25.083,"y":39.777,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"x":30.17,"y":39.777,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"x":30.483,"y":39.777,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"x":35.57,"y":39.777,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"x":2.285,"y":40.574,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23a","S":9,"TS":[0,12,1,0]}]},{"x":3.8099999999999996,"y":40.574,"w":27.559,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total of all amounts reported on line 3 for all rental properties ","S":3,"TS":[0,12,0,0]}]},{"x":20.01,"y":40.574,"w":5.332,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"x":23.811,"y":40.574,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23a","S":9,"TS":[0,12,1,0]}]},{"x":2.91,"y":41.324,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":9,"TS":[0,12,1,0]}]},{"x":3.8099999999999996,"y":41.324,"w":27.762,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total of all amounts reported on line 4 for all royalty properties","S":3,"TS":[0,12,0,0]}]},{"x":20.01,"y":41.324,"w":5.332,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"x":23.801,"y":41.324,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23b","S":9,"TS":[0,12,1,0]}]},{"x":2.91,"y":42.074,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c","S":9,"TS":[0,12,1,0]}]},{"x":3.8099999999999996,"y":42.074,"w":25.059,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total of all amounts reported on line 12 for all properties","S":3,"TS":[0,12,0,0]}]},{"x":18.51,"y":42.074,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":23.811,"y":42.074,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23c","S":9,"TS":[0,12,1,0]}]},{"x":2.91,"y":42.824,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d","S":9,"TS":[0,12,1,0]}]},{"x":3.8099999999999996,"y":42.824,"w":25.059,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total of all amounts reported on line 18 for all properties","S":3,"TS":[0,12,0,0]}]},{"x":18.51,"y":42.824,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":23.801,"y":42.824,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23d","S":9,"TS":[0,12,1,0]}]},{"x":2.91,"y":43.574,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"e","S":9,"TS":[0,12,1,0]}]},{"x":3.8099999999999996,"y":43.574,"w":25.059,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total of all amounts reported on line 20 for all properties","S":3,"TS":[0,12,0,0]}]},{"x":18.51,"y":43.574,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":23.811,"y":43.575,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23e","S":9,"TS":[0,12,1,0]}]},{"x":2.285,"y":44.324,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"x":3.8099999999999996,"y":44.324,"w":4.335,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Income. ","S":9,"TS":[0,12,1,0]}]},{"x":5.903,"y":44.324,"w":18.135,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add positive amounts shown on line 21. ","S":3,"TS":[0,12,0,0]}]},{"x":15.041,"y":44.324,"w":3.166,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not","S":9,"TS":[0,12,1,0]}]},{"x":16.646,"y":44.324,"w":8.483,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" include any losses","S":3,"TS":[0,12,0,0]}]},{"x":23.76,"y":44.324,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"x":29.372,"y":44.324,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24","S":9,"TS":[0,12,1,0]}]},{"x":2.285,"y":45.074,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"25 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8099999999999996,"y":45.074,"w":4.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Losses. ","S":-1,"TS":[0,11.46,1,0]}]},{"x":5.668,"y":45.074,"w":42.84,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add royalty losses from line 21 and rental real estate losses from line 22. Enter total losses here ","S":-1,"TS":[0,11.46,0,0]}]},{"x":29.372,"y":45.074,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"25 ","S":9,"TS":[0,12,1,0]}]},{"x":30.42,"y":45.03,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"x":35.57,"y":45.03,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"x":2.285,"y":45.981,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26 ","S":9,"TS":[0,12,1,0]}]},{"x":3.8099999999999996,"y":45.95,"w":24.786,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Total rental real estate and royalty income or (loss). ","S":-1,"TS":[0,11.55,1,0]}]},{"x":16.138,"y":45.95,"w":21.248,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine lines 24 and 25. Enter the result here. ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.811,"y":46.637,"w":45.273,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If Parts II, III, IV, and line 40 on page 2 do not apply to you, also enter this amount on Form 1040, line ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.806,"y":47.324,"w":41.607,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17, or Form 1040NR, line 18. Otherwise, include this amount in the total on line 41 on page 2.","S":-1,"TS":[0,11.55,0,0]}]},{"x":26.641,"y":47.324,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":27.392,"y":47.324,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":28.142,"y":47.324,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":29.372,"y":47.325,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26 ","S":9,"TS":[0,12,1,0]}]},{"x":2.048,"y":48.467,"w":32.342,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see the separate instructions. ","S":-1,"TS":[0,11,1,0]}]},{"x":18.531,"y":48.063,"w":7.318,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11344L","S":2,"TS":[0,10,0,0]}]},{"x":29.793,"y":48.483,"w":14.117,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule E (Form 1040) 2013 ","S":8,"TS":[0,10,1,0]}]},{"x":18.518,"y":33.698,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"19","S":9,"TS":[0,12,1,0]}]},{"x":22.352,"y":48.036,"w":67.6,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"Schedule E page 2","S":-1,"TS":[0,11,0,0]}]},{"x":21.237,"y":9.565,"w":14.166,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":"city","S":3,"TS":[0,12,0,0]}]},{"x":27.604,"y":9.608,"w":22.338,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" state","S":3,"TS":[0,12,0,0]}]},{"x":30.995,"y":9.599,"w":40.5,"clr":0,"sw":0.36196875,"A":"left","R":[{"T":" ZIP Code","S":3,"TS":[0,12,0,0]}]},{"x":8.668,"y":4.272,"w":41.957,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Information about Schedule E and its separate instructions is at www.irs.gov/schedulee.","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"DESC","EN":0},"TI":777,"AM":0,"x":7.843,"y":3.608,"w":5.178,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":778,"AM":0,"TU":"Name(s) shown on return","x":2.25,"y":5.839,"w":26.055,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":779,"AM":0,"TU":"Your social security number","x":28.402,"y":5.831,"w":7.59,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_L1A_1_","EN":0},"TI":784,"AM":0,"x":4.15,"y":10.448,"w":13.152,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_CITY_1_","EN":0},"TI":785,"AM":0,"x":17.568,"y":10.427,"w":7.742,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_ST_1_","EN":0},"TI":786,"AM":0,"TU":"State","x":26.269,"y":10.372,"w":1.447,"h":0.857,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","Alabama","Alaska","American Samoa","Arizona","Arkansas","California","Colorado","Commonwealth N Mariana Islands","Connecticut","Delaware","District of Columbia","Federated States of Micronesia","Florida","Georgia","Guam","Hawaii","Idaho","Illinois","Indiana","Iowa","Kansas","Kentucky","Louisiana","Maine","Marshall Islands","Maryland","Massachusetts","Michigan","Minnesota","Mississippi","Missouri","Montana","Nebraska","Nevada","New Hampshire","New Jersey","New Mexico","New York","North Carolina","North Dakota","Ohio","Oklahoma","Oregon","Palau","Pennsylvania","Puerto Rico","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Vermont","Virgin Islands","Virginia","Washington","West Virginia","Wisconsin","Wyoming","Armed Forces Americas","Armed Forces Europe","Armed Forces Pacific"]},"V":"no entry"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"LINE1A_ZIP_1_","EN":0},"TI":787,"AM":0,"x":29.438,"y":10.454,"w":6.571,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_L1A_2_","EN":0},"TI":788,"AM":0,"x":4.12,"y":11.167,"w":13.152,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_CITY_2_","EN":0},"TI":789,"AM":0,"x":17.538,"y":11.146,"w":7.742,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_ST_2_","EN":0},"TI":790,"AM":0,"TU":"State","x":26.365,"y":11.269,"w":1.248,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","Alabama","Alaska","American Samoa","Arizona","Arkansas","California","Colorado","Commonwealth N Mariana Islands","Connecticut","Delaware","District of Columbia","Federated States of Micronesia","Florida","Georgia","Guam","Hawaii","Idaho","Illinois","Indiana","Iowa","Kansas","Kentucky","Louisiana","Maine","Marshall Islands","Maryland","Massachusetts","Michigan","Minnesota","Mississippi","Missouri","Montana","Nebraska","Nevada","New Hampshire","New Jersey","New Mexico","New York","North Carolina","North Dakota","Ohio","Oklahoma","Oregon","Palau","Pennsylvania","Puerto Rico","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Vermont","Virgin Islands","Virginia","Washington","West Virginia","Wisconsin","Wyoming","Armed Forces Americas","Armed Forces Europe","Armed Forces Pacific"]},"V":"no entry"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"LINE1A_ZIP_2_","EN":0},"TI":791,"AM":0,"x":29.407,"y":11.174,"w":6.571,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_L1A_3_","EN":0},"TI":792,"AM":0,"x":4.12,"y":11.98,"w":13.152,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_CITY_3_","EN":0},"TI":793,"AM":0,"x":17.538,"y":11.959,"w":7.742,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE1A_ST_3_","EN":0},"TI":794,"AM":0,"TU":"State","x":26.272,"y":12.026,"w":1.447,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","Alabama","Alaska","American Samoa","Arizona","Arkansas","California","Colorado","Commonwealth N Mariana Islands","Connecticut","Delaware","District of Columbia","Federated States of Micronesia","Florida","Georgia","Guam","Hawaii","Idaho","Illinois","Indiana","Iowa","Kansas","Kentucky","Louisiana","Maine","Marshall Islands","Maryland","Massachusetts","Michigan","Minnesota","Mississippi","Missouri","Montana","Nebraska","Nevada","New Hampshire","New Jersey","New Mexico","New York","North Carolina","North Dakota","Ohio","Oklahoma","Oregon","Palau","Pennsylvania","Puerto Rico","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Vermont","Virgin Islands","Virginia","Washington","West Virginia","Wisconsin","Wyoming","Armed Forces Americas","Armed Forces Europe","Armed Forces Pacific"]},"V":"no entry"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"LINE1A_ZIP_3_","EN":0},"TI":795,"AM":0,"x":29.407,"y":11.986,"w":6.571,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TYPE_1_","EN":0},"TI":796,"AM":0,"x":4.051,"y":14.152,"w":4.776,"h":0.86,"PL":{"V":[" ","Single Family Residence","Multi-Family Residence","Vacation/Short-Term Rental","Commercial","Land","Royalties","Self-Rental","Other"],"D":["(no entry)","1","2","3","4","5","6","7","Other"]},"V":"(no entry)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB14_FAIRDAY_1_","EN":0},"TI":797,"AM":0,"x":23.293,"y":14.284,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB14_PERSDAY_1_","EN":0},"TI":798,"AM":0,"x":27.832,"y":14.304,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TYPE_2_","EN":0},"TI":800,"AM":0,"x":4.002,"y":15.029,"w":4.878,"h":0.833,"PL":{"V":[" ","Single Family Residence","Multi-Family Residence","Vacation/Short-Term Rental","Commercial","Land","Royalties","Self-Rental","Other"],"D":["(no entry)","1","2","3","4","5","6","7","Other"]},"V":"(no entry)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB14_FAIRDAY_2_","EN":0},"TI":801,"AM":0,"x":23.266,"y":15.019,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB14_PERSDAY_2_","EN":0},"TI":802,"AM":0,"x":27.867,"y":15.019,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"TYPE_3_","EN":0},"TI":804,"AM":0,"x":4.028,"y":15.773,"w":4.981,"h":0.833,"PL":{"V":[" ","Single Family Residence","Multi-Family Residence","Vacation/Short-Term Rental","Commercial","Land","Royalties","Self-Rental","Other"],"D":["(no entry)","1","2","3","4","5","6","7","Other"]},"V":"(no entry)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB14_FAIRDAY_3_","EN":0},"TI":805,"AM":0,"x":23.286,"y":15.802,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"TB14_PERSDAY_3_","EN":0},"TI":806,"AM":0,"x":27.859,"y":15.829,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHER_TYOTH_1_","EN":0},"TI":808,"AM":0,"x":28.323,"y":17.87,"w":5.287,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE3B_L3_1_","EN":0},"TI":809,"AM":0,"x":19.837,"y":19.538,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE3B_L3_2_","EN":0},"TI":810,"AM":0,"x":25.288,"y":19.539,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE3B_L3_3_","EN":0},"TI":811,"AM":0,"x":30.589,"y":19.559,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE4_L4_1_","EN":0},"TI":812,"AM":0,"x":19.885,"y":20.318,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE4_L4_2_","EN":0},"TI":813,"AM":0,"x":25.335,"y":20.319,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE4_L4_3_","EN":0},"TI":814,"AM":0,"x":30.636,"y":20.339,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE5_L5_1_","EN":0},"TI":815,"AM":0,"x":19.905,"y":21.753,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE5_L5_2_","EN":0},"TI":816,"AM":0,"x":25.355,"y":21.754,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE5_L5_3_","EN":0},"TI":817,"AM":0,"x":30.656,"y":21.774,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE6AT_L6AT_1_","EN":0},"TI":818,"AM":0,"x":19.889,"y":22.527,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE6AT_L6AT_2_","EN":0},"TI":819,"AM":0,"x":25.339,"y":22.529,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE6AT_L6AT_3_","EN":0},"TI":820,"AM":0,"x":30.695,"y":22.576,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE7_L7_1_","EN":0},"TI":821,"AM":0,"x":19.903,"y":23.249,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE7_L7_2_","EN":0},"TI":822,"AM":0,"x":25.353,"y":23.25,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE7_L7_3_","EN":0},"TI":823,"AM":0,"x":30.654,"y":23.27,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE8_L8_1_","EN":0},"TI":824,"AM":0,"x":19.863,"y":24.026,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE8_L8_2_","EN":0},"TI":825,"AM":0,"x":25.313,"y":24.027,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE8_L8_3_","EN":0},"TI":826,"AM":0,"x":30.614,"y":24.047,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE9_L9_1_","EN":0},"TI":827,"AM":0,"x":19.828,"y":24.808,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE9_L9_2_","EN":0},"TI":828,"AM":0,"x":25.278,"y":24.809,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE9_L9_3_","EN":0},"TI":829,"AM":0,"x":30.58,"y":24.829,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10_1_","EN":0},"TI":830,"AM":0,"x":19.809,"y":25.523,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10_2_","EN":0},"TI":831,"AM":0,"x":25.259,"y":25.524,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE10_L10_3_","EN":0},"TI":832,"AM":0,"x":30.561,"y":25.544,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11_1_","EN":0},"TI":833,"AM":0,"x":19.856,"y":26.303,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11_2_","EN":0},"TI":834,"AM":0,"x":25.306,"y":26.305,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE11_L11_3_","EN":0},"TI":835,"AM":0,"x":30.608,"y":26.325,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE12_L12_1_","EN":0},"TI":836,"AM":0,"x":19.822,"y":27.004,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE12_L12_2_","EN":0},"TI":837,"AM":0,"x":25.272,"y":27.005,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE12_L12_3_","EN":0},"TI":838,"AM":0,"x":30.573,"y":27.025,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE13_L13_1_","EN":0},"TI":839,"AM":0,"x":19.806,"y":27.778,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE13_L13_2_","EN":0},"TI":840,"AM":0,"x":25.256,"y":27.779,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE13_L13_3_","EN":0},"TI":841,"AM":0,"x":30.612,"y":27.826,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14_1_","EN":0},"TI":842,"AM":0,"x":19.82,"y":28.499,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14_2_","EN":0},"TI":843,"AM":0,"x":25.27,"y":28.5,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE14_L14_3_","EN":0},"TI":844,"AM":0,"x":30.571,"y":28.52,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE15_L15_1_","EN":0},"TI":845,"AM":0,"x":19.78,"y":29.276,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE15_L15_2_","EN":0},"TI":846,"AM":0,"x":25.23,"y":29.277,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE15_L15_3_","EN":0},"TI":847,"AM":0,"x":30.594,"y":29.297,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE16_L16_1_","EN":0},"TI":848,"AM":0,"x":19.816,"y":30.037,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE16_L16_2_","EN":0},"TI":849,"AM":0,"x":25.266,"y":30.038,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE16_L16_3_","EN":0},"TI":850,"AM":0,"x":30.567,"y":30.058,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE17_L17_1_","EN":0},"TI":851,"AM":0,"x":19.8,"y":30.793,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE17_L17_2_","EN":0},"TI":852,"AM":0,"x":25.25,"y":30.795,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE17_L17_3_","EN":0},"TI":853,"AM":0,"x":30.614,"y":30.814,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4562E"}},"id":{"Id":"A6","EN":0},"TI":854,"AM":1024,"x":16.031,"y":31.49,"w":2.295,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE18_L20_1_","EN":0},"TI":855,"AM":0,"x":19.847,"y":31.472,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE18_L20_2_","EN":0},"TI":856,"AM":0,"x":25.242,"y":31.501,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE18_L20_3_","EN":0},"TI":857,"AM":0,"x":30.626,"y":31.548,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18T_1_","EN":0},"TI":858,"AM":0,"x":7.635,"y":32.252,"w":10.463,"h":0.833,"MV":"aaaaaaaaaaaaaaaaaaaa"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18A_1_","EN":0},"TI":859,"AM":0,"x":19.789,"y":32.324,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18B_1_","EN":0},"TI":860,"AM":0,"x":25.185,"y":32.352,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18C_1_","EN":0},"TI":861,"AM":0,"x":30.568,"y":32.399,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18T_2_","EN":0},"TI":862,"AM":0,"x":7.642,"y":33.05,"w":10.462,"h":0.833,"MV":"aaaaaaaaaaaaaaaaaaaa"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18A_2_","EN":0},"TI":863,"AM":0,"x":19.921,"y":33.087,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18B_2_","EN":0},"TI":864,"AM":0,"x":25.317,"y":33.115,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18C_2_","EN":0},"TI":865,"AM":0,"x":30.628,"y":33.126,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18T_3_","EN":0},"TI":866,"AM":0,"x":7.67,"y":33.906,"w":10.462,"h":0.833,"MV":"aaaaaaaaaaaaaaaaaaaa"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18A_3_","EN":0},"TI":867,"AM":0,"x":19.949,"y":33.915,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18B_3_","EN":0},"TI":868,"AM":0,"x":25.345,"y":33.944,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18C_3_","EN":0},"TI":869,"AM":0,"x":30.619,"y":33.892,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18T_4_","EN":0},"TI":870,"AM":0,"x":7.655,"y":34.723,"w":10.462,"h":0.833,"MV":"aaaaaaaaaaaaaaaaaaaa"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18A_4_","EN":0},"TI":871,"AM":0,"x":19.872,"y":34.733,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18B_4_","EN":0},"TI":872,"AM":0,"x":25.313,"y":34.643,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18C_4_","EN":0},"TI":873,"AM":0,"x":30.551,"y":34.653,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18T_5_","EN":0},"TI":874,"AM":0,"x":7.612,"y":35.587,"w":10.463,"h":0.833,"MV":"aaaaaaaaaaaaaaaaaaaa"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18A_5_","EN":0},"TI":875,"AM":0,"x":19.855,"y":35.488,"w":3.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18B_5_","EN":0},"TI":876,"AM":0,"x":25.215,"y":35.47,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEREXP_L18C_5_","EN":0},"TI":877,"AM":0,"x":30.67,"y":35.554,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE20_L19_1_","EN":0},"TI":878,"AM":1024,"x":19.789,"y":36.357,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE20_L19_2_","EN":0},"TI":879,"AM":1024,"x":25.239,"y":36.313,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE20_L19_3_","EN":0},"TI":880,"AM":1024,"x":30.649,"y":36.289,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6198E"}},"id":{"Id":"A4","EN":0},"TI":881,"AM":1024,"x":7.959,"y":38.458,"w":2.295,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE21_L22_1_","EN":0},"TI":882,"AM":0,"x":19.845,"y":38.527,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE21_L22_2_","EN":0},"TI":883,"AM":0,"x":25.252,"y":38.528,"w":3.982,"h":0.833,"MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"LINE21_L22_3_","EN":0},"TI":884,"AM":0,"x":30.706,"y":38.521,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F8582"}},"id":{"Id":"A5","EN":0},"TI":885,"AM":1024,"x":12.143,"y":39.947,"w":2.295,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE22_L23_1_","EN":0},"TI":886,"AM":0,"x":20.066,"y":40.084,"w":3.737,"h":0.833,"MV":"-"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE22_L23_2_","EN":0},"TI":887,"AM":0,"x":25.435,"y":40.085,"w":3.792,"h":0.833,"MV":"-"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE22_L23_3_","EN":0},"TI":888,"AM":0,"x":30.927,"y":40.078,"w":3.656,"h":0.833,"MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"RENT1","EN":0},"TI":889,"AM":1024,"x":25.201,"y":40.82,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ROYAL2","EN":0},"TI":890,"AM":1024,"x":25.201,"y":41.57,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L12T","EN":0},"TI":891,"AM":1024,"x":25.201,"y":42.32,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20T","EN":0},"TI":892,"AM":1024,"x":25.201,"y":43.07,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19T","EN":0},"TI":893,"AM":1024,"x":25.201,"y":43.82,"w":3.982,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":894,"AM":1024,"x":30.615,"y":44.609,"w":3.913,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":895,"AM":0,"x":30.744,"y":45.418,"w":3.75,"h":0.833,"MV":"-"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":896,"AM":1024,"x":30.639,"y":47.436,"w":3.907,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"FSCHE2"}},"id":{"Id":"A1","EN":0},"TI":897,"AM":1024,"x":27.305,"y":48.171,"w":2.295,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099AY","EN":0},"TI":780,"AM":0,"x":31.526,"y":8.242,"w":0.444,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099AN","EN":0},"TI":781,"AM":0,"x":33.781,"y":8.285,"w":0.444,"h":0.833,"checked":false}],"id":{"Id":"A519RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099BY","EN":0},"TI":782,"AM":0,"x":31.573,"y":8.995,"w":0.444,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"F1099BN","EN":0},"TI":783,"AM":0,"x":33.746,"y":8.894,"w":0.512,"h":0.833,"checked":false}],"id":{"Id":"A523RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TB14_QJV_1_","EN":0},"TI":799,"AM":0,"x":33.859,"y":14.214,"w":0.608,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TB14_QJV_2_","EN":0},"TI":803,"AM":0,"x":33.836,"y":14.926,"w":0.608,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"TB14_QJV_3_","EN":0},"TI":807,"AM":0,"x":33.801,"y":15.708,"w":0.608,"h":0.833}]}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHE2.json b/test/data/fd/form/FSCHE2.json index bb845fc9..cd7272b6 100755 --- a/test/data/fd/form/FSCHE2.json +++ b/test/data/fd/form/FSCHE2.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":59.486},{"oc":"#221f1f","x":65.547,"y":3.001,"w":1.5,"l":27.311},{"oc":"#221f1f","x":92.772,"y":3.001,"w":1.5,"l":6.273},{"oc":"#221f1f","x":6.147,"y":4.501,"w":0.75,"l":71.861},{"oc":"#221f1f","x":77.922,"y":4.501,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":4.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":6.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":12.334,"y":6.751,"w":0.75,"l":86.711},{"oc":"#221f1f","x":12.334,"y":9.001,"w":0.75,"l":86.711},{"oc":"#221f1f","x":6.147,"y":9.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":10.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":9.001,"w":0.75,"l":42.161},{"oc":"#221f1f","x":8.622,"y":10.501,"w":0.75,"l":42.161},{"oc":"#221f1f","x":50.697,"y":9.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":50.697,"y":10.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":60.597,"y":9.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":60.597,"y":10.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":70.497,"y":9.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":70.497,"y":10.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":86.584,"y":9.001,"w":0.75,"l":12.36},{"oc":"#221f1f","x":86.584,"y":10.501,"w":0.75,"l":12.36},{"oc":"#221f1f","x":6.147,"y":11.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":11.251,"w":0.75,"l":42.161},{"oc":"#221f1f","x":50.697,"y":11.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":60.597,"y":11.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":65.04,"y":11.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":65.04,"y":10.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":70.497,"y":11.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":86.584,"y":11.251,"w":0.75,"l":12.36},{"oc":"#221f1f","x":92.026,"y":11.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":92.026,"y":10.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.146,"y":12.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":12.001,"w":0.75,"l":42.161},{"oc":"#221f1f","x":50.697,"y":12.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":60.597,"y":12.001,"w":0.75,"l":9.986},{"oc":"#221f1f","x":65.04,"y":11.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":65.04,"y":11.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":70.497,"y":12.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":86.584,"y":12.001,"w":0.75,"l":12.36},{"oc":"#221f1f","x":92.026,"y":11.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":92.026,"y":11.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.146,"y":12.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":12.751,"w":0.75,"l":42.161},{"oc":"#221f1f","x":50.697,"y":12.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":60.597,"y":12.751,"w":0.75,"l":9.986},{"oc":"#221f1f","x":65.04,"y":12.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":65.04,"y":12.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":70.497,"y":12.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":86.584,"y":12.751,"w":0.75,"l":12.36},{"oc":"#221f1f","x":92.026,"y":12.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":92.026,"y":12.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.146,"y":13.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":13.501,"w":0.75,"l":42.161},{"oc":"#221f1f","x":50.697,"y":13.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":60.597,"y":13.501,"w":0.75,"l":9.986},{"oc":"#221f1f","x":65.04,"y":13.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":65.04,"y":12.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":70.497,"y":13.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":86.584,"y":13.501,"w":0.75,"l":12.36},{"oc":"#221f1f","x":92.026,"y":13.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":92.026,"y":12.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.146,"y":14.251,"w":0.75,"l":42.161},{"oc":"#221f1f","x":48.179,"y":14.251,"w":0.75,"l":50.867},{"oc":"#221f1f","x":8.622,"y":15.751,"w":0.75,"l":22.361},{"oc":"#221f1f","x":30.897,"y":15.751,"w":0.75,"l":17.411},{"oc":"#221f1f","x":48.179,"y":15.751,"w":0.75,"l":17.454},{"oc":"#221f1f","x":65.547,"y":15.751,"w":0.75,"l":17.411},{"oc":"#221f1f","x":82.872,"y":15.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":17.327,"y":19.501,"w":0.75,"l":13.613},{"oc":"#221f1f","x":17.327,"y":18.751,"w":0.75,"l":13.613},{"oc":"#221f1f","x":30.897,"y":18.751,"w":0.75,"l":13.698},{"oc":"#221f1f","x":44.509,"y":18.751,"w":0.75,"l":3.799},{"oc":"#221f1f","x":48.179,"y":18.751,"w":0.75,"l":34.779},{"oc":"#221f1f","x":48.179,"y":19.501,"w":0.75,"l":34.779},{"oc":"#221f1f","x":17.284,"y":20.251,"w":0.75,"l":9.986},{"oc":"#221f1f","x":27.184,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":30.897,"y":19.501,"w":0.75,"l":17.454},{"oc":"#221f1f","x":30.897,"y":20.251,"w":0.75,"l":17.454},{"oc":"#221f1f","x":48.222,"y":20.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":61.834,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":20.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":79.159,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":19.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":82.872,"y":20.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.159,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":21.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":21.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":23.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":24.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":25.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":25.501,"w":0.75,"l":70.624},{"oc":"#221f1f","x":79.159,"y":25.501,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.147,"y":26.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":26.251,"w":0.75,"l":70.624},{"oc":"#221f1f","x":79.159,"y":26.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.147,"y":27.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":27.001,"w":0.75,"l":70.624},{"oc":"#221f1f","x":79.159,"y":27.001,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.147,"y":27.751,"w":0.75,"l":53.299},{"oc":"#221f1f","x":59.316,"y":27.751,"w":0.75,"l":39.772},{"oc":"#221f1f","x":6.147,"y":29.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":29.251,"w":0.75,"l":29.786},{"oc":"#221f1f","x":38.322,"y":29.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":59.316,"y":29.251,"w":0.75,"l":19.972},{"oc":"#221f1f","x":79.159,"y":29.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":17.327,"y":31.501,"w":0.75,"l":21.038},{"oc":"#221f1f","x":17.327,"y":30.751,"w":0.75,"l":21.038},{"oc":"#221f1f","x":59.316,"y":30.751,"w":0.75,"l":19.929},{"oc":"#221f1f","x":59.316,"y":31.501,"w":0.75,"l":19.929},{"oc":"#221f1f","x":17.284,"y":32.251,"w":0.75,"l":17.411},{"oc":"#221f1f","x":34.609,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":38.322,"y":31.501,"w":0.75,"l":21.166},{"oc":"#221f1f","x":38.322,"y":32.251,"w":0.75,"l":21.166},{"oc":"#221f1f","x":59.359,"y":32.251,"w":0.75,"l":16.173},{"oc":"#221f1f","x":75.447,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":31.501,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.159,"y":32.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.159,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":33.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":33.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":6.147,"y":35.251,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":36.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":37.501,"w":0.75,"l":21.123},{"oc":"#221f1f","x":27.184,"y":37.501,"w":0.75,"l":17.411},{"oc":"#221f1f","x":44.509,"y":37.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":63.072,"y":37.501,"w":0.75,"l":16.173},{"oc":"#221f1f","x":79.159,"y":37.501,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.147,"y":39.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":39.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.159,"y":40.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":40.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":40.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.402,"y":43.501,"w":0.75,"l":19.8},{"oc":"#221f1f","x":59.402,"y":41.251,"w":0.75,"l":19.8},{"oc":"#221f1f","x":79.159,"y":41.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.159,"y":47.251,"w":0.75,"l":19.886},{"oc":"#221f1f","x":59.402,"y":46.501,"w":0.75,"l":19.8},{"oc":"#221f1f","x":59.402,"y":44.251,"w":0.75,"l":19.8},{"oc":"#221f1f","x":6.147,"y":47.251,"w":1.5,"l":92.899},{"oc":"#221f1f","x":6.147,"y":15.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":16.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":16.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":27.184,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":30.897,"y":16.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":44.509,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.179,"y":16.501,"w":0.75,"l":13.741},{"oc":"#221f1f","x":61.834,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":16.501,"w":0.75,"l":13.698},{"oc":"#221f1f","x":79.159,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":17.251,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":17.251,"w":0.75,"l":18.648},{"oc":"#221f1f","x":27.184,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":30.897,"y":17.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":44.509,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.179,"y":17.251,"w":0.75,"l":13.741},{"oc":"#221f1f","x":61.834,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":17.251,"w":0.75,"l":13.698},{"oc":"#221f1f","x":79.159,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":18.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":18.001,"w":0.75,"l":18.648},{"oc":"#221f1f","x":27.184,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":30.897,"y":18.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":44.509,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":48.179,"y":18.001,"w":0.75,"l":13.741},{"oc":"#221f1f","x":61.834,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":18.001,"w":0.75,"l":13.698},{"oc":"#221f1f","x":79.159,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":18.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":18.751,"w":0.75,"l":18.648},{"oc":"#221f1f","x":82.872,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":30.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":30.001,"w":0.75,"l":26.073},{"oc":"#221f1f","x":34.609,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":38.322,"y":30.001,"w":0.75,"l":17.411},{"oc":"#221f1f","x":55.647,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.316,"y":30.001,"w":0.75,"l":16.259},{"oc":"#221f1f","x":75.447,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":30.001,"w":0.75,"l":16.173},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":30.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.622,"y":30.751,"w":0.75,"l":26.073},{"oc":"#221f1f","x":38.322,"y":30.751,"w":0.75,"l":17.411},{"oc":"#221f1f","x":55.647,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":30.751,"w":0.75,"l":16.173},{"oc":"#221f1f","x":95.247,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":38.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":27.184,"y":38.251,"w":0.75,"l":17.411},{"oc":"#221f1f","x":44.509,"y":38.251,"w":0.75,"l":14.936},{"oc":"#221f1f","x":59.359,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":38.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.202,"y":38.251,"w":0.75,"l":3.713},{"oc":"#221f1f","x":79.202,"y":37.501,"w":0.75,"l":3.713},{"oc":"#221f1f","x":82.872,"y":37.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.872,"y":38.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.247,"y":38.251,"w":0.75,"l":3.798}],"VLines":[{"oc":"#221f1f","x":77.965,"y":2.97,"w":0.75,"l":1.547},{"oc":"#221f1f","x":50.74,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.64,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":70.54,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":86.627,"y":8.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":8.665,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.415,"y":10.626,"w":0.75,"l":0.5},{"oc":"#221f1f","x":65.04,"y":10.626,"w":0.75,"l":0.5},{"oc":"#221f1f","x":70.54,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":10.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":93.401,"y":10.626,"w":0.75,"l":0.5},{"oc":"#221f1f","x":92.026,"y":10.626,"w":0.75,"l":0.5},{"oc":"#221f1f","x":8.665,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.415,"y":11.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":65.04,"y":11.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":70.54,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":93.401,"y":11.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":92.026,"y":11.376,"w":0.75,"l":0.5},{"oc":"#221f1f","x":8.665,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.415,"y":12.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":65.04,"y":12.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":70.54,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":93.401,"y":12.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":92.026,"y":12.126,"w":0.75,"l":0.5},{"oc":"#221f1f","x":8.665,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":50.74,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.64,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":66.415,"y":12.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":65.04,"y":12.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":70.54,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":86.627,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":93.401,"y":12.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":92.026,"y":12.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":48.265,"y":13.485,"w":1.5,"l":0.781},{"oc":"#221f1f","x":30.94,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":48.265,"y":14.235,"w":1.5,"l":1.531},{"oc":"#221f1f","x":65.59,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":14.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":30.94,"y":18.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":17.327,"y":18.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":44.552,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":18.735,"w":1.5,"l":0.781},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":17.327,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":27.227,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":19.485,"w":1.5,"l":0.781},{"oc":"#221f1f","x":30.94,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":20.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":23.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":8.665,"y":25.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":25.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.665,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":26.985,"w":1.5,"l":0.781},{"oc":"#221f1f","x":38.365,"y":27.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":27.735,"w":1.5,"l":1.531},{"oc":"#221f1f","x":79.202,"y":27.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":38.365,"y":30.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":17.327,"y":30.751,"w":0.75,"l":0.75},{"oc":"#221f1f","x":55.69,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":30.735,"w":1.5,"l":0.781},{"oc":"#221f1f","x":79.202,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":17.327,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":34.652,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":31.485,"w":1.5,"l":0.781},{"oc":"#221f1f","x":38.365,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":33.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":27.227,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":44.552,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":35.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":38.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":39.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":39.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":39.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":40.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":41.251,"w":0.75,"l":2.25},{"oc":"#221f1f","x":59.402,"y":41.251,"w":0.75,"l":2.25},{"oc":"#221f1f","x":79.202,"y":41.235,"w":0.75,"l":6.031},{"oc":"#221f1f","x":59.402,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":43.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":44.251,"w":0.75,"l":2.25},{"oc":"#221f1f","x":59.402,"y":44.251,"w":0.75,"l":2.25},{"oc":"#221f1f","x":59.402,"y":46.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":46.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":46.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.665,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":27.227,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":15.735,"w":1.5,"l":0.781},{"oc":"#221f1f","x":61.877,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.665,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":27.227,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":16.485,"w":1.5,"l":0.781},{"oc":"#221f1f","x":61.877,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.665,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":27.227,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":17.235,"w":1.5,"l":0.781},{"oc":"#221f1f","x":61.877,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.665,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":27.227,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":30.94,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":17.985,"w":1.5,"l":0.781},{"oc":"#221f1f","x":61.877,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.665,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":34.652,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.365,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.69,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":29.235,"w":1.5,"l":0.781},{"oc":"#221f1f","x":75.49,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":8.665,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":34.652,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":38.365,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":55.69,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":29.985,"w":1.5,"l":0.781},{"oc":"#221f1f","x":75.49,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":27.227,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":44.552,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":37.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":37.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":79.202,"y":37.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.29,"y":37.485,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":5.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":17.327,"y":18.751,"w":13.613,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":48.265,"y":18.751,"w":34.65,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":30.94,"y":19.501,"w":17.325,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":82.915,"y":19.501,"w":16.088,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":23.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":17.327,"y":30.751,"w":21.038,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":59.402,"y":30.751,"w":19.8,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":38.365,"y":31.501,"w":21.037,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":31.501,"w":19.8,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":35.251,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":39.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":59.402,"y":41.251,"w":19.8,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":41.251,"w":19.8,"h":6,"clr":-1},{"oc":"#bebfc1","x":59.402,"y":44.251,"w":19.8,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":37.501,"w":3.713,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":13.487000000000007,"clr":-1,"A":"left","R":[{"T":"Schedule%20E%20(Form%201040)%202013%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.34,"y":2.01,"w":11.800000000000004,"clr":-1,"A":"left","R":[{"T":"Attachment%20Sequence%20No.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.919,"y":2.01,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":94.7,"y":2.01,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.797,"y":2.01,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":2.661,"w":43.10199999999998,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return.%20Do%20not%20enter%20name%20and%20social%20security%20number%20if%20shown%20on%20other%20side.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.402,"y":2.657,"w":13.368000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.251,"w":4.555999999999999,"clr":-1,"A":"left","R":[{"T":"Caution.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":12.987,"y":4.251,"w":43.60199999999999,"clr":-1,"A":"left","R":[{"T":"The%20IRS%20compares%20amounts%20reported%20on%20your%20tax%20return%20with%20amounts%20shown%20on%20Schedule(s)%20K-1.%20","S":3,"TS":[0,12,0,0]}]},{"x":6.584,"y":5.072,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":5.06,"w":26.395000000000003,"clr":-1,"A":"left","R":[{"T":"Income%20or%20Loss%20From%20Partnerships%20and%20S%20Corporations%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":57.282,"y":5.06,"w":3.89,"clr":-1,"A":"left","R":[{"T":"%20%20%20Note.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":62.02,"y":5.06,"w":20.020000000000007,"clr":-1,"A":"left","R":[{"T":"If%20you%20report%20a%20loss%20from%20an%20at-risk%20activity%20for","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.383,"y":5.06,"w":3.185,"clr":-1,"A":"left","R":[{"T":"which%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.603,"y":5.745,"w":2.0010000000000003,"clr":-1,"A":"left","R":[{"T":"any%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":17.132,"y":5.745,"w":4.6690000000000005,"clr":-1,"A":"left","R":[{"T":"amount%20is%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":22.864,"y":5.745,"w":1.833,"clr":-1,"A":"left","R":[{"T":"not%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":25.386,"y":5.745,"w":5.168000000000001,"clr":-1,"A":"left","R":[{"T":"at%20risk%2C%20you%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":31.804000000000002,"y":5.745,"w":2.666,"clr":-1,"A":"left","R":[{"T":"must%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.954,"y":5.745,"w":11.245,"clr":-1,"A":"left","R":[{"T":"check%20the%20box%20in%20column%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":48.869,"y":5.745,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":50.855,"y":5.745,"w":9.652000000000003,"clr":-1,"A":"left","R":[{"T":"on%20line%2028%20and%20attach%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":62.751,"y":5.745,"w":5.558,"clr":-1,"A":"left","R":[{"T":"Form%206198.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":69.533,"y":5.745,"w":8.020000000000001,"clr":-1,"A":"left","R":[{"T":"%20See%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.694,"y":6.703,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":12.127,"y":6.715,"w":54.00499999999995,"clr":-1,"A":"left","R":[{"T":"Are%20you%20reporting%20any%20loss%20not%20allowed%20in%20a%20prior%20year%20due%20to%20the%20at-risk%2C%20excess%20farm%20loss%2C%20or%20basis%20limitations%2C%20a%20prior%20year","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.136,"y":7.4030000000000005,"w":55.87899999999995,"clr":-1,"A":"left","R":[{"T":"unallowed%20loss%20from%20a%20passive%20activity%20(if%20that%20loss%20was%20not%20reported%20on%20Form%208582)%2C%20or%20unreimbursed%20partnership%20expenses%3F%20If","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.126,"y":8.09,"w":31.02300000000001,"clr":-1,"A":"left","R":[{"T":"you%20answered%20%E2%80%9CYes%2C%E2%80%9D%20see%20instructions%20before%20completing%20this%20section.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.615,"y":7.996,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.04,"y":7.996,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":9.121,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"28%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":26.823,"y":9.107,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":28.895,"y":9.107,"w":2.927,"clr":-1,"A":"left","R":[{"T":"Name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.507,"y":8.732,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":53.624,"y":8.732,"w":2.3520000000000003,"clr":-1,"A":"left","R":[{"T":"Enter","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":56.453,"y":8.732,"w":1.223,"clr":-1,"A":"left","R":[{"T":"%20P%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":57.925,"y":8.732,"w":1.481,"clr":-1,"A":"left","R":[{"T":"for%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.661,"y":9.17,"w":5.631,"clr":-1,"A":"left","R":[{"T":"partnership%3B%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.436,"y":9.17,"w":0.9450000000000001,"clr":-1,"A":"left","R":[{"T":"S%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":51.062,"y":9.607,"w":7.833,"clr":-1,"A":"left","R":[{"T":"for%20S%20corporation%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.098,"y":8.732,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(c)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":64.17,"y":8.732,"w":3.945,"clr":-1,"A":"left","R":[{"T":"Check%20if%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.479,"y":9.17,"w":3.3700000000000006,"clr":-1,"A":"left","R":[{"T":"foreign%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":62.287,"y":9.607,"w":5.353,"clr":-1,"A":"left","R":[{"T":"partnership%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.735,"y":8.763,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(d)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":76.851,"y":8.763,"w":4.5009999999999994,"clr":-1,"A":"left","R":[{"T":"Employer%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":74.902,"y":9.201,"w":5.982000000000001,"clr":-1,"A":"left","R":[{"T":"identification%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.271,"y":9.638,"w":3.706,"clr":-1,"A":"left","R":[{"T":"number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.272,"y":8.763,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(e)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":91.344,"y":8.763,"w":3.667,"clr":-1,"A":"left","R":[{"T":"Check%20if","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.747,"y":9.201,"w":6.540000000000001,"clr":-1,"A":"left","R":[{"T":"any%20amount%20is%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.851,"y":9.638,"w":4.705,"clr":-1,"A":"left","R":[{"T":"not%20at%20risk%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.647,"y":10.34,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.633,"y":11.09,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.604,"y":11.84,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.604,"y":12.59,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":17.85,"y":13.26,"w":12.450000000000005,"clr":-1,"A":"left","R":[{"T":"Passive%20Income%20and%20Loss%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":63.273,"y":13.26,"w":14.338000000000003,"clr":-1,"A":"left","R":[{"T":"Nonpassive%20Income%20and%20Loss%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.103,"y":14.086,"w":1.5550000000000002,"clr":-1,"A":"left","R":[{"T":"(f)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":14.885,"y":14.086,"w":9.239,"clr":-1,"A":"left","R":[{"T":"Passive%20loss%20allowed","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":11.508,"y":14.611,"w":3.056,"clr":-1,"A":"left","R":[{"T":"(attach","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.185,"y":14.611,"w":5.558,"clr":-1,"A":"left","R":[{"T":"%20Form%208582%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":21.871,"y":14.611,"w":4.759,"clr":-1,"A":"left","R":[{"T":"if%20required)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":34.082,"y":14.086,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(g)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":36.199,"y":14.086,"w":7.0009999999999994,"clr":-1,"A":"left","R":[{"T":"Passive%20income","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":34.049,"y":14.611,"w":2.056,"clr":-1,"A":"left","R":[{"T":"from","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":36.522,"y":14.611,"w":7.2799999999999985,"clr":-1,"A":"left","R":[{"T":"%20Schedule%20K%E2%80%A61","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":51.229,"y":14.086,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(h)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":53.324,"y":14.086,"w":7.315,"clr":-1,"A":"left","R":[{"T":"Nonpassive%20loss","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.374,"y":14.611,"w":2.056,"clr":-1,"A":"left","R":[{"T":"from","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":53.847,"y":14.611,"w":7.2799999999999985,"clr":-1,"A":"left","R":[{"T":"%20Schedule%20K%E2%80%A61","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":67.507,"y":14.086,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(i)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":69.199,"y":14.086,"w":9.391000000000002,"clr":-1,"A":"left","R":[{"T":"Section%20179%20expense","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.726,"y":14.611,"w":7.094999999999999,"clr":-1,"A":"left","R":[{"T":"deduction%20from%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.263,"y":14.611,"w":5.002,"clr":-1,"A":"left","R":[{"T":"Form%204562","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":84.558,"y":14.086,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(j)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":86.274,"y":14.086,"w":8.798000000000002,"clr":-1,"A":"left","R":[{"T":"Nonpassive%20income","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.405,"y":14.611,"w":2.334,"clr":-1,"A":"left","R":[{"T":"from%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":88.213,"y":14.611,"w":7.002,"clr":-1,"A":"left","R":[{"T":"Schedule%20K%E2%80%A61","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":6.694,"y":18.59,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"29a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.59,"w":3,"clr":-1,"A":"left","R":[{"T":"Totals%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":19.34,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.34,"w":3,"clr":-1,"A":"left","R":[{"T":"Totals%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":20.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.09,"w":15.152000000000003,"clr":-1,"A":"left","R":[{"T":"Add%20columns%20(g)%20and%20(j)%20of%20line%2029a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":20.09,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":20.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"30%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":20.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.84,"w":16.838000000000005,"clr":-1,"A":"left","R":[{"T":"Add%20columns%20(f)%2C%20(h)%2C%20and%20(i)%20of%20line%2029b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":20.84,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":20.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"31%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":83.105,"y":20.796,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":98.396,"y":20.796,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.694,"y":21.653,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":21.653,"w":25.561,"clr":-1,"A":"left","R":[{"T":"Total%20partnership%20and%20S%20corporation%20income%20or%20(loss).%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.863,"y":21.653,"w":15.988000000000007,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%2030%20and%2031.%20Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":22.34,"w":22.727000000000007,"clr":-1,"A":"left","R":[{"T":"result%20here%20and%20include%20in%20the%20total%20on%20line%2041%20below","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.182,"y":22.34,"w":19.994999999999997,"clr":-1,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":22.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"32%20","S":9,"TS":[0,12,1,0]}]},{"x":6.331,"y":23.072,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":23.072,"w":19.672,"clr":-1,"A":"left","R":[{"T":"Income%20or%20Loss%20From%20Estates%20and%20Trusts%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":24.122,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"33%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":41.054,"y":24.098,"w":1.778,"clr":-1,"A":"left","R":[{"T":"(a)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":43.126,"y":24.098,"w":2.927,"clr":-1,"A":"left","R":[{"T":"Name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.254,"y":23.836,"w":1.833,"clr":-1,"A":"left","R":[{"T":"(b)%20%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":87.37,"y":23.836,"w":4.223,"clr":-1,"A":"left","R":[{"T":"Employer","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.192,"y":24.361,"w":9.688000000000002,"clr":-1,"A":"left","R":[{"T":"identification%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.647,"y":25.34,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.633,"y":26.09,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":23.395,"y":26.746,"w":12.450000000000005,"clr":-1,"A":"left","R":[{"T":"Passive%20Income%20and%20Loss%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":68.125,"y":26.746,"w":14.616000000000003,"clr":-1,"A":"left","R":[{"T":"Nonpassive%20Income%20and%20Loss%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":13.261,"y":27.586,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":14.999,"y":27.586,"w":15.185,"clr":-1,"A":"left","R":[{"T":"Passive%20deduction%20or%20loss%20allowed","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.22,"y":28.111,"w":3.056,"clr":-1,"A":"left","R":[{"T":"(attach","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":18.897,"y":28.111,"w":5.558,"clr":-1,"A":"left","R":[{"T":"%20Form%208582%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":25.583,"y":28.111,"w":4.759,"clr":-1,"A":"left","R":[{"T":"if%20required)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":43.531,"y":27.586,"w":1.481,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":45.313,"y":27.586,"w":7.0009999999999994,"clr":-1,"A":"left","R":[{"T":"Passive%20income","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":43.33,"y":28.111,"w":2.056,"clr":-1,"A":"left","R":[{"T":"from","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":45.804,"y":28.111,"w":7.2799999999999985,"clr":-1,"A":"left","R":[{"T":"%20Schedule%20K%E2%80%A61","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":63.46,"y":27.586,"w":1.4440000000000002,"clr":-1,"A":"left","R":[{"T":"(e)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.197,"y":27.586,"w":7.853000000000001,"clr":-1,"A":"left","R":[{"T":"Deduction%20or%20loss","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.748,"y":28.111,"w":2.334,"clr":-1,"A":"left","R":[{"T":"from%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.556,"y":28.111,"w":7.002,"clr":-1,"A":"left","R":[{"T":"Schedule%20K%E2%80%A61","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":83.08,"y":27.586,"w":1.203,"clr":-1,"A":"left","R":[{"T":"(f)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.528,"y":27.586,"w":8.392000000000001,"clr":-1,"A":"left","R":[{"T":"Other%20income%20from","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.952,"y":28.111,"w":7.002,"clr":-1,"A":"left","R":[{"T":"Schedule%20K%E2%80%A61","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":6.694,"y":30.59,"w":1.9460000000000002,"clr":-1,"A":"left","R":[{"T":"34a%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.59,"w":3,"clr":-1,"A":"left","R":[{"T":"Totals%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":31.340000000000003,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.340000000000003,"w":3,"clr":-1,"A":"left","R":[{"T":"Totals%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.09,"w":15.245000000000006,"clr":-1,"A":"left","R":[{"T":"Add%20columns%20(d)%20and%20(f)%20of%20line%2034a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":32.09,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":32.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"35%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":32.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":15.486000000000004,"clr":-1,"A":"left","R":[{"T":"Add%20columns%20(c)%20and%20(e)%20of%20line%2034b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":32.84,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":32.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"36%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":83.105,"y":32.796,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":98.396,"y":32.858,"w":0.259,"clr":-1,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.694,"y":33.671,"w":1.112,"clr":-1,"A":"left","R":[{"T":"37","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.653,"w":18.671000000000003,"clr":-1,"A":"left","R":[{"T":"Total%20estate%20and%20trust%20income%20or%20(loss).%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":36.895,"y":33.653,"w":22.934,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%2035%20and%2036.%20Enter%20the%20result%20here%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.897,"y":34.34,"w":15.781000000000002,"clr":-1,"A":"left","R":[{"T":"include%20in%20the%20total%20on%20line%2041%20below","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.885,"y":34.34,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":34.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"37%20","S":9,"TS":[0,12,1,0]}]},{"x":6.296,"y":35.072,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":35.072,"w":43.89699999999997,"clr":-1,"A":"left","R":[{"T":"Income%20or%20Loss%20From%20Real%20Estate%20Mortgage%20Investment%20Conduits%20(REMICs)%E2%80%9EResidual%20Holder%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":36.121,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"38%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":15.234,"y":36.138,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(a)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":16.971,"y":36.138,"w":2.649,"clr":-1,"A":"left","R":[{"T":"Name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":28.61,"y":35.92,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(b)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":30.392,"y":35.92,"w":4.223,"clr":-1,"A":"left","R":[{"T":"Employer","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":35.807,"y":35.92,"w":5.982000000000001,"clr":-1,"A":"left","R":[{"T":"identification%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":33.578,"y":36.357,"w":3.706,"clr":-1,"A":"left","R":[{"T":"number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":46.844,"y":35.732,"w":1.5,"clr":-1,"A":"left","R":[{"T":"(c)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":48.581,"y":35.732,"w":10.038,"clr":-1,"A":"left","R":[{"T":"Excess%20inclusion%20from%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":47.878,"y":36.17,"w":6.614000000000001,"clr":-1,"A":"left","R":[{"T":"Schedules%20Q%2C%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":55.789,"y":36.17,"w":2.908,"clr":-1,"A":"left","R":[{"T":"line%202c","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":49.037,"y":36.607,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.188,"y":35.92,"w":1.555,"clr":-1,"A":"left","R":[{"T":"(d)%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":64.97,"y":35.92,"w":11.631,"clr":-1,"A":"left","R":[{"T":"Taxable%20income%20(net%20loss)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":63.766000000000005,"y":36.357,"w":2.056,"clr":-1,"A":"left","R":[{"T":"from","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":66.239,"y":36.357,"w":6.892000000000001,"clr":-1,"A":"left","R":[{"T":"%20Schedules%20Q%2C%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":74.484,"y":36.357,"w":2.964,"clr":-1,"A":"left","R":[{"T":"line%201b","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":84.585,"y":35.92,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(e)","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":85.988,"y":35.92,"w":5.927999999999999,"clr":-1,"A":"left","R":[{"T":"%20Income%20from","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.115,"y":36.357,"w":6.614000000000001,"clr":-1,"A":"left","R":[{"T":"Schedules%20Q%2C%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":91.025,"y":36.357,"w":2.964,"clr":-1,"A":"left","R":[{"T":"line%203b","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.694,"y":38.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.09,"w":42.82599999999998,"clr":-1,"A":"left","R":[{"T":"Combine%20columns%20(d)%20and%20(e)%20only.%20Enter%20the%20result%20here%20and%20include%20in%20the%20total%20on%20line%2041%20below%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":38.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"39%20","S":9,"TS":[0,12,1,0]}]},{"x":6.55,"y":38.822,"w":3.168,"clr":1,"A":"left","R":[{"T":"Part%20V%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.602,"y":38.822,"w":4.835000000000001,"clr":-1,"A":"left","R":[{"T":"Summary%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":6.694,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":39.59,"w":16.595000000000002,"clr":-1,"A":"left","R":[{"T":"Net%20farm%20rental%20income%20or%20(loss)%20from%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.154,"y":39.59,"w":5.002,"clr":-1,"A":"left","R":[{"T":"Form%204835","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":41.202,"y":39.59,"w":13.391000000000005,"clr":-1,"A":"left","R":[{"T":".%20Also%2C%20complete%20line%2042%20below","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.753,"y":39.59,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"40%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":40.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":40.34,"w":11.225000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20income%20or%20(loss).%20%20","S":-1,"TS":[0,9.3,1,0]}]},{"oc":"#221f1f","x":22.42,"y":40.34,"w":49.68799999999995,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%2026%2C%2032%2C%2037%2C%2039%2C%20and%2040.%20Enter%20the%20result%20here%20and%20on%20Form%201040%2C%20line%2017%2C%20or%20Form%201040NR%2C%20line%2018%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":76.737,"y":40.246,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,7.9,0,0]}]},{"oc":"#221f1f","x":79.948,"y":40.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"41%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.694,"y":41.278,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":41.278,"w":21.949,"clr":-1,"A":"left","R":[{"T":"Reconciliation%20of%20farming%20and%20fishing%20income.%20","S":-1,"TS":[0,11.46,1,0]}]},{"oc":"#221f1f","x":39.155,"y":41.278,"w":4.871,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":45.418,"y":41.278,"w":3.001,"clr":-1,"A":"left","R":[{"T":"gross%20","S":-1,"TS":[0,11.46,1,0]}]},{"oc":"#221f1f","x":10.891,"y":41.965,"w":32.54800000000001,"clr":-1,"A":"left","R":[{"T":"farming%20and%20fishing%20income%20reported%20on%20Form%204835%2C%20line%207%3B%20Schedule%20K-1%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":10.885,"y":42.652,"w":32.36300000000001,"clr":-1,"A":"left","R":[{"T":"(Form%201065)%2C%20box%2014%2C%20code%20B%3B%20Schedule%20K-1%20(Form%201120S)%2C%20box%2017%2C%20code%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":10.881,"y":43.34,"w":30.23100000000001,"clr":-1,"A":"left","R":[{"T":"V%3B%20and%20Schedule%20K-1%20(Form%201041)%2C%20box%2014%2C%20code%20F%20(see%20instructions)%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":55.429,"y":43.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":57.491,"y":43.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":60.148,"y":43.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"42%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":44.278,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":10.89,"y":44.278,"w":21.007000000000005,"clr":-1,"A":"left","R":[{"T":"Reconciliation%20for%20real%20estate%20professionals.%20","S":-1,"TS":[0,11.01,1,0]}]},{"oc":"#221f1f","x":37.743,"y":44.278,"w":10.925000000000002,"clr":-1,"A":"left","R":[{"T":"If%20you%20were%20a%20real%20estate%20","S":-1,"TS":[0,11.01,0,0]}]},{"oc":"#221f1f","x":10.892,"y":44.965,"w":33.097,"clr":-1,"A":"left","R":[{"T":"professional%20(see%20instructions)%2C%20enter%20the%20net%20income%20or%20(loss)%20you%20reported%20","S":-1,"TS":[0,11.01,0,0]}]},{"oc":"#221f1f","x":10.895,"y":45.652,"w":34.30199999999999,"clr":-1,"A":"left","R":[{"T":"anywhere%20on%20Form%201040%20or%20Form%201040NR%20from%20all%20rental%20real%20estate%20activities%20","S":-1,"TS":[0,11.01,0,0]}]},{"oc":"#221f1f","x":10.894,"y":46.34,"w":32.449,"clr":-1,"A":"left","R":[{"T":"in%20which%20you%20materially%20participated%20under%20the%20passive%20activity%20loss%20rules%20.","S":-1,"TS":[0,11.01,0,0]}]},{"oc":"#221f1f","x":57.246,"y":46.34,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.01,0,0]}]},{"oc":"#221f1f","x":60.148,"y":46.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"43%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.239,"y":47.126,"w":14.11700000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20E%20(Form%201040)%202013%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":6.647,"y":15.59,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.633,"y":16.34,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.604,"y":17.09,"w":0.722,"clr":-1,"A":"left","R":[{"T":"%20C%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.604,"y":17.84,"w":0.722,"clr":-1,"A":"left","R":[{"T":"D","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.647,"y":29.09,"w":0.722,"clr":-1,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":6.633,"y":29.84,"w":0.722,"clr":-1,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":8536,"AM":1024,"x":6.229,"y":3.568,"w":71.61,"h":0.874,"TU":"Name(s) shown on return. Do not enter name and social security number if shown on other side."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":8537,"AM":1024,"x":78.107,"y":3.642,"w":20.872,"h":0.833,"TU":"Your social security number"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27A_1_","EN":0},"TI":8540,"AM":0,"x":8.766,"y":10.538,"w":41.889,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27B_1_","EN":0},"TI":8541,"AM":0,"x":50.916,"y":10.538,"w":9.714,"h":0.833,"TU":"(b) Enter P for partnership; S for S corporation_A"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE27_L27D_1_","EN":0},"TI":8543,"AM":0,"x":70.641,"y":10.538,"w":15.902,"h":0.833,"TU":"(d) Employer identification number_","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27A_2_","EN":0},"TI":8545,"AM":0,"x":8.663,"y":11.317,"w":41.889,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27B_2_","EN":0},"TI":8546,"AM":0,"x":50.813,"y":11.317,"w":9.714,"h":0.833,"TU":"(b) Enter P for partnership; S for S corporation_A"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE27_L27D_2_","EN":0},"TI":8548,"AM":0,"x":70.538,"y":11.317,"w":15.902,"h":0.833,"TU":"(d) Employer identification number_","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27A_3_","EN":0},"TI":8550,"AM":0,"x":8.643,"y":12.045,"w":41.889,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27B_3_","EN":0},"TI":8551,"AM":0,"x":50.793,"y":12.045,"w":9.714,"h":0.833,"TU":"(b) Enter P for partnership; S for S corporation_A"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE27_L27D_3_","EN":0},"TI":8553,"AM":0,"x":70.518,"y":12.045,"w":15.902,"h":0.833,"TU":"(d) Employer identification number_","MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27A_4_","EN":0},"TI":8555,"AM":0,"x":8.623,"y":12.745,"w":41.889,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27B_4_","EN":0},"TI":8556,"AM":0,"x":50.773,"y":12.745,"w":9.714,"h":0.833,"TU":"(b) Enter P for partnership; S for S corporation_A"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE27_L27D_4_","EN":0},"TI":8558,"AM":0,"x":70.498,"y":12.745,"w":15.902,"h":0.833,"TU":"(d) Employer identification number_","MV":"99-9999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27G_1_","EN":0},"TI":8560,"AM":0,"x":8.61,"y":15.817,"w":18.22,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27H_1_","EN":0},"TI":8561,"AM":0,"x":31.019,"y":15.838,"w":13.353,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27I_1_","EN":0},"TI":8562,"AM":0,"x":48.518,"y":15.858,"w":13.428,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27J_1_","EN":0},"TI":8563,"AM":0,"x":65.717,"y":15.823,"w":13.278,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27K_1_","EN":0},"TI":8564,"AM":0,"x":83.066,"y":15.843,"w":12.006,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27G_2_","EN":0},"TI":8565,"AM":0,"x":8.652,"y":16.553,"w":18.22,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27H_2_","EN":0},"TI":8566,"AM":0,"x":31.061,"y":16.573,"w":13.353,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27I_2_","EN":0},"TI":8567,"AM":0,"x":48.56,"y":16.593,"w":13.428,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27J_2_","EN":0},"TI":8568,"AM":0,"x":65.759,"y":16.558,"w":13.278,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27K_2_","EN":0},"TI":8569,"AM":0,"x":83.108,"y":16.578,"w":12.006,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27G_3_","EN":0},"TI":8570,"AM":0,"x":8.707,"y":17.28,"w":18.22,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27H_3_","EN":0},"TI":8571,"AM":0,"x":31.116,"y":17.301,"w":13.353,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27I_3_","EN":0},"TI":8572,"AM":0,"x":48.615,"y":17.321,"w":13.428,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27J_3_","EN":0},"TI":8573,"AM":0,"x":65.814,"y":17.286,"w":13.278,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27K_3_","EN":0},"TI":8574,"AM":0,"x":83.163,"y":17.306,"w":12.006,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27G_4_","EN":0},"TI":8575,"AM":0,"x":8.612,"y":18.063,"w":18.22,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27H_4_","EN":0},"TI":8576,"AM":0,"x":31.021,"y":18.083,"w":13.353,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27I_4_","EN":0},"TI":8577,"AM":0,"x":48.52,"y":18.103,"w":13.428,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27J_4_","EN":0},"TI":8578,"AM":0,"x":65.719,"y":18.068,"w":13.278,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27K_4_","EN":0},"TI":8579,"AM":0,"x":83.068,"y":18.088,"w":12.006,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28AH","EN":0},"TI":8580,"AM":1024,"x":31.041,"y":18.788,"w":13.427,"h":0.833,"TU":"_29a Totals b Totals"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28AK","EN":0},"TI":8581,"AM":1024,"x":83.016,"y":18.788,"w":12.189,"h":0.833,"TU":"_29a Totals b Totals"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28BG","EN":0},"TI":8582,"AM":1024,"x":17.428,"y":19.538,"w":9.714,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28BI","EN":0},"TI":8583,"AM":1024,"x":48.403,"y":19.546,"w":13.428,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28BJ","EN":0},"TI":8584,"AM":1024,"x":65.746,"y":19.564,"w":13.428,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":8585,"AM":1024,"x":83.016,"y":20.288,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":8586,"AM":1024,"x":83.78,"y":21.058,"w":11.332,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":8587,"AM":1024,"x":83.098,"y":22.369,"w":12.024,"h":0.858},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ESTATE_L32A_1_","EN":0},"TI":8588,"AM":0,"x":8.766,"y":25.538,"w":70.352,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ESTATE_L32B_1_","EN":0},"TI":8589,"AM":0,"x":79.303,"y":25.538,"w":19.718,"h":0.833,"TU":"(b) Employer identification number_A"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ESTATE_L32A_2_","EN":0},"TI":8590,"AM":0,"x":8.777,"y":26.29,"w":70.352,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ESTATE_L32B_2_","EN":0},"TI":8591,"AM":0,"x":79.314,"y":26.29,"w":19.717,"h":0.833,"TU":"(b) Employer identification number_A"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32C_1_","EN":0},"TI":8592,"AM":0,"x":8.766,"y":29.288,"w":25.802,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32D_1_","EN":0},"TI":8593,"AM":0,"x":38.308,"y":29.285,"w":17.342,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32E_1_","EN":0},"TI":8594,"AM":0,"x":59.625,"y":29.278,"w":15.77,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32F_1_","EN":0},"TI":8595,"AM":0,"x":79.295,"y":29.243,"w":15.844,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32C_2_","EN":0},"TI":8596,"AM":0,"x":8.577,"y":29.972,"w":25.802,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32D_2_","EN":0},"TI":8597,"AM":0,"x":38.239,"y":30.013,"w":17.342,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32E_2_","EN":0},"TI":8598,"AM":0,"x":59.556,"y":30.005,"w":15.77,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32F_2_","EN":0},"TI":8599,"AM":0,"x":79.226,"y":29.971,"w":15.844,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33AD","EN":0},"TI":8600,"AM":1024,"x":38.466,"y":30.788,"w":17.139,"h":0.833,"TU":"(d) Passive income from Schedule K–1_34a Totals b Totals"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33AF","EN":0},"TI":8601,"AM":1024,"x":79.303,"y":30.788,"w":15.902,"h":0.833,"TU":"(f) Other income from Schedule K–1_34a Totals b Totals"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33BC","EN":0},"TI":8602,"AM":1024,"x":17.428,"y":31.538,"w":17.139,"h":0.833,"TU":"Totals"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33BE","EN":0},"TI":8603,"AM":1024,"x":59.669,"y":31.553,"w":15.599,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":8604,"AM":1024,"x":83.014,"y":32.309,"w":12.081,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":8605,"AM":1024,"x":83.764,"y":32.995,"w":11.291,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":8606,"AM":1024,"x":83.098,"y":34.498,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L37_L37A_1_","EN":0},"TI":8607,"AM":0,"x":6.188,"y":37.538,"w":20.955,"h":0.833,"TU":"38 (a) Name_Row_1"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L37_L37B_1_","EN":0},"TI":8608,"AM":0,"x":27.328,"y":37.538,"w":17.139,"h":0.833,"TU":"(b) Employer identification number_Row_1","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37_L37C_1_","EN":0},"TI":8609,"AM":0,"x":44.653,"y":37.538,"w":14.664,"h":0.833,"TU":"(c) Excess inclusion from Schedules Q, line 2c (see instructions)_Row_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37_L37D_1_","EN":0},"TI":8610,"AM":0,"x":63.216,"y":37.538,"w":12.189,"h":0.833,"TU":"(d) Taxable income (net loss) from Schedules Q, line 1b_Row_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37_L37E_1_","EN":0},"TI":8611,"AM":0,"x":83.016,"y":37.538,"w":12.189,"h":0.833,"TU":"(e) Income from Schedules Q, line 3b_Row_1"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":8612,"AM":1024,"x":83.016,"y":38.288,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":8613,"AM":0,"x":83.016,"y":39.788,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":8614,"AM":1024,"x":83.016,"y":40.545,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":8615,"AM":0,"x":63.236,"y":43.538,"w":12.148,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":8616,"AM":0,"x":63.216,"y":46.538,"w":12.189,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NALOSSY","EN":0},"TI":8538,"AM":0,"x":85.135,"y":8.008,"w":1.585,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NALOSSN","EN":0},"TI":8539,"AM":0,"x":92.861,"y":8.256,"w":1.447,"h":0.833,"checked":false}],"id":{"Id":"NALOSSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27CX_1_","EN":0},"TI":8542,"AM":0,"x":65.06,"y":10.465,"w":1.596,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27EX_1_","EN":0},"TI":8544,"AM":0,"x":91.962,"y":10.488,"w":1.597,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27CX_2_","EN":0},"TI":8547,"AM":0,"x":64.957,"y":11.245,"w":1.596,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27EX_2_","EN":0},"TI":8549,"AM":0,"x":91.86,"y":11.268,"w":1.596,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27CX_3_","EN":0},"TI":8552,"AM":0,"x":64.937,"y":11.972,"w":1.596,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27EX_3_","EN":0},"TI":8554,"AM":0,"x":91.84,"y":11.995,"w":1.596,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27CX_4_","EN":0},"TI":8557,"AM":0,"x":64.917,"y":12.673,"w":1.597,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27EX_4_","EN":0},"TI":8559,"AM":0,"x":91.819,"y":12.696,"w":1.596,"h":0.833}]}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Supplemental Income and Loss","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131127122541-08'00'","ModDate":"D:20131227170918-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":3.001,"w":1.5,"l":21.631,"oc":"#221f1f"},{"x":23.835,"y":3.001,"w":1.5,"l":9.931,"oc":"#221f1f"},{"x":33.735,"y":3.001,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":4.501,"w":0.75,"l":26.131,"oc":"#221f1f"},{"x":28.335,"y":4.501,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":2.235,"y":4.501,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":5.251,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":6.751,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":4.485,"y":6.751,"w":0.75,"l":31.531,"oc":"#221f1f"},{"x":4.485,"y":9.001,"w":0.75,"l":31.531,"oc":"#221f1f"},{"x":2.235,"y":9.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":2.235,"y":10.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":9.001,"w":0.75,"l":15.331,"oc":"#221f1f"},{"x":3.135,"y":10.501,"w":0.75,"l":15.331,"oc":"#221f1f"},{"x":18.435,"y":9.001,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":18.435,"y":10.501,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":22.035,"y":9.001,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":22.035,"y":10.501,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":25.635,"y":9.001,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":25.635,"y":10.501,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":31.485,"y":9.001,"w":0.75,"l":4.494,"oc":"#221f1f"},{"x":31.485,"y":10.501,"w":0.75,"l":4.494,"oc":"#221f1f"},{"x":2.235,"y":11.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":11.251,"w":0.75,"l":15.331,"oc":"#221f1f"},{"x":18.435,"y":11.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":22.035,"y":11.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":23.651,"y":11.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":23.651,"y":10.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":25.635,"y":11.251,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":31.485,"y":11.251,"w":0.75,"l":4.494,"oc":"#221f1f"},{"x":33.464,"y":11.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.464,"y":10.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":2.235,"y":12.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":12.001,"w":0.75,"l":15.331,"oc":"#221f1f"},{"x":18.435,"y":12.001,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":22.035,"y":12.001,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":23.651,"y":11.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":23.651,"y":11.376,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":25.635,"y":12.001,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":31.485,"y":12.001,"w":0.75,"l":4.494,"oc":"#221f1f"},{"x":33.464,"y":11.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.464,"y":11.376,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":2.235,"y":12.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":12.751,"w":0.75,"l":15.331,"oc":"#221f1f"},{"x":18.435,"y":12.751,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":22.035,"y":12.751,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":23.651,"y":12.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":23.651,"y":12.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":25.635,"y":12.751,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":31.485,"y":12.751,"w":0.75,"l":4.494,"oc":"#221f1f"},{"x":33.464,"y":12.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.464,"y":12.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":2.235,"y":13.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":13.501,"w":0.75,"l":15.331,"oc":"#221f1f"},{"x":18.435,"y":13.501,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":22.035,"y":13.501,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":23.651,"y":13.376,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":23.651,"y":12.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":25.635,"y":13.501,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":31.485,"y":13.501,"w":0.75,"l":4.494,"oc":"#221f1f"},{"x":33.464,"y":13.376,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.464,"y":12.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":2.235,"y":14.251,"w":0.75,"l":15.331,"oc":"#221f1f"},{"x":17.52,"y":14.251,"w":0.75,"l":18.497,"oc":"#221f1f"},{"x":3.135,"y":15.751,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":11.235,"y":15.751,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":17.52,"y":15.751,"w":0.75,"l":6.347,"oc":"#221f1f"},{"x":23.835,"y":15.751,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":30.135,"y":15.751,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":6.301,"y":19.501,"w":0.75,"l":4.95,"oc":"#221f1f"},{"x":6.301,"y":18.751,"w":0.75,"l":4.95,"oc":"#221f1f"},{"x":11.235,"y":18.751,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":16.185,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":17.52,"y":18.751,"w":0.75,"l":12.647,"oc":"#221f1f"},{"x":17.52,"y":19.501,"w":0.75,"l":12.647,"oc":"#221f1f"},{"x":6.285,"y":20.251,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":9.885,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.235,"y":19.501,"w":0.75,"l":6.347,"oc":"#221f1f"},{"x":11.235,"y":20.251,"w":0.75,"l":6.347,"oc":"#221f1f"},{"x":17.535,"y":20.251,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":22.485,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.835,"y":20.251,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":28.785,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":19.501,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":30.135,"y":20.251,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":28.785,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":21.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":21.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":21.751,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":21.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":23.251,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":24.001,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":25.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":25.501,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":28.785,"y":25.501,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":2.235,"y":26.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":26.251,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":28.785,"y":26.251,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":2.235,"y":27.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":27.001,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":28.785,"y":27.001,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":2.235,"y":27.751,"w":0.75,"l":19.381,"oc":"#221f1f"},{"x":21.57,"y":27.751,"w":0.75,"l":14.463,"oc":"#221f1f"},{"x":2.235,"y":29.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":29.251,"w":0.75,"l":10.831,"oc":"#221f1f"},{"x":13.935,"y":29.251,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":21.57,"y":29.251,"w":0.75,"l":7.262,"oc":"#221f1f"},{"x":28.785,"y":29.251,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":6.301,"y":31.501,"w":0.75,"l":7.65,"oc":"#221f1f"},{"x":6.301,"y":30.751,"w":0.75,"l":7.65,"oc":"#221f1f"},{"x":21.57,"y":30.751,"w":0.75,"l":7.247,"oc":"#221f1f"},{"x":21.57,"y":31.501,"w":0.75,"l":7.247,"oc":"#221f1f"},{"x":6.285,"y":32.251,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":12.585,"y":32.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.935,"y":31.501,"w":0.75,"l":7.697,"oc":"#221f1f"},{"x":13.935,"y":32.251,"w":0.75,"l":7.697,"oc":"#221f1f"},{"x":21.585,"y":32.251,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":27.435,"y":32.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":31.501,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":32.251,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":33.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":33.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":33.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":33.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":33.751,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":33.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":35.251,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":36.001,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":37.501,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":9.885,"y":37.501,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":16.185,"y":37.501,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":22.935,"y":37.501,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":28.785,"y":37.501,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":2.235,"y":39.001,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":39.751,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":28.785,"y":40.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":40.501,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":40.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":21.601,"y":43.501,"w":0.75,"l":7.2,"oc":"#221f1f"},{"x":21.601,"y":41.251,"w":0.75,"l":7.2,"oc":"#221f1f"},{"x":28.785,"y":41.251,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":47.251,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":21.601,"y":46.501,"w":0.75,"l":7.2,"oc":"#221f1f"},{"x":21.601,"y":44.251,"w":0.75,"l":7.2,"oc":"#221f1f"},{"x":2.235,"y":47.251,"w":1.5,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":15.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":2.235,"y":16.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":16.501,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":9.885,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.235,"y":16.501,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":16.185,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":17.52,"y":16.501,"w":0.75,"l":4.997,"oc":"#221f1f"},{"x":22.485,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.835,"y":16.501,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":28.785,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":16.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":17.251,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":17.251,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":9.885,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.235,"y":17.251,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":16.185,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":17.52,"y":17.251,"w":0.75,"l":4.997,"oc":"#221f1f"},{"x":22.485,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.835,"y":17.251,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":28.785,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":18.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":18.001,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":9.885,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.235,"y":18.001,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":16.185,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":17.52,"y":18.001,"w":0.75,"l":4.997,"oc":"#221f1f"},{"x":22.485,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.835,"y":18.001,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":28.785,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":18.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":18.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":18.751,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":30.135,"y":18.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":30.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":30.001,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":12.585,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.935,"y":30.001,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":20.235,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.57,"y":30.001,"w":0.75,"l":5.912,"oc":"#221f1f"},{"x":27.435,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":30.001,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.635,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":30.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":30.751,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":13.935,"y":30.751,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":20.235,"y":30.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":30.751,"w":0.75,"l":5.881,"oc":"#221f1f"},{"x":34.635,"y":30.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":38.251,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":9.885,"y":38.251,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":16.185,"y":38.251,"w":0.75,"l":5.431,"oc":"#221f1f"},{"x":21.585,"y":38.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":38.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":38.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.801,"y":38.251,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":28.801,"y":37.501,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":30.135,"y":37.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.135,"y":38.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":37.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.635,"y":38.251,"w":0.75,"l":1.381,"oc":"#221f1f"}],"VLines":[{"x":28.351,"y":2.97,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":18.451,"y":8.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.051,"y":8.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":25.651,"y":8.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.501,"y":8.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":3.151,"y":10.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":10.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.051,"y":10.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.151,"y":10.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":23.651,"y":10.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":25.651,"y":10.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":10.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":33.964,"y":10.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.464,"y":10.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":3.151,"y":11.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":11.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.051,"y":11.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.151,"y":11.376,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":23.651,"y":11.376,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":25.651,"y":11.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":11.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":33.964,"y":11.376,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.464,"y":11.376,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":3.151,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.051,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.151,"y":12.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":23.651,"y":12.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":25.651,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":33.964,"y":12.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.464,"y":12.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":3.151,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.451,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.051,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":24.151,"y":12.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":23.651,"y":12.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":25.651,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.501,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":33.964,"y":12.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":33.464,"y":12.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":17.551,"y":13.485,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":11.251,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":17.551,"y":14.235,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":23.851,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":14.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":11.251,"y":18.751,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":6.301,"y":18.751,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":16.201,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":18.735,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":6.301,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":9.901,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":19.485,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":11.251,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":20.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.801,"y":20.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":20.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":21.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":21.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":23.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":3.151,"y":25.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":25.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":3.151,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":26.985,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":13.951,"y":27.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":27.735,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":27.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":13.951,"y":30.751,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":6.301,"y":30.751,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":20.251,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":30.735,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":6.301,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.601,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":31.485,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":13.951,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":32.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.801,"y":32.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":32.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":33.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":33.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":34.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":9.901,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":16.201,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.951,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":35.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":38.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":38.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":38.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":39.736,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":39.736,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":39.736,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.801,"y":40.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":40.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":40.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":41.251,"w":0.75,"l":2.25,"oc":"#221f1f"},{"x":21.601,"y":41.251,"w":0.75,"l":2.25,"oc":"#221f1f"},{"x":28.801,"y":41.235,"w":0.75,"l":6.031,"oc":"#221f1f"},{"x":21.601,"y":43.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":43.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":43.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":44.251,"w":0.75,"l":2.25,"oc":"#221f1f"},{"x":21.601,"y":44.251,"w":0.75,"l":2.25,"oc":"#221f1f"},{"x":21.601,"y":46.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":46.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":46.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":3.151,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":9.901,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.251,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.201,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":15.735,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":3.151,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":9.901,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.251,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.201,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":16.485,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":3.151,"y":17.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":9.901,"y":17.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.251,"y":17.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.201,"y":17.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":17.235,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":17.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":17.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":17.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":17.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":17.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":3.151,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":9.901,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.251,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.201,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":17.985,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":3.151,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.601,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.951,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":20.251,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":29.235,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":3.151,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":12.601,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.951,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":20.251,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":29.985,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":9.901,"y":37.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":16.201,"y":37.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":37.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":37.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":37.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":37.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":28.801,"y":37.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.651,"y":37.485,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":5.251,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":6.301,"y":18.751,"w":4.95,"h":0.75,"oc":"#bebfc1"},{"x":17.551,"y":18.751,"w":12.6,"h":0.75,"oc":"#bebfc1"},{"x":11.251,"y":19.501,"w":6.3,"h":0.75,"oc":"#bebfc1"},{"x":30.151,"y":19.501,"w":5.85,"h":0.75,"oc":"#bebfc1"},{"x":2.251,"y":23.251,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":6.301,"y":30.751,"w":7.65,"h":0.75,"oc":"#bebfc1"},{"x":21.601,"y":30.751,"w":7.2,"h":0.75,"oc":"#bebfc1"},{"x":13.951,"y":31.501,"w":7.65,"h":0.75,"oc":"#bebfc1"},{"x":28.801,"y":31.501,"w":7.2,"h":0.75,"oc":"#bebfc1"},{"x":2.251,"y":35.251,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.251,"y":39.001,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":21.601,"y":41.251,"w":7.2,"h":2.25,"oc":"#bebfc1"},{"x":28.801,"y":41.251,"w":7.2,"h":6,"oc":"#bebfc1"},{"x":21.601,"y":44.251,"w":7.2,"h":2.25,"oc":"#bebfc1"}],"Texts":[{"x":2.001,"y":1.9729999999999999,"w":13.487,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule E (Form 1040) 2013 ","S":2,"TS":[0,10,0,0]}]},{"x":23.601,"y":2.01,"w":11.8,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment Sequence No.","S":2,"TS":[0,10,0,0]}]},{"x":28.763,"y":2.01,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":28.902,"y":2.01,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13 ","S":10,"TS":[0,14,1,0]}]},{"x":34.277,"y":2.01,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":2.01,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":2.661,"w":43.102,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name(s) shown on return. Do not enter name and social security number if shown on other side. ","S":2,"TS":[0,10,0,0]}]},{"x":28.351,"y":2.657,"w":13.368,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your social security number","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":4.251,"w":4.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Caution. ","S":9,"TS":[0,12,1,0]}]},{"x":4.564,"y":4.251,"w":43.602,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"The IRS compares amounts reported on your tax return with amounts shown on Schedule(s) K-1. ","S":3,"TS":[0,12,0,0]}]},{"x":2.235,"y":5.072,"w":3.128,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II ","S":-1,"TS":[0,13,0,0]}]},{"x":5.151,"y":5.06,"w":26.395,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Income or Loss From Partnerships and S Corporations ","S":10,"TS":[0,14,1,0]}]},{"x":20.671,"y":5.06,"w":3.89,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Note. ","S":-1,"TS":[0,11,1,0]}]},{"x":22.394,"y":5.06,"w":20.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you report a loss from an at-risk activity for","S":-1,"TS":[0,11,0,0]}]},{"x":33.591,"y":5.06,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":31.979999999999997,"y":5.06,"w":3.185,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"which ","S":-1,"TS":[0,11,0,0]}]},{"x":5.151,"y":5.745,"w":2.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"any ","S":-1,"TS":[0,11,1,0]}]},{"x":6.071,"y":5.745,"w":4.669,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"amount is ","S":-1,"TS":[0,11,0,0]}]},{"x":8.155,"y":5.745,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"not ","S":-1,"TS":[0,11,1,0]}]},{"x":9.072,"y":5.745,"w":5.168,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"at risk, you ","S":-1,"TS":[0,11,0,0]}]},{"x":11.406,"y":5.745,"w":2.666,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"must ","S":-1,"TS":[0,11,0,0]}]},{"x":12.552,"y":5.745,"w":11.245,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"check the box in column ","S":-1,"TS":[0,11,0,0]}]},{"x":17.612,"y":5.745,"w":1.444,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(e) ","S":-1,"TS":[0,11,0,0]}]},{"x":18.334,"y":5.745,"w":9.652,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on line 28 and attach ","S":-1,"TS":[0,11,0,0]}]},{"x":22.66,"y":5.745,"w":5.558,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 6198. ","S":-1,"TS":[0,11,1,0]}]},{"x":25.126,"y":5.745,"w":8.02,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" See instructions. ","S":-1,"TS":[0,11,0,0]}]},{"x":2.275,"y":6.703,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27 ","S":9,"TS":[0,12,1,0]}]},{"x":4.251,"y":6.715,"w":54.005,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Are you reporting any loss not allowed in a prior year due to the at-risk, excess farm loss, or basis limitations, a prior year","S":3,"TS":[0,12,0,0]}]},{"x":35.754,"y":6.715,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":4.254,"y":7.4030000000000005,"w":55.879,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"unallowed loss from a passive activity (if that loss was not reported on Form 8582), or unreimbursed partnership expenses? If","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":8.09,"w":31.023,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you answered “Yes,” see instructions before completing this section. ","S":3,"TS":[0,12,0,0]}]},{"x":31.701,"y":7.996,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":3,"TS":[0,12,0,0]}]},{"x":34.401,"y":7.996,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":9.121,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28 ","S":9,"TS":[0,12,1,0]}]},{"x":9.595,"y":9.107,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(a) ","S":8,"TS":[0,10,1,0]}]},{"x":10.348,"y":9.107,"w":2.927,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name ","S":2,"TS":[0,10,0,0]}]},{"x":18.571,"y":8.732,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(b) ","S":8,"TS":[0,10,1,0]}]},{"x":19.34,"y":8.732,"w":2.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter","S":2,"TS":[0,10,0,0]}]},{"x":20.369,"y":8.732,"w":1.223,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" P ","S":8,"TS":[0,10,1,0]}]},{"x":20.904,"y":8.732,"w":1.481,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"for ","S":2,"TS":[0,10,0,0]}]},{"x":21.552,"y":8.732,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":18.627,"y":9.17,"w":5.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"partnership; ","S":2,"TS":[0,10,0,0]}]},{"x":21.09,"y":9.17,"w":0.945,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"S ","S":8,"TS":[0,10,1,0]}]},{"x":18.287,"y":9.607,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":18.409,"y":9.607,"w":7.833,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"for S corporation ","S":2,"TS":[0,10,0,0]}]},{"x":22.422,"y":8.732,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(c) ","S":8,"TS":[0,10,1,0]}]},{"x":23.175,"y":8.732,"w":3.945,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check if ","S":2,"TS":[0,10,0,0]}]},{"x":24.901,"y":8.732,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":22.924,"y":9.17,"w":3.37,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"foreign ","S":2,"TS":[0,10,0,0]}]},{"x":24.399,"y":9.17,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":22.491,"y":9.607,"w":5.353,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"partnership ","S":2,"TS":[0,10,0,0]}]},{"x":27.017,"y":8.763,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(d) ","S":8,"TS":[0,10,1,0]}]},{"x":27.787,"y":8.763,"w":4.501,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Employer ","S":2,"TS":[0,10,0,0]}]},{"x":29.756,"y":8.763,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":27.078,"y":9.201,"w":5.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"identification ","S":2,"TS":[0,10,0,0]}]},{"x":27.576,"y":9.638,"w":3.706,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"number ","S":2,"TS":[0,10,0,0]}]},{"x":32.304,"y":8.763,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(e) ","S":8,"TS":[0,10,1,0]}]},{"x":33.057,"y":8.763,"w":3.667,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check if","S":2,"TS":[0,10,0,0]}]},{"x":34.661,"y":8.763,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":32.112,"y":9.201,"w":6.54,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"any amount is ","S":2,"TS":[0,10,0,0]}]},{"x":32.514,"y":9.638,"w":4.705,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"not at risk ","S":2,"TS":[0,10,0,0]}]},{"x":2.258,"y":10.34,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"x":2.253,"y":11.09,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"x":2.242,"y":11.84,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" C ","S":9,"TS":[0,12,1,0]}]},{"x":2.242,"y":12.59,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"D","S":9,"TS":[0,12,1,0]}]},{"x":6.158,"y":13.26,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":6.332,"y":13.26,"w":12.45,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Passive Income and Loss ","S":9,"TS":[0,12,1,0]}]},{"x":13.3,"y":13.26,"w":1.668,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":22.328,"y":13.26,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":22.849,"y":13.26,"w":14.338,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Nonpassive Income and Loss ","S":9,"TS":[0,12,1,0]}]},{"x":30.88,"y":13.26,"w":1.668,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":4.606,"y":14.086,"w":1.555,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(f) ","S":8,"TS":[0,10,1,0]}]},{"x":5.254,"y":14.086,"w":9.239,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Passive loss allowed","S":2,"TS":[0,10,0,0]}]},{"x":9.296,"y":14.086,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":4.026,"y":14.611,"w":3.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(attach","S":2,"TS":[0,10,0,0]}]},{"x":5.363,"y":14.611,"w":5.558,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Form 8582 ","S":8,"TS":[0,10,1,0]}]},{"x":7.7940000000000005,"y":14.611,"w":4.759,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"if required)","S":2,"TS":[0,10,0,0]}]},{"x":12.235,"y":14.086,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(g) ","S":8,"TS":[0,10,1,0]}]},{"x":13.004,"y":14.086,"w":7.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Passive income","S":2,"TS":[0,10,0,0]}]},{"x":16.067,"y":14.086,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":12.222,"y":14.611,"w":2.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from","S":2,"TS":[0,10,0,0]}]},{"x":13.122,"y":14.611,"w":7.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Schedule K…1","S":8,"TS":[0,10,1,0]}]},{"x":18.47,"y":14.086,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(h) ","S":8,"TS":[0,10,1,0]}]},{"x":19.231,"y":14.086,"w":7.315,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Nonpassive loss","S":2,"TS":[0,10,0,0]}]},{"x":22.432,"y":14.086,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":18.522,"y":14.611,"w":2.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from","S":2,"TS":[0,10,0,0]}]},{"x":19.422,"y":14.611,"w":7.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Schedule K…1","S":8,"TS":[0,10,1,0]}]},{"x":24.389,"y":14.086,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(i) ","S":8,"TS":[0,10,1,0]}]},{"x":25.004,"y":14.086,"w":9.391,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Section 179 expense","S":2,"TS":[0,10,0,0]}]},{"x":29.113,"y":14.086,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":24.105,"y":14.611,"w":7.095,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"deduction from ","S":2,"TS":[0,10,0,0]}]},{"x":27.209,"y":14.611,"w":5.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 4562","S":8,"TS":[0,10,1,0]}]},{"x":29.397,"y":14.611,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":30.589,"y":14.086,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(j) ","S":8,"TS":[0,10,1,0]}]},{"x":31.213,"y":14.086,"w":8.798,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Nonpassive income","S":2,"TS":[0,10,0,0]}]},{"x":35.062,"y":14.086,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":30.897,"y":14.611,"w":2.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from ","S":2,"TS":[0,10,0,0]}]},{"x":31.918,"y":14.611,"w":7.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule K…1","S":8,"TS":[0,10,1,0]}]},{"x":2.275,"y":18.59,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"29a ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":18.59,"w":3,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Totals ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":19.34,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":19.34,"w":3,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Totals ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":20.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"30 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":20.09,"w":15.152,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add columns (g) and (j) of line 29a","S":3,"TS":[0,12,0,0]}]},{"x":12.501,"y":20.09,"w":27.993,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":20.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"30 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":20.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"31 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":20.84,"w":16.838,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add columns (f), (h), and (i) of line 29b","S":3,"TS":[0,12,0,0]}]},{"x":14.001,"y":20.84,"w":25.327,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...................","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":20.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"31 ","S":9,"TS":[0,12,1,0]}]},{"x":30.061,"y":20.796,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"x":35.621,"y":20.796,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"x":2.275,"y":21.653,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":21.653,"w":25.561,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Total partnership and S corporation income or (loss). ","S":9,"TS":[0,12,1,0]}]},{"x":16.518,"y":21.653,"w":15.988,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine lines 30 and 31. Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":3.798,"y":22.34,"w":22.727,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"result here and include in the total on line 41 below","S":3,"TS":[0,12,0,0]}]},{"x":16.998,"y":22.34,"w":19.995,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":22.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32 ","S":9,"TS":[0,12,1,0]}]},{"x":2.143,"y":23.072,"w":3.423,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III ","S":-1,"TS":[0,13,0,0]}]},{"x":5.151,"y":23.072,"w":19.672,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Income or Loss From Estates and Trusts ","S":10,"TS":[0,14,1,0]}]},{"x":2.275,"y":24.122,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"33 ","S":9,"TS":[0,12,1,0]}]},{"x":14.77,"y":24.098,"w":1.778,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(a) ","S":8,"TS":[0,10,1,0]}]},{"x":15.523,"y":24.098,"w":2.927,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name ","S":2,"TS":[0,10,0,0]}]},{"x":30.842,"y":23.836,"w":1.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(b) ","S":8,"TS":[0,10,1,0]}]},{"x":31.612,"y":23.836,"w":4.223,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Employer","S":2,"TS":[0,10,0,0]}]},{"x":33.459,"y":23.836,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":30.092,"y":24.361,"w":9.688,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"identification number ","S":2,"TS":[0,10,0,0]}]},{"x":2.258,"y":25.34,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"x":2.253,"y":26.09,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"x":8.192,"y":26.746,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":8.348,"y":26.746,"w":12.45,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Passive Income and Loss ","S":9,"TS":[0,12,1,0]}]},{"x":15.316,"y":26.746,"w":1.668,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":24.614,"y":26.746,"w":14.616,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Nonpassive Income and Loss ","S":9,"TS":[0,12,1,0]}]},{"x":32.801,"y":26.746,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":32.957,"y":26.746,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":33.114,"y":26.746,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":33.27,"y":26.746,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":33.426,"y":26.746,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":4.663,"y":27.586,"w":1.444,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(c) ","S":2,"TS":[0,10,0,0]}]},{"x":5.295,"y":27.586,"w":15.185,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Passive deduction or loss allowed","S":2,"TS":[0,10,0,0]}]},{"x":11.938,"y":27.586,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":5.376,"y":28.111,"w":3.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(attach","S":2,"TS":[0,10,0,0]}]},{"x":6.713,"y":28.111,"w":5.558,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Form 8582 ","S":8,"TS":[0,10,1,0]}]},{"x":9.144,"y":28.111,"w":4.759,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"if required)","S":2,"TS":[0,10,0,0]}]},{"x":15.67,"y":27.586,"w":1.481,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(d) ","S":2,"TS":[0,10,0,0]}]},{"x":16.318,"y":27.586,"w":7.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Passive income","S":2,"TS":[0,10,0,0]}]},{"x":19.381,"y":27.586,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":15.597,"y":28.111,"w":2.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from","S":2,"TS":[0,10,0,0]}]},{"x":16.497,"y":28.111,"w":7.28,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Schedule K…1","S":8,"TS":[0,10,1,0]}]},{"x":22.917,"y":27.586,"w":1.444,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(e) ","S":2,"TS":[0,10,0,0]}]},{"x":23.549,"y":27.586,"w":7.853,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Deduction or loss","S":2,"TS":[0,10,0,0]}]},{"x":26.985,"y":27.586,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":23.022,"y":28.111,"w":2.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from ","S":2,"TS":[0,10,0,0]}]},{"x":24.043,"y":28.111,"w":7.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule K…1","S":8,"TS":[0,10,1,0]}]},{"x":30.052,"y":27.586,"w":1.203,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(f) ","S":2,"TS":[0,10,0,0]}]},{"x":30.578,"y":27.586,"w":8.392,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other income from","S":2,"TS":[0,10,0,0]}]},{"x":34.25,"y":27.586,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":30.733,"y":28.111,"w":7.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule K…1","S":8,"TS":[0,10,1,0]}]},{"x":2.275,"y":30.59,"w":1.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"34a ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":30.59,"w":3,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Totals ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":31.340000000000003,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":31.340000000000003,"w":3,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Totals ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":32.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"35 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":32.09,"w":15.245,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add columns (d) and (f) of line 34a","S":3,"TS":[0,12,0,0]}]},{"x":12.501,"y":32.09,"w":27.993,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":32.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"35 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":32.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"36 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":32.84,"w":15.486,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add columns (c) and (e) of line 34b","S":3,"TS":[0,12,0,0]}]},{"x":13.251,"y":32.84,"w":26.66,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":32.84,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"36 ","S":9,"TS":[0,12,1,0]}]},{"x":30.061,"y":32.796,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(","S":-1,"TS":[0,11,0,0]}]},{"x":35.621,"y":32.858,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":")","S":-1,"TS":[0,11,0,0]}]},{"x":2.275,"y":33.671,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"37","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":33.653,"w":18.671,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Total estate and trust income or (loss). ","S":9,"TS":[0,12,1,0]}]},{"x":13.257,"y":33.653,"w":22.934,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine lines 35 and 36. Enter the result here and ","S":3,"TS":[0,12,0,0]}]},{"x":3.8040000000000003,"y":34.34,"w":15.781,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"include in the total on line 41 below","S":3,"TS":[0,12,0,0]}]},{"x":13.254,"y":34.34,"w":26.66,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":34.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"37 ","S":9,"TS":[0,12,1,0]}]},{"x":2.13,"y":35.072,"w":3.463,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part IV ","S":-1,"TS":[0,13,0,0]}]},{"x":5.151,"y":35.072,"w":43.897,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Income or Loss From Real Estate Mortgage Investment Conduits (REMICs)„Residual Holder ","S":10,"TS":[0,14,1,0]}]},{"x":2.275,"y":36.121,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"38 ","S":9,"TS":[0,12,1,0]}]},{"x":5.38,"y":36.138,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(a) ","S":8,"TS":[0,10,1,0]}]},{"x":6.012,"y":36.138,"w":2.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name","S":2,"TS":[0,10,0,0]}]},{"x":10.245,"y":35.92,"w":1.555,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(b) ","S":8,"TS":[0,10,1,0]}]},{"x":10.892,"y":35.92,"w":4.223,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Employer","S":2,"TS":[0,10,0,0]}]},{"x":12.74,"y":35.92,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":12.862,"y":35.92,"w":5.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"identification ","S":2,"TS":[0,10,0,0]}]},{"x":12.051,"y":36.357,"w":3.706,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"number ","S":2,"TS":[0,10,0,0]}]},{"x":16.875,"y":35.732,"w":1.5,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(c) ","S":8,"TS":[0,10,1,0]}]},{"x":17.507,"y":35.732,"w":10.038,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Excess inclusion from ","S":2,"TS":[0,10,0,0]}]},{"x":21.898,"y":35.732,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":17.251,"y":36.17,"w":6.614,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedules Q, ","S":8,"TS":[0,10,1,0]}]},{"x":20.128,"y":36.17,"w":2.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 2c","S":2,"TS":[0,10,0,0]}]},{"x":21.4,"y":36.17,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":17.673,"y":36.607,"w":7.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions)","S":2,"TS":[0,10,0,0]}]},{"x":22.818,"y":35.92,"w":1.555,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(d) ","S":8,"TS":[0,10,1,0]}]},{"x":23.466,"y":35.92,"w":11.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable income (net loss) ","S":2,"TS":[0,10,0,0]}]},{"x":23.028,"y":36.357,"w":2.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from","S":2,"TS":[0,10,0,0]}]},{"x":23.928,"y":36.357,"w":6.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" Schedules Q, ","S":8,"TS":[0,10,1,0]}]},{"x":26.926,"y":36.357,"w":2.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 1b","S":2,"TS":[0,10,0,0]}]},{"x":30.599,"y":35.92,"w":1.222,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(e)","S":8,"TS":[0,10,1,0]}]},{"x":31.109,"y":35.92,"w":5.928,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Income from","S":2,"TS":[0,10,0,0]}]},{"x":33.703,"y":35.92,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":30.064,"y":36.357,"w":6.614,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedules Q, ","S":8,"TS":[0,10,1,0]}]},{"x":32.941,"y":36.357,"w":2.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 3b","S":2,"TS":[0,10,0,0]}]},{"x":2.275,"y":38.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"39 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":38.09,"w":42.826,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine columns (d) and (e) only. Enter the result here and include in the total on line 41 below ","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":38.09,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"39 ","S":9,"TS":[0,12,1,0]}]},{"x":2.223,"y":38.822,"w":3.168,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part V ","S":-1,"TS":[0,13,0,0]}]},{"x":5.151,"y":38.822,"w":4.835,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Summary ","S":10,"TS":[0,14,1,0]}]},{"x":2.275,"y":39.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"40 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":39.59,"w":16.595,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Net farm rental income or (loss) from ","S":3,"TS":[0,12,0,0]}]},{"x":12.26,"y":39.59,"w":5.002,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Form 4835","S":9,"TS":[0,12,1,0]}]},{"x":14.823,"y":39.59,"w":13.391,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". Also, complete line 42 below","S":3,"TS":[0,12,0,0]}]},{"x":23.751,"y":39.59,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":39.59,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"40 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":40.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"41 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":40.34,"w":11.225,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Total income or (loss). ","S":-1,"TS":[0,9.3,1,0]}]},{"x":7.994,"y":40.34,"w":49.688,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine lines 26, 32, 37, 39, and 40. Enter the result here and on Form 1040, line 17, or Form 1040NR, line 18 ","S":-1,"TS":[0,9.3,0,0]}]},{"x":27.745,"y":40.246,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,7.9,0,0]}]},{"x":28.051,"y":40.246,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,7.2,0,0]}]},{"x":28.913,"y":40.34,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"41 ","S":9,"TS":[0,12,1,0]}]},{"x":2.275,"y":41.278,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"42 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":41.278,"w":21.949,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Reconciliation of farming and fishing income. ","S":-1,"TS":[0,11.46,1,0]}]},{"x":14.079,"y":41.278,"w":4.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter your ","S":-1,"TS":[0,11.46,0,0]}]},{"x":16.356,"y":41.278,"w":3.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"gross ","S":-1,"TS":[0,11.46,1,0]}]},{"x":3.801,"y":41.965,"w":32.548,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"farming and fishing income reported on Form 4835, line 7; Schedule K-1 ","S":-1,"TS":[0,11.46,0,0]}]},{"x":3.7990000000000004,"y":42.652,"w":32.363,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Form 1065), box 14, code B; Schedule K-1 (Form 1120S), box 17, code ","S":-1,"TS":[0,11.46,0,0]}]},{"x":3.798,"y":43.34,"w":30.231,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"V; and Schedule K-1 (Form 1041), box 14, code F (see instructions) ","S":-1,"TS":[0,11.46,0,0]}]},{"x":19.997,"y":43.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"x":20.747,"y":43.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.46,0,0]}]},{"x":21.713,"y":43.34,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"42 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":44.278,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"43 ","S":9,"TS":[0,12,1,0]}]},{"x":3.801,"y":44.278,"w":21.007,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Reconciliation for real estate professionals. ","S":-1,"TS":[0,11.01,1,0]}]},{"x":13.566,"y":44.278,"w":10.925,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you were a real estate ","S":-1,"TS":[0,11.01,0,0]}]},{"x":3.8019999999999996,"y":44.965,"w":33.097,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"professional (see instructions), enter the net income or (loss) you reported ","S":-1,"TS":[0,11.01,0,0]}]},{"x":3.803,"y":45.652,"w":34.302,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"anywhere on Form 1040 or Form 1040NR from all rental real estate activities ","S":-1,"TS":[0,11.01,0,0]}]},{"x":3.8019999999999996,"y":46.34,"w":32.449,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"in which you materially participated under the passive activity loss rules .","S":-1,"TS":[0,11.01,0,0]}]},{"x":20.658,"y":46.34,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.01,0,0]}]},{"x":21.713,"y":46.34,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"43 ","S":3,"TS":[0,12,0,0]}]},{"x":29.746,"y":47.126,"w":14.117,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule E (Form 1040) 2013 ","S":8,"TS":[0,10,1,0]}]},{"x":2.989,"y":14.735,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":9.739,"y":14.735,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":11.089,"y":14.735,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":16.039,"y":14.735,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":17.389,"y":14.735,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":22.339,"y":14.735,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":23.689,"y":14.735,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":28.639,"y":14.735,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":29.989,"y":14.735,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":34.489,"y":14.735,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":2.258,"y":15.59,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"x":2.253,"y":16.34,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"x":2.242,"y":17.09,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" C ","S":9,"TS":[0,12,1,0]}]},{"x":2.242,"y":17.84,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"D","S":9,"TS":[0,12,1,0]}]},{"x":2.989,"y":28.235,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":12.439,"y":28.235,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":13.789,"y":28.235,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":20.089,"y":28.235,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":21.439,"y":28.235,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":27.289,"y":28.235,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":28.639,"y":28.235,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":34.489,"y":28.235,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":2.258,"y":29.09,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A","S":9,"TS":[0,12,1,0]}]},{"x":2.253,"y":29.84,"w":0.722,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B","S":9,"TS":[0,12,1,0]}]},{"x":2.089,"y":36.485,"w":1.112,"oc":"#2b2a79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":9.739,"y":36.485,"w":0.834,"oc":"#2b2a79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":16.039,"y":36.485,"w":0.834,"oc":"#2b2a79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":21.439,"y":36.485,"w":0.834,"oc":"#2b2a79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":22.789,"y":36.485,"w":0.834,"oc":"#2b2a79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":27.289,"y":36.485,"w":0.834,"oc":"#2b2a79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":29.989,"y":36.485,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]},{"x":34.489,"y":36.485,"w":0.834,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[3,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":983,"AM":1024,"TU":"Name(s) shown on return. Do not enter name and social security number if shown on other side.","x":2.265,"y":3.568,"w":26.04,"h":0.874},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":984,"AM":1024,"TU":"Your social security number","x":28.402,"y":3.642,"w":7.59,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27A_1_","EN":0},"TI":987,"AM":0,"x":3.188,"y":10.538,"w":15.233,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27B_1_","EN":0},"TI":988,"AM":0,"TU":"(b) Enter P for partnership; S for S corporation_A","x":18.515,"y":10.538,"w":3.533,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE27_L27D_1_","EN":0},"TI":990,"AM":0,"TU":"(d) Employer identification number_","x":25.688,"y":10.538,"w":5.782,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27A_2_","EN":0},"TI":992,"AM":0,"x":3.15,"y":11.317,"w":15.232,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27B_2_","EN":0},"TI":993,"AM":0,"TU":"(b) Enter P for partnership; S for S corporation_A","x":18.477,"y":11.317,"w":3.533,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE27_L27D_2_","EN":0},"TI":995,"AM":0,"TU":"(d) Employer identification number_","x":25.65,"y":11.317,"w":5.783,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27A_3_","EN":0},"TI":997,"AM":0,"x":3.143,"y":12.045,"w":15.233,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27B_3_","EN":0},"TI":998,"AM":0,"TU":"(b) Enter P for partnership; S for S corporation_A","x":18.47,"y":12.045,"w":3.532,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE27_L27D_3_","EN":0},"TI":1000,"AM":0,"TU":"(d) Employer identification number_","x":25.643,"y":12.045,"w":5.782,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27A_4_","EN":0},"TI":1002,"AM":0,"x":3.136,"y":12.745,"w":15.233,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LINE27_L27B_4_","EN":0},"TI":1003,"AM":0,"TU":"(b) Enter P for partnership; S for S corporation_A","x":18.463,"y":12.745,"w":3.532,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"LINE27_L27D_4_","EN":0},"TI":1005,"AM":0,"TU":"(d) Employer identification number_","x":25.636,"y":12.745,"w":5.782,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27G_1_","EN":0},"TI":1007,"AM":0,"x":3.131,"y":15.817,"w":6.625,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27H_1_","EN":0},"TI":1008,"AM":0,"x":11.28,"y":15.838,"w":4.856,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27I_1_","EN":0},"TI":1009,"AM":0,"x":17.643,"y":15.858,"w":4.883,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27J_1_","EN":0},"TI":1010,"AM":0,"x":23.897,"y":15.823,"w":4.829,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27K_1_","EN":0},"TI":1011,"AM":0,"x":30.206,"y":15.843,"w":4.366,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27G_2_","EN":0},"TI":1012,"AM":0,"x":3.146,"y":16.553,"w":6.625,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27H_2_","EN":0},"TI":1013,"AM":0,"x":11.295,"y":16.573,"w":4.856,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27I_2_","EN":0},"TI":1014,"AM":0,"x":17.658,"y":16.593,"w":4.883,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27J_2_","EN":0},"TI":1015,"AM":0,"x":23.913,"y":16.558,"w":4.828,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27K_2_","EN":0},"TI":1016,"AM":0,"x":30.221,"y":16.578,"w":4.366,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27G_3_","EN":0},"TI":1017,"AM":0,"x":3.166,"y":17.28,"w":6.625,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27H_3_","EN":0},"TI":1018,"AM":0,"x":11.315,"y":17.301,"w":4.856,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27I_3_","EN":0},"TI":1019,"AM":0,"x":17.678,"y":17.321,"w":4.883,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27J_3_","EN":0},"TI":1020,"AM":0,"x":23.932,"y":17.286,"w":4.829,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27K_3_","EN":0},"TI":1021,"AM":0,"x":30.241,"y":17.306,"w":4.366,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27G_4_","EN":0},"TI":1022,"AM":0,"x":3.132,"y":18.063,"w":6.625,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27H_4_","EN":0},"TI":1023,"AM":0,"x":11.28,"y":18.083,"w":4.856,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27I_4_","EN":0},"TI":1024,"AM":0,"x":17.644,"y":18.103,"w":4.883,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27J_4_","EN":0},"TI":1025,"AM":0,"x":23.898,"y":18.068,"w":4.829,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"PSCGL_L27K_4_","EN":0},"TI":1026,"AM":0,"x":30.207,"y":18.088,"w":4.366,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28AH","EN":0},"TI":1027,"AM":1024,"TU":"_29a Totals b Totals","x":11.287,"y":18.788,"w":4.883,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28AK","EN":0},"TI":1028,"AM":1024,"TU":"_29a Totals b Totals","x":30.188,"y":18.788,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28BG","EN":0},"TI":1029,"AM":1024,"x":6.338,"y":19.538,"w":3.532,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28BI","EN":0},"TI":1030,"AM":1024,"x":17.601,"y":19.546,"w":4.883,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28BJ","EN":0},"TI":1031,"AM":1024,"x":23.908,"y":19.564,"w":4.883,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":1032,"AM":1024,"x":30.188,"y":20.288,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":1033,"AM":1024,"x":30.466,"y":21.058,"w":4.121,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":1034,"AM":1024,"x":30.218,"y":22.369,"w":4.373,"h":0.858},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ESTATE_L32A_1_","EN":0},"TI":1035,"AM":0,"x":3.188,"y":25.538,"w":25.582,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ESTATE_L32B_1_","EN":0},"TI":1036,"AM":0,"TU":"(b) Employer identification number_A","x":28.837,"y":25.538,"w":7.17,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ESTATE_L32A_2_","EN":0},"TI":1037,"AM":0,"x":3.192,"y":26.29,"w":25.583,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ESTATE_L32B_2_","EN":0},"TI":1038,"AM":0,"TU":"(b) Employer identification number_A","x":28.842,"y":26.29,"w":7.17,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32C_1_","EN":0},"TI":1039,"AM":0,"x":3.188,"y":29.288,"w":9.383,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32D_1_","EN":0},"TI":1040,"AM":0,"x":13.93,"y":29.285,"w":6.306,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32E_1_","EN":0},"TI":1041,"AM":0,"x":21.682,"y":29.278,"w":5.734,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32F_1_","EN":0},"TI":1042,"AM":0,"x":28.835,"y":29.243,"w":5.762,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32C_2_","EN":0},"TI":1043,"AM":0,"x":3.119,"y":29.972,"w":9.382,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32D_2_","EN":0},"TI":1044,"AM":0,"x":13.905,"y":30.013,"w":6.306,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32E_2_","EN":0},"TI":1045,"AM":0,"x":21.657,"y":30.005,"w":5.734,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"ESGL_L32F_2_","EN":0},"TI":1046,"AM":0,"x":28.809,"y":29.971,"w":5.762,"h":0.833,"MV":"+"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33AD","EN":0},"TI":1047,"AM":1024,"TU":"(d) Passive income from Schedule K–1_34a Totals b Totals","x":13.988,"y":30.788,"w":6.232,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33AF","EN":0},"TI":1048,"AM":1024,"TU":"(f) Other income from Schedule K–1_34a Totals b Totals","x":28.837,"y":30.788,"w":5.782,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33BC","EN":0},"TI":1049,"AM":1024,"TU":"Totals","x":6.338,"y":31.538,"w":6.232,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33BE","EN":0},"TI":1050,"AM":1024,"x":21.698,"y":31.553,"w":5.672,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L34","EN":0},"TI":1051,"AM":1024,"x":30.187,"y":32.309,"w":4.393,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":1052,"AM":1024,"x":30.46,"y":32.995,"w":4.106,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":1053,"AM":1024,"x":30.218,"y":34.498,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L37_L37A_1_","EN":0},"TI":1054,"AM":0,"TU":"38 (a) Name_Row_1","x":2.25,"y":37.538,"w":7.62,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"L37_L37B_1_","EN":0},"TI":1055,"AM":0,"TU":"(b) Employer identification number_Row_1","x":9.938,"y":37.538,"w":6.233,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37_L37C_1_","EN":0},"TI":1056,"AM":0,"TU":"(c) Excess inclusion from Schedules Q, line 2c (see instructions)_Row_1","x":16.238,"y":37.538,"w":5.333,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37_L37D_1_","EN":0},"TI":1057,"AM":0,"TU":"(d) Taxable income (net loss) from Schedules Q, line 1b_Row_1","x":22.988,"y":37.538,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L37_L37E_1_","EN":0},"TI":1058,"AM":0,"TU":"(e) Income from Schedules Q, line 3b_Row_1","x":30.188,"y":37.538,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":1059,"AM":1024,"x":30.188,"y":38.288,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39","EN":0},"TI":1060,"AM":0,"x":30.188,"y":39.788,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40","EN":0},"TI":1061,"AM":1024,"x":30.188,"y":40.545,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41","EN":0},"TI":1062,"AM":0,"x":22.995,"y":43.538,"w":4.418,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":1063,"AM":0,"x":22.988,"y":46.538,"w":4.433,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NALOSSY","EN":0},"TI":985,"AM":0,"x":30.958,"y":8.008,"w":0.576,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"NALOSSN","EN":0},"TI":986,"AM":0,"x":33.768,"y":8.256,"w":0.526,"h":0.833,"checked":false}],"id":{"Id":"NALOSSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27CX_1_","EN":0},"TI":989,"AM":0,"x":23.658,"y":10.465,"w":0.581,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27EX_1_","EN":0},"TI":991,"AM":0,"x":33.441,"y":10.488,"w":0.581,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27CX_2_","EN":0},"TI":994,"AM":0,"x":23.621,"y":11.245,"w":0.581,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27EX_2_","EN":0},"TI":996,"AM":0,"x":33.404,"y":11.268,"w":0.581,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27CX_3_","EN":0},"TI":999,"AM":0,"x":23.613,"y":11.972,"w":0.581,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27EX_3_","EN":0},"TI":1001,"AM":0,"x":33.396,"y":11.995,"w":0.58,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27CX_4_","EN":0},"TI":1004,"AM":0,"x":23.606,"y":12.673,"w":0.581,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"LINE27_L27EX_4_","EN":0},"TI":1006,"AM":0,"x":33.389,"y":12.696,"w":0.581,"h":0.833}]}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHEIC.json b/test/data/fd/form/FSCHEIC.json index 39be098e..8e8650c9 100755 --- a/test/data/fd/form/FSCHEIC.json +++ b/test/data/fd/form/FSCHEIC.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":5.983,"w":1.5,"l":14.979},{"oc":"#9a9d9f","x":73.999,"y":3.108,"w":6,"l":3.231},{"oc":"#8dd8f8","x":71.823,"y":6.001,"w":3,"l":5.156},{"oc":"#8dd8f8","x":71.995,"y":3.65,"w":3,"l":3.438},{"oc":"#8dd8f8","x":75.432,"y":4.213,"w":3,"l":1.547},{"oc":"#5fa3d8","x":66.838,"y":4.492,"w":3,"l":5.156},{"oc":"#5fa3d8","x":66.838,"y":2.242,"w":3,"l":3.609},{"oc":"#5fa3d8","x":70.448,"y":2.805,"w":3,"l":1.547},{"oc":"#221f1f","x":84.066,"y":3.001,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":5.983,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.997,"y":6.001,"w":1.5,"l":63.199},{"oc":"#221f1f","x":6.147,"y":7.621,"w":0.75,"l":74.336},{"oc":"#221f1f","x":80.397,"y":7.621,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.147,"y":11.371,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":14.371,"w":4.5,"l":29.786},{"oc":"#221f1f","x":6.147,"y":15.871,"w":4.5,"l":29.786},{"oc":"#221f1f","x":35.847,"y":14.371,"w":4.5,"l":21.123},{"oc":"#221f1f","x":35.847,"y":15.871,"w":4.5,"l":21.123},{"oc":"#221f1f","x":56.884,"y":14.371,"w":4.5,"l":21.123},{"oc":"#221f1f","x":56.884,"y":15.871,"w":4.5,"l":21.123},{"oc":"#221f1f","x":77.922,"y":14.371,"w":4.5,"l":21.123},{"oc":"#221f1f","x":77.922,"y":15.871,"w":4.5,"l":21.123},{"oc":"#221f1f","x":8.622,"y":18.874,"w":0.75,"l":27.311},{"oc":"#221f1f","x":35.847,"y":18.871,"w":0.75,"l":21.123},{"oc":"#221f1f","x":56.884,"y":18.871,"w":0.75,"l":21.123},{"oc":"#221f1f","x":77.922,"y":18.871,"w":0.75,"l":21.123},{"oc":"#221f1f","x":8.622,"y":26.251,"w":0.75,"l":27.311},{"oc":"#221f1f","x":35.847,"y":26.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":56.884,"y":26.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":77.922,"y":26.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":6.147,"y":30.001,"w":4.5,"l":29.786},{"oc":"#221f1f","x":42.034,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":45.859,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":49.459,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":53.172,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":35.847,"y":30.001,"w":4.5,"l":21.123},{"oc":"#221f1f","x":61.834,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":65.547,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":69.259,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":72.972,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":56.884,"y":30.001,"w":4.5,"l":21.123},{"oc":"#221f1f","x":82.872,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":86.584,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":90.297,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":94.009,"y":27.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":77.922,"y":30.001,"w":4.5,"l":21.123},{"oc":"#221f1f","x":8.622,"y":33.376,"w":0.75,"l":27.311},{"oc":"#221f1f","x":37.127,"y":31.407,"w":0.75,"l":2.578},{"oc":"#221f1f","x":37.127,"y":30.47,"w":0.75,"l":2.578},{"oc":"#221f1f","x":35.847,"y":33.376,"w":0.75,"l":11.223},{"oc":"#221f1f","x":47.027,"y":31.407,"w":0.75,"l":2.578},{"oc":"#221f1f","x":47.027,"y":30.47,"w":0.75,"l":2.578},{"oc":"#221f1f","x":46.984,"y":33.376,"w":0.75,"l":9.986},{"oc":"#221f1f","x":58.165,"y":31.407,"w":0.75,"l":2.578},{"oc":"#221f1f","x":58.165,"y":30.47,"w":0.75,"l":2.578},{"oc":"#221f1f","x":56.884,"y":33.376,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.065,"y":31.407,"w":0.75,"l":2.578},{"oc":"#221f1f","x":68.065,"y":30.47,"w":0.75,"l":2.578},{"oc":"#221f1f","x":68.022,"y":33.376,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.202,"y":31.407,"w":0.75,"l":2.578},{"oc":"#221f1f","x":79.202,"y":30.47,"w":0.75,"l":2.578},{"oc":"#221f1f","x":77.922,"y":33.376,"w":0.75,"l":11.223},{"oc":"#221f1f","x":89.102,"y":31.407,"w":0.75,"l":2.578},{"oc":"#221f1f","x":89.102,"y":30.47,"w":0.75,"l":2.578},{"oc":"#221f1f","x":89.059,"y":33.376,"w":0.75,"l":9.986},{"oc":"#221f1f","x":37.127,"y":34.97,"w":0.75,"l":2.578},{"oc":"#221f1f","x":37.127,"y":34.032,"w":0.75,"l":2.578},{"oc":"#221f1f","x":47.027,"y":34.97,"w":0.75,"l":2.578},{"oc":"#221f1f","x":47.027,"y":34.032,"w":0.75,"l":2.578},{"oc":"#221f1f","x":58.165,"y":34.97,"w":0.75,"l":2.578},{"oc":"#221f1f","x":58.165,"y":34.032,"w":0.75,"l":2.578},{"oc":"#221f1f","x":69.302,"y":34.97,"w":0.75,"l":2.578},{"oc":"#221f1f","x":69.302,"y":34.032,"w":0.75,"l":2.578},{"oc":"#221f1f","x":79.202,"y":34.97,"w":0.75,"l":2.578},{"oc":"#221f1f","x":79.202,"y":34.032,"w":0.75,"l":2.578},{"oc":"#221f1f","x":90.34,"y":34.97,"w":0.75,"l":2.578},{"oc":"#221f1f","x":90.34,"y":34.032,"w":0.75,"l":2.578},{"oc":"#221f1f","x":6.147,"y":36.751,"w":4.5,"l":2.561},{"oc":"#221f1f","x":8.622,"y":36.751,"w":4.5,"l":27.311},{"oc":"#221f1f","x":8.622,"y":39.376,"w":0.75,"l":27.311},{"oc":"#221f1f","x":35.847,"y":36.751,"w":4.5,"l":21.123},{"oc":"#221f1f","x":35.847,"y":39.376,"w":0.75,"l":21.123},{"oc":"#221f1f","x":56.884,"y":36.751,"w":4.5,"l":21.123},{"oc":"#221f1f","x":56.884,"y":39.376,"w":0.75,"l":21.123},{"oc":"#221f1f","x":77.922,"y":36.751,"w":4.5,"l":21.123},{"oc":"#221f1f","x":77.922,"y":39.376,"w":0.75,"l":21.123},{"oc":"#221f1f","x":42.034,"y":45.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":63.072,"y":45.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":84.109,"y":45.001,"w":0.75,"l":6.273},{"oc":"#221f1f","x":6.147,"y":46.501,"w":1.5,"l":37.211},{"oc":"#221f1f","x":43.272,"y":46.501,"w":1.5,"l":32.261},{"oc":"#221f1f","x":75.447,"y":46.501,"w":1.5,"l":23.598}],"VLines":[{"oc":"#221f1f","x":21.066,"y":2.217,"w":1.5,"l":2.315},{"oc":"#221f1f","x":21.04,"y":4.467,"w":1.5,"l":1.547},{"oc":"#8dd8f8","x":76.979,"y":4.213,"w":3,"l":1.688},{"oc":"#8dd8f8","x":71.823,"y":4.4,"w":3,"l":1.5},{"oc":"#8dd8f8","x":75.432,"y":3.65,"w":3,"l":0.563},{"oc":"#5fa3d8","x":71.995,"y":2.805,"w":3,"l":1.688},{"oc":"#5fa3d8","x":66.838,"y":2.242,"w":3,"l":2.25},{"oc":"#5fa3d8","x":70.448,"y":2.242,"w":3,"l":0.563},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.152,"y":2.967,"w":1.5,"l":2.031},{"oc":"#221f1f","x":84.152,"y":4.467,"w":1.5,"l":1.547},{"oc":"#221f1f","x":80.44,"y":6.09,"w":0.75,"l":1.547},{"oc":"#221f1f","x":35.89,"y":15.855,"w":0.75,"l":3.031},{"oc":"#221f1f","x":56.927,"y":15.855,"w":0.75,"l":3.031},{"oc":"#221f1f","x":77.965,"y":15.855,"w":0.75,"l":3.031},{"oc":"#221f1f","x":35.89,"y":18.855,"w":0.75,"l":7.412},{"oc":"#221f1f","x":56.927,"y":18.855,"w":0.75,"l":7.412},{"oc":"#221f1f","x":77.965,"y":18.855,"w":0.75,"l":7.412},{"oc":"#221f1f","x":35.89,"y":26.235,"w":0.75,"l":3.859},{"oc":"#221f1f","x":56.927,"y":27.736,"w":0.75,"l":2.359},{"oc":"#221f1f","x":56.927,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":27.736,"w":0.75,"l":2.359},{"oc":"#221f1f","x":35.89,"y":29.986,"w":0.75,"l":3.406},{"oc":"#221f1f","x":39.705,"y":30.47,"w":0.75,"l":0.938},{"oc":"#221f1f","x":37.127,"y":30.47,"w":0.75,"l":0.938},{"oc":"#221f1f","x":56.927,"y":29.986,"w":0.75,"l":1.906},{"oc":"#221f1f","x":49.605,"y":30.47,"w":0.75,"l":0.938},{"oc":"#221f1f","x":47.027,"y":30.47,"w":0.75,"l":0.938},{"oc":"#221f1f","x":56.927,"y":31.86,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.743,"y":30.47,"w":0.75,"l":0.938},{"oc":"#221f1f","x":58.165,"y":30.47,"w":0.75,"l":0.938},{"oc":"#221f1f","x":77.965,"y":29.986,"w":0.75,"l":1.906},{"oc":"#221f1f","x":70.643,"y":30.47,"w":0.75,"l":0.938},{"oc":"#221f1f","x":68.065,"y":30.47,"w":0.75,"l":0.938},{"oc":"#221f1f","x":77.965,"y":31.86,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.78,"y":30.47,"w":0.75,"l":0.938},{"oc":"#221f1f","x":79.202,"y":30.47,"w":0.75,"l":0.938},{"oc":"#221f1f","x":91.68,"y":30.47,"w":0.75,"l":0.938},{"oc":"#221f1f","x":89.102,"y":30.47,"w":0.75,"l":0.938},{"oc":"#221f1f","x":35.89,"y":33.361,"w":0.75,"l":3.406},{"oc":"#221f1f","x":39.705,"y":34.032,"w":0.75,"l":0.938},{"oc":"#221f1f","x":37.127,"y":34.032,"w":0.75,"l":0.938},{"oc":"#221f1f","x":56.927,"y":33.361,"w":0.75,"l":1.906},{"oc":"#221f1f","x":49.605,"y":34.032,"w":0.75,"l":0.938},{"oc":"#221f1f","x":47.027,"y":34.032,"w":0.75,"l":0.938},{"oc":"#221f1f","x":56.927,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":60.743,"y":34.032,"w":0.75,"l":0.938},{"oc":"#221f1f","x":58.165,"y":34.032,"w":0.75,"l":0.938},{"oc":"#221f1f","x":77.965,"y":33.361,"w":0.75,"l":1.906},{"oc":"#221f1f","x":71.88,"y":34.032,"w":0.75,"l":0.938},{"oc":"#221f1f","x":69.302,"y":34.032,"w":0.75,"l":0.938},{"oc":"#221f1f","x":77.965,"y":35.236,"w":0.75,"l":1.531},{"oc":"#221f1f","x":81.78,"y":34.032,"w":0.75,"l":0.938},{"oc":"#221f1f","x":79.202,"y":34.032,"w":0.75,"l":0.938},{"oc":"#221f1f","x":92.918,"y":34.032,"w":0.75,"l":0.938},{"oc":"#221f1f","x":90.34,"y":34.032,"w":0.75,"l":0.938},{"oc":"#221f1f","x":35.89,"y":36.657,"w":0.75,"l":2.734},{"oc":"#221f1f","x":56.927,"y":36.657,"w":0.75,"l":2.734},{"oc":"#221f1f","x":77.965,"y":36.657,"w":0.75,"l":2.734},{"oc":"#221f1f","x":35.89,"y":39.361,"w":0.75,"l":2.656},{"oc":"#221f1f","x":35.89,"y":41.986,"w":0.75,"l":2.281},{"oc":"#221f1f","x":35.89,"y":44.236,"w":0.75,"l":2.281},{"oc":"#221f1f","x":56.927,"y":39.361,"w":0.75,"l":5.656},{"oc":"#221f1f","x":56.927,"y":44.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":39.361,"w":0.75,"l":5.656},{"oc":"#221f1f","x":77.965,"y":44.986,"w":0.75,"l":1.531}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#5fa3d8","x":6.19,"y":11.746,"w":6.188,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.966,"y":1.992,"w":8.001,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20EIC%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.966,"y":2.677,"w":10.448000000000004,"clr":-1,"A":"left","R":[{"T":"(Form%201040A%20or%201040)%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.94,"y":4.508,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.008,"w":13.279000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":35.227,"y":2.189,"w":10.335999999999999,"clr":-1,"A":"left","R":[{"T":"Earned%20Income%20Credit","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":35.692,"y":3.028,"w":12.390999999999998,"clr":-1,"A":"left","R":[{"T":"Qualifying%20Child%20Information","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":21.133,"y":3.8070000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":22.453,"y":3.806,"w":37.399999999999984,"clr":-1,"A":"left","R":[{"T":"Complete%20and%20attach%20to%20Form%201040A%20or%201040%20only%20if%20you%20have%20a%20qualifying%20child.","S":-1,"TS":[0,9.8,1,0]}]},{"oc":"#5fa3d8","x":67.12,"y":2.588,"w":3.1870000000000003,"clr":-1,"A":"left","R":[{"T":"1040A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#5fa3d8","x":66.577,"y":2.864,"w":5.560000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":1,"TS":[0,8,0,0]}]},{"oc":"#5fa3d8","x":67.561,"y":3.513,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"1040%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#8dd8f8","x":72.335,"y":4.418,"w":1.9620000000000002,"clr":-1,"A":"left","R":[{"T":"EIC%20","S":-1,"TS":[0,15,0,0]}]},{"oc":"#9a9d9f","x":72.066,"y":2.497,"w":1,"clr":-1,"A":"left","R":[{"T":"%60","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9729999999999999,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.532,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.829,"y":3.532,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.965,"y":4.671,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":5.117,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.942,"y":5.117,"w":1.112,"clr":-1,"A":"left","R":[{"T":"43","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":21.133,"y":4.768,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":70.692,"y":4.768,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[3,8.68,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.773,"w":11.559,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.877,"y":5.805,"w":13.727000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number%20","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":7.9830000000000005,"w":8.779,"clr":-1,"A":"left","R":[{"T":"Before%20you%20begin%3A%20","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":29.452,"y":7.505000000000001,"w":44.986,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20See%20the%20instructions%20for%20Form%201040A%2C%20lines%2038a%20and%2038b%2C%20or%20Form%201040%2C%20lines%2064a%20and%2064b%2C%20to%20make%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.484,"y":8.192,"w":3.666,"clr":-1,"A":"left","R":[{"T":"sure%20that%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.155,"y":8.192,"w":1.222,"clr":-1,"A":"left","R":[{"T":"(a)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":37.958,"y":8.192,"w":10.831000000000001,"clr":-1,"A":"left","R":[{"T":"%20you%20can%20take%20the%20EIC%2C%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.713,"y":8.192,"w":1.277,"clr":-1,"A":"left","R":[{"T":"(b)","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":56.603,"y":8.192,"w":11.693000000000003,"clr":-1,"A":"left","R":[{"T":"%20you%20have%20a%20qualifying%20child.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":29.452,"y":8.911,"w":49.092000000000006,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Be%20sure%20the%20child%E2%80%99s%20name%20on%20line%201%20and%20social%20security%20number%20(SSN)%20on%20line%202%20agree%20with%20the%20child%E2%80%99s%20social%20security%20card.%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":30.484,"y":9.599,"w":47.60199999999998,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20at%20the%20time%20we%20process%20your%20return%2C%20we%20may%20reduce%20or%20disallow%20your%20EIC.%20If%20the%20name%20or%20SSN%20on%20the%20child%E2%80%99s%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":30.484,"y":10.286,"w":37.716999999999985,"clr":-1,"A":"left","R":[{"T":"social%20security%20card%20is%20not%20correct%2C%20call%20the%20Social%20Security%20Administration%20at%201-800-772-1213.%20%20","S":-1,"TS":[0,11.1,0,0]}]},{"x":6.243,"y":12.534,"w":0.892,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,39.4001,0,0]}]},{"oc":"#5fa3d8","x":8.428,"y":12.47,"w":0.32,"clr":-1,"A":"left","R":[{"T":"!","S":-1,"TS":[2,25,0,0]}]},{"x":6.354,"y":13.067,"w":4.796,"clr":1,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#5fa3d8","x":5.94,"y":14.688,"w":13.307000000000002,"clr":-1,"A":"left","R":[{"T":"Qualifying%20Child%20Information","S":-1,"TS":[0,16,0,0]}]},{"oc":"#221f1f","x":43.044,"y":14.587,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Child%201%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":64.081,"y":14.587,"w":3.612,"clr":-1,"A":"left","R":[{"T":"Child%202%20","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":85.119,"y":14.587,"w":3.334,"clr":-1,"A":"left","R":[{"T":"Child%203","S":-1,"TS":[0,15,1,0]}]},{"oc":"#221f1f","x":5.94,"y":15.879999999999999,"w":7.852,"clr":-1,"A":"left","R":[{"T":"1%20%20%20Child's%20name%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":8.415,"y":16.595,"w":15.691000000000004,"clr":-1,"A":"left","R":[{"T":"If%20you%20have%20more%20than%20three%20qualifying%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":17.158,"w":16.943000000000005,"clr":-1,"A":"left","R":[{"T":"children%2C%20you%20only%20have%20to%20list%20three%20to%20get%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":17.72,"w":8.555000000000001,"clr":-1,"A":"left","R":[{"T":"the%20maximum%20credit.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":37.175,"y":15.745999999999999,"w":15.21200000000001,"clr":-1,"A":"left","R":[{"T":"First%20name%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.212,"y":15.745999999999999,"w":15.21200000000001,"clr":-1,"A":"left","R":[{"T":"First%20name%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.25,"y":15.745999999999999,"w":15.21200000000001,"clr":-1,"A":"left","R":[{"T":"First%20name%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20Last%20name%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":18.879,"w":7.295999999999999,"clr":-1,"A":"left","R":[{"T":"2%20%20%20Child's%20SSN%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":8.415,"y":19.814,"w":17.026000000000003,"clr":-1,"A":"left","R":[{"T":"The%20child%20must%20have%20an%20SSN%20as%20defined%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":20.439,"w":17.277000000000005,"clr":-1,"A":"left","R":[{"T":"the%20instructions%20for%20Form%201040A%2C%20lines%2038a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":21.064,"w":16.971000000000004,"clr":-1,"A":"left","R":[{"T":"and%2038b%2C%20or%20Form%201040%2C%20lines%2064a%20and%2064b%2C","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":21.689,"w":15.054000000000002,"clr":-1,"A":"left","R":[{"T":"unless%20the%20child%20was%20born%20and%20died%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":22.314,"w":16.331000000000003,"clr":-1,"A":"left","R":[{"T":"2013.%20If%20your%20child%20was%20born%20and%20died%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":22.939,"w":14.915000000000004,"clr":-1,"A":"left","R":[{"T":"2013%20and%20did%20not%20have%20an%20SSN%2C%20enter%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":23.564,"w":16.080000000000005,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CDied%E2%80%9D%20on%20this%20line%20and%20attach%20a%20copy%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":24.188,"w":13.497000000000007,"clr":-1,"A":"left","R":[{"T":"the%20child%E2%80%99s%20birth%20certificate%2C%20death%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":24.813,"w":15.857000000000008,"clr":-1,"A":"left","R":[{"T":"certificate%2C%20or%20hospital%20medical%20records.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":26.26,"w":11.019000000000002,"clr":-1,"A":"left","R":[{"T":"3%20%20%20Child's%20year%20of%20birth%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":36.877,"y":26.84,"w":2.333,"clr":-1,"A":"left","R":[{"T":"Year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#5fa3d8","x":36.327,"y":27.643,"w":7.389,"clr":-1,"A":"left","R":[{"T":"If%20born%20after%201994%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#5fa3d8","x":46.487,"y":27.643,"w":1.556,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[2,11,1,0]}]},{"oc":"#5fa3d8","x":48.627,"y":27.643,"w":5.7780000000000005,"clr":-1,"A":"left","R":[{"T":"%20the%20child%20was%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#5fa3d8","x":36.327,"y":28.08,"w":14.832,"clr":-1,"A":"left","R":[{"T":"younger%20than%20you%20(or%20your%20spouse%2C%20if%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#5fa3d8","x":36.327,"y":28.518,"w":14.334000000000001,"clr":-1,"A":"left","R":[{"T":"filing%20jointly)%2C%20skip%20lines%204a%20and%204b%3B%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#5fa3d8","x":36.327,"y":28.955,"w":5.0280000000000005,"clr":-1,"A":"left","R":[{"T":"go%20to%20line%205.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":57.563,"y":26.84,"w":2.333,"clr":-1,"A":"left","R":[{"T":"Year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#5fa3d8","x":57.365,"y":27.643,"w":7.139,"clr":-1,"A":"left","R":[{"T":"If%20born%20after%201994","S":-1,"TS":[0,11,0,0]}]},{"oc":"#5fa3d8","x":67.181,"y":27.643,"w":1.806,"clr":-1,"A":"left","R":[{"T":"%20and","S":-1,"TS":[2,11,1,0]}]},{"oc":"#5fa3d8","x":69.664,"y":27.643,"w":5.7780000000000005,"clr":-1,"A":"left","R":[{"T":"%20the%20child%20was%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#5fa3d8","x":57.365,"y":28.08,"w":14.832,"clr":-1,"A":"left","R":[{"T":"younger%20than%20you%20(or%20your%20spouse%2C%20if%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#5fa3d8","x":57.365,"y":28.518,"w":14.334000000000001,"clr":-1,"A":"left","R":[{"T":"filing%20jointly)%2C%20skip%20lines%204a%20and%204b%3B%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#5fa3d8","x":57.365,"y":28.955,"w":5.0280000000000005,"clr":-1,"A":"left","R":[{"T":"go%20to%20line%205.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":78.6,"y":26.841,"w":2.333,"clr":-1,"A":"left","R":[{"T":"Year%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#5fa3d8","x":78.402,"y":27.643,"w":7.389,"clr":-1,"A":"left","R":[{"T":"If%20born%20after%201994%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#5fa3d8","x":88.562,"y":27.643,"w":1.806,"clr":-1,"A":"left","R":[{"T":"and%20","S":-1,"TS":[2,11,1,0]}]},{"oc":"#5fa3d8","x":91.045,"y":27.643,"w":5.5280000000000005,"clr":-1,"A":"left","R":[{"T":"the%20child%20was%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#5fa3d8","x":78.402,"y":28.08,"w":14.832,"clr":-1,"A":"left","R":[{"T":"younger%20than%20you%20(or%20your%20spouse%2C%20if%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#5fa3d8","x":78.402,"y":28.518,"w":14.334000000000001,"clr":-1,"A":"left","R":[{"T":"filing%20jointly)%2C%20skip%20lines%204a%20and%204b%3B%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#5fa3d8","x":78.402,"y":28.955,"w":5.0280000000000005,"clr":-1,"A":"left","R":[{"T":"go%20to%20line%205.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":30.041,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":7.177,"y":30.041,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":8.415,"y":30.042,"w":16.385000000000005,"clr":-1,"A":"left","R":[{"T":"Was%20the%20child%20under%20age%2024%20at%20the%20end%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":30.604,"w":16.942,"clr":-1,"A":"left","R":[{"T":"2013%2C%20a%20student%2C%20and%20younger%20than%20you%20(or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":31.167,"w":12.222000000000005,"clr":-1,"A":"left","R":[{"T":"your%20spouse%2C%20if%20filing%20jointly)%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.643,"y":30.559,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#5fa3d8","x":36.671,"y":31.511000000000003,"w":6,"clr":-1,"A":"left","R":[{"T":"Go%20to%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#5fa3d8","x":36.671,"y":32.199,"w":2.806,"clr":-1,"A":"left","R":[{"T":"line%205.%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":50.543,"y":30.559,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#5fa3d8","x":47.465,"y":31.519,"w":5.806,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%204b.%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":61.681,"y":30.559,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#5fa3d8","x":57.708,"y":31.511000000000003,"w":5,"clr":-1,"A":"left","R":[{"T":"Go%20to%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#5fa3d8","x":57.708,"y":32.199,"w":2.806,"clr":-1,"A":"left","R":[{"T":"line%205.%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":71.629,"y":30.559,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#5fa3d8","x":68.467,"y":31.519,"w":5.806,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%204b.%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":82.761,"y":30.559,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#5fa3d8","x":78.746,"y":31.511000000000003,"w":5,"clr":-1,"A":"left","R":[{"T":"Go%20to%20%20%20%20%20%20%20%20%20%20%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#5fa3d8","x":78.746,"y":32.199,"w":2.806,"clr":-1,"A":"left","R":[{"T":"line%205.%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":92.618,"y":30.559,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#5fa3d8","x":89.505,"y":31.519,"w":5.806,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%204b.%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":7.177,"y":33.322,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":8.415,"y":33.292,"w":15.498000000000006,"clr":-1,"A":"left","R":[{"T":"Was%20the%20child%20permanently%20and%20totally%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":33.854,"w":13.720000000000004,"clr":-1,"A":"left","R":[{"T":"disabled%20during%20any%20part%20of%202013%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.643,"y":34.246,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#5fa3d8","x":36.877,"y":35.011,"w":3.75,"clr":-1,"A":"left","R":[{"T":"Go%20to%20%20%20%20%20%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#5fa3d8","x":36.877,"y":35.698,"w":2.556,"clr":-1,"A":"left","R":[{"T":"line%205.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":50.389,"y":34.246,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":45.119,"y":35.06,"w":7.444,"clr":-1,"A":"left","R":[{"T":"The%20child%20is%20not%20a%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.377,"y":35.685,"w":6.861000000000001,"clr":-1,"A":"left","R":[{"T":"qualifying%20child.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.423,"y":34.246,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#5fa3d8","x":57.914,"y":35.011,"w":3.25,"clr":-1,"A":"left","R":[{"T":"Go%20to%20%20%20%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#5fa3d8","x":57.914,"y":35.698,"w":2.556,"clr":-1,"A":"left","R":[{"T":"line%205.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":72.818,"y":34.246,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":66.156,"y":35.06,"w":7.444,"clr":-1,"A":"left","R":[{"T":"The%20child%20is%20not%20a%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":66.415,"y":35.685,"w":6.861000000000001,"clr":-1,"A":"left","R":[{"T":"qualifying%20child.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.466,"y":34.246,"w":2.0570000000000004,"clr":-1,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"oc":"#5fa3d8","x":78.953,"y":35.011,"w":3.25,"clr":-1,"A":"left","R":[{"T":"Go%20to%20%20%20%20","S":-1,"TS":[2,12,1,0]}]},{"oc":"#5fa3d8","x":78.953,"y":35.698,"w":2.556,"clr":-1,"A":"left","R":[{"T":"line%205.","S":-1,"TS":[2,12,1,0]}]},{"oc":"#221f1f","x":93.856,"y":34.246,"w":1.611,"clr":-1,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":87.193,"y":35.06,"w":7.444,"clr":-1,"A":"left","R":[{"T":"The%20child%20is%20not%20a%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":87.452,"y":35.685,"w":6.861000000000001,"clr":-1,"A":"left","R":[{"T":"qualifying%20child.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":36.76,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":8.415,"y":36.76,"w":13.074000000000005,"clr":-1,"A":"left","R":[{"T":"Child's%20relationship%20to%20you%20%20","S":-1,"TS":[0,13.5,1,0]}]},{"oc":"#221f1f","x":8.415,"y":37.635,"w":16.302000000000007,"clr":-1,"A":"left","R":[{"T":"(for%20example%2C%20son%2C%20daughter%2C%20grandchild%2C%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":8.415,"y":38.198,"w":13.246000000000006,"clr":-1,"A":"left","R":[{"T":"niece%2C%20nephew%2C%20foster%20child%2C%20etc.)%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":5.94,"y":39.447,"w":15.726000000000004,"clr":-1,"A":"left","R":[{"T":"6%20%20%20Number%20of%20months%20child%20lived%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":8.174,"y":40.072,"w":13.947000000000001,"clr":-1,"A":"left","R":[{"T":"with%20you%20in%20the%20United%20States%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":8.174,"y":40.697,"w":5.891,"clr":-1,"A":"left","R":[{"T":"during%202013%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":8.415,"y":41.973,"w":16.959000000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20the%20child%20lived%20with%20you%20for%20more%20than%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":42.535,"w":14.833000000000002,"clr":-1,"A":"left","R":[{"T":"half%20of%202013%20but%20less%20than%207%20months%2C%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":43.098,"w":4.137,"clr":-1,"A":"left","R":[{"T":"enter%20%E2%80%9C7.%E2%80%9D%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":43.885,"w":17.153000000000002,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20the%20child%20was%20born%20or%20died%20in%202013%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":44.448,"w":16.997000000000003,"clr":-1,"A":"left","R":[{"T":"your%20home%20was%20the%20child%E2%80%99s%20home%20for%20more%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":45.01,"w":15.136000000000003,"clr":-1,"A":"left","R":[{"T":"than%20half%20the%20time%20he%20or%20she%20was%20alive%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":45.573,"w":9.748000000000001,"clr":-1,"A":"left","R":[{"T":"during%202013%2C%20enter%20%E2%80%9C12.%E2%80%9D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.252,"y":44.09,"w":3.632,"clr":-1,"A":"left","R":[{"T":"months%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.671,"y":44.76,"w":10.888,"clr":-1,"A":"left","R":[{"T":"Do%20not%20enter%20more%20than%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.671,"y":45.448,"w":3.3890000000000002,"clr":-1,"A":"left","R":[{"T":"months.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":70.29,"y":44.09,"w":3.632,"clr":-1,"A":"left","R":[{"T":"months%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.709,"y":44.76,"w":10.888,"clr":-1,"A":"left","R":[{"T":"Do%20not%20enter%20more%20than%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.709,"y":45.448,"w":3.3890000000000002,"clr":-1,"A":"left","R":[{"T":"months.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":91.327,"y":44.09,"w":3.632,"clr":-1,"A":"left","R":[{"T":"months%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.746,"y":44.76,"w":10.888,"clr":-1,"A":"left","R":[{"T":"Do%20not%20enter%20more%20than%2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.746,"y":45.448,"w":3.3890000000000002,"clr":-1,"A":"left","R":[{"T":"months.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":46.296,"w":24.062000000000005,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":5.94,"y":46.858,"w":9.446000000000002,"clr":-1,"A":"left","R":[{"T":"return%20instructions.%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":54.561,"y":46.251,"w":7.633000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2013339M","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.621,"y":46.296,"w":19.341000000000005,"clr":-1,"A":"left","R":[{"T":"Schedule%20EIC%20(Form%201040A%20or%201040)%202013","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":22.387,"y":4.768,"w":49.56999999999993,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Schedule%20EIC%20(Form%201040A%20or%201040)%20and%20its%20instructions%20is%20at%20www.irs.gov%2Fscheduleeic","S":-1,"TS":[0,8.68,1,0]}]},{"oc":"#221f1f","x":13.33,"y":11.474,"w":58.59500000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20take%20the%20EIC%20even%20though%20you%20are%20not%20eligible%2C%20you%20may%20not%20be%20allowed%20to%20take%20the%20credit%20for%20up%20to%2010%20years.%20See%20the%20instructions%20for%20details.","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":13.364,"y":12.974,"w":52.98999999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20It%20will%20take%20us%20longer%20to%20process%20your%20return%20and%20issue%20your%20refund%20if%20you%20do%20not%20fill%20in%20all%20lines%20that%20apply%20for%20each%20qualifying%20child.%20","S":3,"TS":[0,12,0,0]}]},{"x":0.09399999999999997,"y":48.212,"w":34.008,"clr":0,"A":"left","R":[{"T":"Niece%20","S":-1,"TS":[0,15,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8617,"AM":1024,"x":6.571,"y":6.626,"w":71.45,"h":0.856},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8618,"AM":1024,"x":81.564,"y":6.687,"w":17.719,"h":0.862},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A144_L1A_1_","EN":0},"TI":8619,"AM":0,"x":36.151,"y":18.062,"w":9.452,"h":0.833,"TU":"Line 1. Child 1 first name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A148_L1C_1_","EN":0},"TI":8620,"AM":0,"x":46.09,"y":18.023,"w":10.622,"h":0.85,"TU":"Last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A144_L1A_2_","EN":0},"TI":8621,"AM":0,"x":57.149,"y":18.057,"w":9.984,"h":0.833,"TU":"Line 1. Child 2. First name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A148_L1C_2_","EN":0},"TI":8622,"AM":0,"x":67.779,"y":18.063,"w":10.003,"h":0.833,"TU":"Last name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A144_L1A_3_","EN":0},"TI":8623,"AM":0,"x":78.143,"y":18.123,"w":10.744,"h":0.833,"TU":"Line 1. Child 3. First name."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A148_L1C_3_","EN":0},"TI":8624,"AM":0,"x":89.157,"y":18.102,"w":10.031,"h":0.833,"TU":"Last name."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A5_CHSSN_1_","EN":0},"TI":8625,"AM":0,"x":36.135,"y":24.907,"w":20.563,"h":0.893,"TU":"Line 2. Child's SSN."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A5_CHSSN_2_","EN":0},"TI":8626,"AM":0,"x":57.172,"y":24.921,"w":20.563,"h":0.865,"TU":"Line 2. Child's SSN."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A5_CHSSN_3_","EN":0},"TI":8627,"AM":0,"x":78.192,"y":24.996,"w":20.541,"h":0.877,"TU":"Line 2. Child's SSN."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A8_BIRTHYR_1_","EN":0},"TI":8628,"AM":0,"x":41.947,"y":26.779,"w":13.857,"h":0.833,"TU":"Line 3. Child's year of birth.","MV":"yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A8_BIRTHYR_2_","EN":0},"TI":8629,"AM":0,"x":61.558,"y":26.73,"w":13.857,"h":0.833,"TU":"Line 3. Child's year of birth.","MV":"yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A8_BIRTHYR_3_","EN":0},"TI":8630,"AM":0,"x":82.691,"y":26.681,"w":13.907,"h":0.893,"TU":"Line 3. Child's year of birth.","MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A9_L5_1_","EN":0},"TI":8643,"AM":0,"x":37.068,"y":37.651,"w":18.395,"h":1.632,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A9_L5_2_","EN":0},"TI":8644,"AM":0,"x":58.41,"y":37.651,"w":18.395,"h":1.632,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece ","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"]}},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A9_L5_3_","EN":0},"TI":8645,"AM":0,"x":78.867,"y":37.689,"w":18.395,"h":1.632,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece ","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Niece","Other","None"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A11_L6_1_","EN":0},"TI":8646,"AM":0,"x":42.11,"y":44.041,"w":6.291,"h":0.916,"TU":"Line 6. Number of months child lived with you in the United States during 2013."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A11_L6_2_","EN":0},"TI":8647,"AM":0,"x":62.943,"y":44.073,"w":6.291,"h":0.889,"TU":"Line 6. Number of months child lived with you in the United States during 2013."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A11_L6_3_","EN":0},"TI":8648,"AM":0,"x":84.045,"y":44.124,"w":6.291,"h":0.861,"TU":"Line 6. Number of months child lived with you in the United States during 2013."}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STU1Y","EN":0},"TI":8631,"AM":0,"x":37.084,"y":30.332,"w":2.661,"h":0.968,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STU1N","EN":0},"TI":8632,"AM":0,"x":46.984,"y":30.332,"w":2.681,"h":0.975,"checked":false}],"id":{"Id":"STU1RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STU2Y","EN":0},"TI":8633,"AM":0,"x":58.121,"y":30.332,"w":2.661,"h":0.968,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STU2N","EN":0},"TI":8634,"AM":0,"x":68.021,"y":30.332,"w":2.681,"h":0.975,"checked":false}],"id":{"Id":"STU2RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STU3Y","EN":0},"TI":8635,"AM":0,"x":79.159,"y":30.332,"w":2.661,"h":0.968,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STU3N","EN":0},"TI":8636,"AM":0,"x":89.059,"y":30.332,"w":2.661,"h":0.968,"checked":false}],"id":{"Id":"STU3RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DIS1Y","EN":0},"TI":8637,"AM":0,"x":37.084,"y":33.895,"w":2.661,"h":0.968,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DIS1N","EN":0},"TI":8638,"AM":0,"x":46.984,"y":33.895,"w":2.681,"h":0.975,"checked":false}],"id":{"Id":"BX161RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DIS2Y","EN":0},"TI":8639,"AM":0,"x":58.121,"y":33.895,"w":2.661,"h":0.968,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DIS2N","EN":0},"TI":8640,"AM":0,"x":69.259,"y":33.895,"w":2.681,"h":0.975,"checked":false}],"id":{"Id":"BX162RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DIS3Y","EN":0},"TI":8641,"AM":0,"x":79.159,"y":33.895,"w":2.661,"h":0.968,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DIS3N","EN":0},"TI":8642,"AM":0,"x":90.296,"y":33.895,"w":2.661,"h":0.968,"checked":false}],"id":{"Id":"BX163RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Earned Income Credit ","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131231162422-08'00'","ModDate":"D:20131231162603-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":5.983,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":26.909,"y":3.108,"w":6,"l":1.175,"oc":"#9a9d9f"},{"x":26.117,"y":6.001,"w":3,"l":1.875,"oc":"#8dd8f8"},{"x":26.18,"y":3.65,"w":3,"l":1.25,"oc":"#8dd8f8"},{"x":27.43,"y":4.213,"w":3,"l":0.563,"oc":"#8dd8f8"},{"x":24.305,"y":4.492,"w":3,"l":1.875,"oc":"#5fa3d8"},{"x":24.305,"y":2.242,"w":3,"l":1.313,"oc":"#5fa3d8"},{"x":25.617,"y":2.805,"w":3,"l":0.563,"oc":"#5fa3d8"},{"x":30.57,"y":3.001,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.57,"y":5.983,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":7.635,"y":6.001,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":2.235,"y":7.621,"w":0.75,"l":27.031,"oc":"#221f1f"},{"x":29.235,"y":7.621,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":2.235,"y":11.371,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":14.371,"w":4.5,"l":10.831,"oc":"#221f1f"},{"x":2.235,"y":15.871,"w":4.5,"l":10.831,"oc":"#221f1f"},{"x":13.035,"y":14.371,"w":4.5,"l":7.681,"oc":"#221f1f"},{"x":13.035,"y":15.871,"w":4.5,"l":7.681,"oc":"#221f1f"},{"x":20.685,"y":14.371,"w":4.5,"l":7.681,"oc":"#221f1f"},{"x":20.685,"y":15.871,"w":4.5,"l":7.681,"oc":"#221f1f"},{"x":28.335,"y":14.371,"w":4.5,"l":7.681,"oc":"#221f1f"},{"x":28.335,"y":15.871,"w":4.5,"l":7.681,"oc":"#221f1f"},{"x":3.135,"y":18.874,"w":0.75,"l":9.931,"oc":"#221f1f"},{"x":13.035,"y":18.871,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":20.685,"y":18.871,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":28.335,"y":18.871,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":3.135,"y":26.251,"w":0.75,"l":9.931,"oc":"#221f1f"},{"x":13.035,"y":26.251,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":20.685,"y":26.251,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":28.335,"y":26.251,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":2.235,"y":30.001,"w":4.5,"l":10.831,"oc":"#221f1f"},{"x":15.285,"y":27.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":16.676,"y":27.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.985,"y":27.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":19.335,"y":27.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":13.035,"y":30.001,"w":4.5,"l":7.681,"oc":"#221f1f"},{"x":22.485,"y":27.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":23.835,"y":27.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":25.185,"y":27.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":26.535,"y":27.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":20.685,"y":30.001,"w":4.5,"l":7.681,"oc":"#221f1f"},{"x":30.135,"y":27.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":31.485,"y":27.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":32.835,"y":27.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":34.185,"y":27.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":28.335,"y":30.001,"w":4.5,"l":7.681,"oc":"#221f1f"},{"x":3.135,"y":33.376,"w":0.75,"l":9.931,"oc":"#221f1f"},{"x":13.501,"y":31.407,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":13.501,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":13.035,"y":33.376,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":17.101,"y":31.407,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":17.101,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":17.085,"y":33.376,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":21.151,"y":31.407,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":21.151,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":20.685,"y":33.376,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":24.751,"y":31.407,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":24.751,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":24.735,"y":33.376,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.801,"y":31.407,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":28.801,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":28.335,"y":33.376,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":32.401,"y":31.407,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":32.401,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":32.385,"y":33.376,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":13.501,"y":34.97,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":13.501,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":17.101,"y":34.97,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":17.101,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":21.151,"y":34.97,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":21.151,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":25.201,"y":34.97,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":25.201,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":28.801,"y":34.97,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":28.801,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":32.851,"y":34.97,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":32.851,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":2.235,"y":36.751,"w":4.5,"l":0.931,"oc":"#221f1f"},{"x":3.135,"y":36.751,"w":4.5,"l":9.931,"oc":"#221f1f"},{"x":3.135,"y":39.376,"w":0.75,"l":9.931,"oc":"#221f1f"},{"x":13.035,"y":36.751,"w":4.5,"l":7.681,"oc":"#221f1f"},{"x":13.035,"y":39.376,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":20.685,"y":36.751,"w":4.5,"l":7.681,"oc":"#221f1f"},{"x":20.685,"y":39.376,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":28.335,"y":36.751,"w":4.5,"l":7.681,"oc":"#221f1f"},{"x":28.335,"y":39.376,"w":0.75,"l":7.681,"oc":"#221f1f"},{"x":15.285,"y":45.001,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.935,"y":45.001,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.585,"y":45.001,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":46.501,"w":1.5,"l":13.531,"oc":"#221f1f"},{"x":15.735,"y":46.501,"w":1.5,"l":11.731,"oc":"#221f1f"},{"x":27.435,"y":46.501,"w":1.5,"l":8.581,"oc":"#221f1f"}],"VLines":[{"x":7.66,"y":2.217,"w":1.5,"l":2.315,"oc":"#221f1f"},{"x":7.651,"y":4.467,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":27.992,"y":4.213,"w":3,"l":1.688,"oc":"#8dd8f8"},{"x":26.117,"y":4.4,"w":3,"l":1.5,"oc":"#8dd8f8"},{"x":27.43,"y":3.65,"w":3,"l":0.563,"oc":"#8dd8f8"},{"x":26.18,"y":2.805,"w":3,"l":1.688,"oc":"#5fa3d8"},{"x":24.305,"y":2.242,"w":3,"l":2.25,"oc":"#5fa3d8"},{"x":25.617,"y":2.242,"w":3,"l":0.563,"oc":"#5fa3d8"},{"x":30.601,"y":2.235,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":2.967,"w":1.5,"l":2.031,"oc":"#221f1f"},{"x":30.601,"y":4.467,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":29.251,"y":6.09,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":13.051,"y":15.855,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":20.701,"y":15.855,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":28.351,"y":15.855,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":13.051,"y":18.855,"w":0.75,"l":7.412,"oc":"#221f1f"},{"x":20.701,"y":18.855,"w":0.75,"l":7.412,"oc":"#221f1f"},{"x":28.351,"y":18.855,"w":0.75,"l":7.412,"oc":"#221f1f"},{"x":13.051,"y":26.235,"w":0.75,"l":3.859,"oc":"#221f1f"},{"x":20.701,"y":27.736,"w":0.75,"l":2.359,"oc":"#221f1f"},{"x":20.701,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.351,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.351,"y":27.736,"w":0.75,"l":2.359,"oc":"#221f1f"},{"x":13.051,"y":29.986,"w":0.75,"l":3.406,"oc":"#221f1f"},{"x":14.438,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":13.501,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":20.701,"y":29.986,"w":0.75,"l":1.906,"oc":"#221f1f"},{"x":18.038,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":17.101,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":20.701,"y":31.86,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.088,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":21.151,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":28.351,"y":29.986,"w":0.75,"l":1.906,"oc":"#221f1f"},{"x":25.688,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":24.751,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":28.351,"y":31.86,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.738,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":28.801,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":33.338,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":32.401,"y":30.47,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":13.051,"y":33.361,"w":0.75,"l":3.406,"oc":"#221f1f"},{"x":14.438,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":13.501,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":20.701,"y":33.361,"w":0.75,"l":1.906,"oc":"#221f1f"},{"x":18.038,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":17.101,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":20.701,"y":35.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.088,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":21.151,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":28.351,"y":33.361,"w":0.75,"l":1.906,"oc":"#221f1f"},{"x":26.138,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":25.201,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":28.351,"y":35.236,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.738,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":28.801,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":33.788,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":32.851,"y":34.032,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":13.051,"y":36.657,"w":0.75,"l":2.734,"oc":"#221f1f"},{"x":20.701,"y":36.657,"w":0.75,"l":2.734,"oc":"#221f1f"},{"x":28.351,"y":36.657,"w":0.75,"l":2.734,"oc":"#221f1f"},{"x":13.051,"y":39.361,"w":0.75,"l":2.656,"oc":"#221f1f"},{"x":13.051,"y":41.986,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":13.051,"y":44.236,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":20.701,"y":39.361,"w":0.75,"l":5.656,"oc":"#221f1f"},{"x":20.701,"y":44.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.351,"y":39.361,"w":0.75,"l":5.656,"oc":"#221f1f"},{"x":28.351,"y":44.986,"w":0.75,"l":1.531,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":11.746,"w":2.25,"h":2.25,"oc":"#5fa3d8"}],"Texts":[{"x":2.01,"y":1.992,"w":8.001,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"SCHEDULE EIC ","S":10,"TS":[0,14,1,0]}]},{"x":2.01,"y":2.677,"w":10.448,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(Form 1040A or 1040) ","S":-1,"TS":[0,11,1,0]}]},{"x":2.001,"y":4.508,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":2.001,"y":5.008,"w":13.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99) ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":12.651,"y":2.189,"w":10.336,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Earned Income Credit","S":11,"TS":[0,18,1,0]}]},{"x":12.82,"y":3.028,"w":12.391,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Qualifying Child Information","S":-1,"TS":[0,13,0,0]}]},{"x":7.526,"y":3.8070000000000004,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":7.901,"y":3.8070000000000004,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,9,0,0]}]},{"x":8.006,"y":3.806,"w":37.4,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Complete and attach to Form 1040A or 1040 only if you have a qualifying child.","S":-1,"TS":[0,9.8,1,0]}]},{"x":24.248,"y":2.588,"w":3.187,"oc":"#5fa3d8","sw":0.36196875,"A":"left","R":[{"T":"1040A ","S":-1,"TS":[0,11,0,0]}]},{"x":24.051,"y":2.864,"w":5.56,"oc":"#5fa3d8","sw":0.36196875,"A":"left","R":[{"T":". . . . . . . . . . ","S":1,"TS":[0,8,0,0]}]},{"x":24.409,"y":3.513,"w":2.502,"oc":"#5fa3d8","sw":0.36196875,"A":"left","R":[{"T":"1040 ","S":-1,"TS":[0,11,0,0]}]},{"x":26.145,"y":4.418,"w":1.962,"oc":"#8dd8f8","sw":0.36196875,"A":"left","R":[{"T":"EIC ","S":-1,"TS":[0,15,0,0]}]},{"x":26.047,"y":2.497,"w":1,"oc":"#9a9d9f","sw":0.32553125,"A":"left","R":[{"T":"`","S":-1,"TS":[0,13,0,0]}]},{"x":31.02,"y":1.9729999999999999,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.426,"y":3.532,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.506,"y":3.532,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":31.101,"y":4.671,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.101,"y":5.117,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":34.002,"y":5.117,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"43","S":10,"TS":[0,14,1,0]}]},{"x":7.526,"y":4.768,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":7.901,"y":4.768,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,7.62,0,0]}]},{"x":25.547,"y":4.768,"w":0.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":".","S":-1,"TS":[3,8.68,0,0]}]},{"x":25.646,"y":4.768,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,8.68,0,0]}]},{"x":2.001,"y":5.773,"w":11.559,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name(s) shown on return ","S":2,"TS":[0,10,0,0]}]},{"x":29.251,"y":5.805,"w":13.727,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Your social security number ","S":8,"TS":[0,10,1,0]}]},{"x":2.001,"y":7.9830000000000005,"w":8.779,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Before you begin: ","S":11,"TS":[0,18,1,0]}]},{"x":10.551,"y":7.505000000000001,"w":44.986,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• See the instructions for Form 1040A, lines 38a and 38b, or Form 1040, lines 64a and 64b, to make ","S":3,"TS":[0,12,0,0]}]},{"x":10.926,"y":8.192,"w":3.666,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"sure that ","S":3,"TS":[0,12,0,0]}]},{"x":12.988,"y":8.192,"w":1.222,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(a)","S":9,"TS":[0,12,1,0]}]},{"x":13.644,"y":8.192,"w":10.831,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" you can take the EIC, and ","S":3,"TS":[0,12,0,0]}]},{"x":19.736,"y":8.192,"w":1.277,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(b)","S":9,"TS":[0,12,1,0]}]},{"x":20.424,"y":8.192,"w":11.693,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" you have a qualifying child. ","S":3,"TS":[0,12,0,0]}]},{"x":10.551,"y":8.911,"w":49.092,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• Be sure the child’s name on line 1 and social security number (SSN) on line 2 agree with the child’s social security card. ","S":-1,"TS":[0,11.1,0,0]}]},{"x":10.926,"y":9.599,"w":47.602,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Otherwise, at the time we process your return, we may reduce or disallow your EIC. If the name or SSN on the child’s ","S":-1,"TS":[0,11.1,0,0]}]},{"x":10.926,"y":10.286,"w":37.717,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"social security card is not correct, call the Social Security Administration at 1-800-772-1213. ","S":-1,"TS":[0,11.1,0,0]}]},{"x":2.111,"y":12.534,"w":0.892,"clr":1,"sw":0.32553125,"A":"left","R":[{"T":"F","S":-1,"TS":[0,39.4001,0,0]}]},{"x":2.906,"y":12.47,"w":0.32,"oc":"#5fa3d8","sw":0.390625,"A":"left","R":[{"T":"!","S":-1,"TS":[2,25,0,0]}]},{"x":2.152,"y":13.067,"w":4.796,"clr":1,"sw":0.32553125,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,9.5,0,0]}]},{"x":35.67,"y":11.474,"w":0.25,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":" ","S":15,"TS":[0,12,0,1]}]},{"x":2.001,"y":14.688,"w":13.307,"oc":"#5fa3d8","sw":0.36196875,"A":"left","R":[{"T":"Qualifying Child Information","S":-1,"TS":[0,16,0,0]}]},{"x":15.493,"y":14.587,"w":3.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Child 1 ","S":-1,"TS":[0,15,1,0]}]},{"x":23.143,"y":14.587,"w":3.612,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Child 2 ","S":-1,"TS":[0,15,1,0]}]},{"x":30.793,"y":14.587,"w":3.334,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Child 3","S":-1,"TS":[0,15,1,0]}]},{"x":2.001,"y":15.879999999999999,"w":7.852,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1 Child's name ","S":10,"TS":[0,14,1,0]}]},{"x":2.901,"y":16.595,"w":15.691,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"If you have more than three qualifying ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":17.158,"w":16.943,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"children, you only have to list three to get ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":17.72,"w":8.555,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"the maximum credit. ","S":3,"TS":[0,12,0,0]}]},{"x":13.359,"y":15.745999999999999,"w":15.212,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"First name Last name ","S":2,"TS":[0,10,0,0]}]},{"x":21.009,"y":15.745999999999999,"w":15.212,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"First name Last name ","S":2,"TS":[0,10,0,0]}]},{"x":28.659,"y":15.745999999999999,"w":15.212,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"First name Last name ","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":18.879,"w":7.296,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2 Child's SSN ","S":10,"TS":[0,14,1,0]}]},{"x":2.901,"y":19.814,"w":17.026,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"The child must have an SSN as defined in ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":20.439,"w":17.277,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"the instructions for Form 1040A, lines 38a ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":21.064,"w":16.971,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"and 38b, or Form 1040, lines 64a and 64b,","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":21.689,"w":15.054,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"unless the child was born and died in ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":22.314,"w":16.331,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2013. If your child was born and died in ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":22.939,"w":14.915,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2013 and did not have an SSN, enter ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":23.564,"w":16.08,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"“Died” on this line and attach a copy of ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":24.188,"w":13.497,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"the child’s birth certificate, death ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":24.813,"w":15.857,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"certificate, or hospital medical records. ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":26.26,"w":11.019,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3 Child's year of birth ","S":10,"TS":[0,14,1,0]}]},{"x":13.251,"y":26.84,"w":2.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Year ","S":3,"TS":[0,12,0,0]}]},{"x":13.051,"y":27.643,"w":7.389,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"If born after 1994 ","S":-1,"TS":[0,11,0,1]}]},{"x":16.745,"y":27.643,"w":1.556,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"and","S":-1,"TS":[2,11,1,1]}]},{"x":17.523,"y":27.643,"w":5.778,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":" the child was ","S":-1,"TS":[0,11,0,1]}]},{"x":13.051,"y":28.08,"w":14.832,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"younger than you (or your spouse, if ","S":-1,"TS":[0,11,0,1]}]},{"x":13.051,"y":28.518,"w":14.334,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"filing jointly), skip lines 4a and 4b; ","S":-1,"TS":[0,11,0,1]}]},{"x":13.051,"y":28.955,"w":5.028,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"go to line 5. ","S":-1,"TS":[0,11,0,1]}]},{"x":20.773,"y":26.84,"w":2.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Year ","S":3,"TS":[0,12,0,0]}]},{"x":20.701,"y":27.643,"w":7.139,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"If born after 1994","S":-1,"TS":[0,11,0,1]}]},{"x":24.27,"y":27.643,"w":1.806,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":" and","S":-1,"TS":[2,11,1,1]}]},{"x":25.173,"y":27.643,"w":5.778,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":" the child was ","S":-1,"TS":[0,11,0,1]}]},{"x":20.701,"y":28.08,"w":14.832,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"younger than you (or your spouse, if ","S":-1,"TS":[0,11,0,1]}]},{"x":20.701,"y":28.518,"w":14.334,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"filing jointly), skip lines 4a and 4b; ","S":-1,"TS":[0,11,0,1]}]},{"x":20.701,"y":28.955,"w":5.028,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"go to line 5. ","S":-1,"TS":[0,11,0,1]}]},{"x":28.423,"y":26.841,"w":2.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Year ","S":3,"TS":[0,12,0,0]}]},{"x":28.351,"y":27.643,"w":7.389,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"If born after 1994 ","S":-1,"TS":[0,11,0,1]}]},{"x":32.045,"y":27.643,"w":1.806,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"and ","S":-1,"TS":[2,11,1,1]}]},{"x":32.948,"y":27.643,"w":5.528,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"the child was ","S":-1,"TS":[0,11,0,1]}]},{"x":28.351,"y":28.08,"w":14.832,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"younger than you (or your spouse, if ","S":-1,"TS":[0,11,0,1]}]},{"x":28.351,"y":28.518,"w":14.334,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"filing jointly), skip lines 4a and 4b; ","S":-1,"TS":[0,11,0,1]}]},{"x":28.351,"y":28.955,"w":5.028,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"go to line 5. ","S":-1,"TS":[0,11,0,1]}]},{"x":2.001,"y":30.041,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4 ","S":9,"TS":[0,12,1,0]}]},{"x":2.451,"y":30.041,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a ","S":10,"TS":[0,14,1,0]}]},{"x":2.901,"y":30.042,"w":16.385,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Was the child under age 24 at the end of ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":30.604,"w":16.942,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2013, a student, and younger than you (or ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":31.167,"w":12.222,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"your spouse, if filing jointly)? ","S":3,"TS":[0,12,0,0]}]},{"x":14.62,"y":30.559,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"x":13.176,"y":31.511000000000003,"w":6,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"Go to ","S":-1,"TS":[2,12,1,1]}]},{"x":13.176,"y":32.199,"w":2.806,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"line 5. ","S":-1,"TS":[2,12,1,1]}]},{"x":18.22,"y":30.559,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"x":17.101,"y":31.519,"w":5.806,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"Go to line 4b. ","S":-1,"TS":[2,12,1,1]}]},{"x":22.27,"y":30.559,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"x":20.826,"y":31.511000000000003,"w":5,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"Go to ","S":-1,"TS":[2,12,1,1]}]},{"x":20.826,"y":32.199,"w":2.806,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"line 5. ","S":-1,"TS":[2,12,1,1]}]},{"x":25.888,"y":30.559,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"x":24.738,"y":31.519,"w":5.806,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"Go to line 4b. ","S":-1,"TS":[2,12,1,1]}]},{"x":29.936,"y":30.559,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"x":28.476,"y":31.511000000000003,"w":5,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"Go to ","S":-1,"TS":[2,12,1,1]}]},{"x":28.476,"y":32.199,"w":2.806,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"line 5. ","S":-1,"TS":[2,12,1,1]}]},{"x":33.52,"y":30.559,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"x":32.388,"y":31.519,"w":5.806,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"Go to line 4b. ","S":-1,"TS":[2,12,1,1]}]},{"x":2.451,"y":33.322,"w":0.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b ","S":10,"TS":[0,14,1,0]}]},{"x":2.901,"y":33.292,"w":15.498,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Was the child permanently and totally ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":33.854,"w":13.72,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"disabled during any part of 2013? ","S":3,"TS":[0,12,0,0]}]},{"x":14.62,"y":34.246,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"x":13.251,"y":35.011,"w":3.75,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"Go to ","S":-1,"TS":[2,12,1,1]}]},{"x":13.251,"y":35.698,"w":2.556,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"line 5.","S":-1,"TS":[2,12,1,1]}]},{"x":18.164,"y":34.246,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"x":16.248,"y":35.06,"w":7.444,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"The child is not a ","S":3,"TS":[0,12,0,0]}]},{"x":16.342,"y":35.685,"w":6.861,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"qualifying child. ","S":3,"TS":[0,12,0,0]}]},{"x":22.176,"y":34.246,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"x":20.901,"y":35.011,"w":3.25,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"Go to ","S":-1,"TS":[2,12,1,1]}]},{"x":20.901,"y":35.698,"w":2.556,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"line 5.","S":-1,"TS":[2,12,1,1]}]},{"x":26.32,"y":34.246,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"x":23.898,"y":35.06,"w":7.444,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"The child is not a ","S":3,"TS":[0,12,0,0]}]},{"x":23.992,"y":35.685,"w":6.861,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"qualifying child. ","S":3,"TS":[0,12,0,0]}]},{"x":29.829,"y":34.246,"w":2.057,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Yes.","S":9,"TS":[0,12,1,0]}]},{"x":28.551,"y":35.011,"w":3.25,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"Go to ","S":-1,"TS":[2,12,1,1]}]},{"x":28.551,"y":35.698,"w":2.556,"oc":"#5fa3d8","sw":0.32553125,"A":"left","R":[{"T":"line 5.","S":-1,"TS":[2,12,1,1]}]},{"x":33.97,"y":34.246,"w":1.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"No.","S":9,"TS":[0,12,1,0]}]},{"x":31.548,"y":35.06,"w":7.444,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"The child is not a ","S":3,"TS":[0,12,0,0]}]},{"x":31.642,"y":35.685,"w":6.861,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"qualifying child. ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":36.76,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5","S":10,"TS":[0,14,1,0]}]},{"x":2.901,"y":36.76,"w":13.074,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Child's relationship to you ","S":-1,"TS":[0,13.5,1,0]}]},{"x":2.901,"y":37.635,"w":16.302,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(for example, son, daughter, grandchild, ","S":-1,"TS":[0,11.55,0,0]}]},{"x":2.901,"y":38.198,"w":13.246,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"niece, nephew, foster child, etc.) ","S":-1,"TS":[0,11.55,0,0]}]},{"x":2.001,"y":39.447,"w":15.726,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6 Number of months child lived ","S":10,"TS":[0,14,1,0]}]},{"x":2.813,"y":40.072,"w":13.947,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"with you in the United States ","S":10,"TS":[0,14,1,0]}]},{"x":2.813,"y":40.697,"w":5.891,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"during 2013 ","S":10,"TS":[0,14,1,0]}]},{"x":2.901,"y":41.973,"w":16.959,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• If the child lived with you for more than ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":42.535,"w":14.833,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"half of 2013 but less than 7 months, ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":43.098,"w":4.137,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"enter “7.” ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":43.885,"w":17.153,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• If the child was born or died in 2013 and ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":44.448,"w":16.997,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"your home was the child’s home for more ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":45.01,"w":15.136,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"than half the time he or she was alive ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":45.573,"w":9.748,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"during 2013, enter “12.”","S":3,"TS":[0,12,0,0]}]},{"x":17.751,"y":44.09,"w":3.632,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"months ","S":3,"TS":[0,12,0,0]}]},{"x":13.176,"y":44.76,"w":10.888,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not enter more than 12 ","S":15,"TS":[0,12,0,1]}]},{"x":13.176,"y":45.448,"w":3.389,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"months. ","S":15,"TS":[0,12,0,1]}]},{"x":25.401,"y":44.09,"w":3.632,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"months ","S":3,"TS":[0,12,0,0]}]},{"x":20.826,"y":44.76,"w":10.888,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not enter more than 12 ","S":15,"TS":[0,12,0,1]}]},{"x":20.826,"y":45.448,"w":3.389,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"months. ","S":15,"TS":[0,12,0,1]}]},{"x":33.051,"y":44.09,"w":3.632,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"months ","S":3,"TS":[0,12,0,0]}]},{"x":28.476,"y":44.76,"w":10.888,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Do not enter more than 12 ","S":15,"TS":[0,12,0,1]}]},{"x":28.476,"y":45.448,"w":3.389,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"months. ","S":15,"TS":[0,12,0,1]}]},{"x":2.001,"y":46.296,"w":24.062,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see your tax ","S":-1,"TS":[0,11,1,0]}]},{"x":2.001,"y":46.858,"w":9.446,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"return instructions. ","S":-1,"TS":[0,11,1,0]}]},{"x":19.681,"y":46.251,"w":7.633,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 13339M","S":2,"TS":[0,10,0,0]}]},{"x":27.339,"y":46.296,"w":19.341,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule EIC (Form 1040A or 1040) 2013","S":8,"TS":[0,10,1,0]}]},{"x":35.751,"y":46.296,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":7.981999999999999,"y":4.768,"w":49.57,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Information about Schedule EIC (Form 1040A or 1040) and its instructions is at www.irs.gov/scheduleeic","S":-1,"TS":[0,8.68,1,0]}]},{"x":4.688,"y":11.474,"w":58.595,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• If you take the EIC even though you are not eligible, you may not be allowed to take the credit for up to 10 years. See the instructions for details.","S":-1,"TS":[0,11.46,0,1]}]},{"x":4.701,"y":12.974,"w":52.99,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"• It will take us longer to process your return and issue your refund if you do not fill in all lines that apply for each qualifying child. ","S":15,"TS":[0,12,0,1]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":951,"AM":1024,"x":2.389,"y":6.626,"w":25.982,"h":0.856},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":952,"AM":1024,"x":29.66,"y":6.687,"w":6.443,"h":0.862},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A144_L1A_1_","EN":0},"TI":953,"AM":0,"TU":"Line 1. Child 1 first name.","x":13.146,"y":18.062,"w":3.437,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A148_L1C_1_","EN":0},"TI":954,"AM":0,"TU":"Last name.","x":16.76,"y":18.023,"w":3.863,"h":0.85},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A144_L1A_2_","EN":0},"TI":955,"AM":0,"TU":"Line 1. Child 2. First name.","x":20.782,"y":18.057,"w":3.631,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A148_L1C_2_","EN":0},"TI":956,"AM":0,"TU":"Last name.","x":24.647,"y":18.063,"w":3.637,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A144_L1A_3_","EN":0},"TI":957,"AM":0,"TU":"Line 1. Child 3. First name.","x":28.415,"y":18.123,"w":3.907,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A148_L1C_3_","EN":0},"TI":958,"AM":0,"TU":"Last name.","x":32.421,"y":18.102,"w":3.648,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A5_CHSSN_1_","EN":0},"TI":959,"AM":0,"TU":"Line 2. Child's SSN.","x":13.14,"y":24.907,"w":7.477,"h":0.893},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A5_CHSSN_2_","EN":0},"TI":960,"AM":0,"TU":"Line 2. Child's SSN.","x":20.79,"y":24.921,"w":7.477,"h":0.865},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"A5_CHSSN_3_","EN":0},"TI":961,"AM":0,"TU":"Line 2. Child's SSN.","x":28.433,"y":24.996,"w":7.469,"h":0.877},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A8_BIRTHYR_1_","EN":0},"TI":962,"AM":0,"TU":"Line 3. Child's year of birth.","x":15.254,"y":26.779,"w":5.039,"h":0.833,"MV":"yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A8_BIRTHYR_2_","EN":0},"TI":963,"AM":0,"TU":"Line 3. Child's year of birth.","x":22.385,"y":26.73,"w":5.039,"h":0.833,"MV":"yyyy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A8_BIRTHYR_3_","EN":0},"TI":964,"AM":0,"TU":"Line 3. Child's year of birth.","x":30.069,"y":26.681,"w":5.057,"h":0.893,"MV":"yyyy"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A9_L5_1_","EN":0},"TI":977,"AM":0,"TU":"Line 5. Child's relationship to you.","x":13.479,"y":37.651,"w":6.371,"h":1.632,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A9_L5_2_","EN":0},"TI":978,"AM":0,"TU":"Line 5. Child's relationship to you.","x":21.24,"y":37.651,"w":6.371,"h":1.632,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A9_L5_3_","EN":0},"TI":979,"AM":0,"TU":"Line 5. Child's relationship to you.","x":28.679,"y":37.689,"w":6.371,"h":1.632,"PL":{"V":[" ","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"],"D":["No entry","Daughter","Son","Foster child","Stepchild","Stepsister","Stepbrother","Half Brother","Half Sister","Parent","Grandparent","Grandchild","Sister","Brother","Aunt","Uncle","Nephew","Other","None"]},"V":"No entry"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A11_L6_1_","EN":0},"TI":980,"AM":0,"TU":"Line 6. Number of months child lived with you in the United States during 2013.","x":15.313,"y":44.041,"w":2.287,"h":0.916},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A11_L6_2_","EN":0},"TI":981,"AM":0,"TU":"Line 6. Number of months child lived with you in the United States during 2013.","x":22.888,"y":44.073,"w":2.287,"h":0.889},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A11_L6_3_","EN":0},"TI":982,"AM":0,"TU":"Line 6. Number of months child lived with you in the United States during 2013.","x":30.562,"y":44.124,"w":2.287,"h":0.861}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STU1Y","EN":0},"TI":965,"AM":0,"TU":"Line 4a. Checkboxes.","x":13.485,"y":30.332,"w":0.968,"h":0.968,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STU1N","EN":0},"TI":966,"AM":0,"TU":"Line 4a. Checkboxes.","x":17.085,"y":30.332,"w":0.975,"h":0.975,"checked":false}],"id":{"Id":"STU1RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STU2Y","EN":0},"TI":967,"AM":0,"TU":"Go to","x":21.135,"y":30.332,"w":0.968,"h":0.968,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STU2N","EN":0},"TI":968,"AM":0,"TU":"Go to","x":24.735,"y":30.332,"w":0.975,"h":0.975,"checked":false}],"id":{"Id":"STU2RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STU3Y","EN":0},"TI":969,"AM":0,"TU":"Go to","x":28.785,"y":30.332,"w":0.968,"h":0.968,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STU3N","EN":0},"TI":970,"AM":0,"TU":"Go to","x":32.385,"y":30.332,"w":0.968,"h":0.968,"checked":false}],"id":{"Id":"STU3RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DIS1Y","EN":0},"TI":971,"AM":0,"TU":"Line 4b. Checkboxes.","x":13.485,"y":33.895,"w":0.968,"h":0.968,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DIS1N","EN":0},"TI":972,"AM":0,"TU":"Line 4b. Checkboxes.","x":17.085,"y":33.895,"w":0.975,"h":0.975,"checked":false}],"id":{"Id":"BX161RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DIS2Y","EN":0},"TI":973,"AM":0,"TU":"Go to","x":21.135,"y":33.895,"w":0.968,"h":0.968,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DIS2N","EN":0},"TI":974,"AM":0,"TU":"Go to","x":25.185,"y":33.895,"w":0.975,"h":0.975,"checked":false}],"id":{"Id":"BX162RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DIS3Y","EN":0},"TI":975,"AM":0,"TU":"Go to","x":28.785,"y":33.895,"w":0.968,"h":0.968,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"DIS3N","EN":0},"TI":976,"AM":0,"TU":"Go to","x":32.835,"y":33.895,"w":0.968,"h":0.968,"checked":false}],"id":{"Id":"BX163RB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHF.json b/test/data/fd/form/FSCHF.json index f2357dff..2c1c17b9 100755 --- a/test/data/fd/form/FSCHF.json +++ b/test/data/fd/form/FSCHF.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":84.066,"y":2.76,"w":0.75,"l":14.979},{"oc":"#221f1f","x":6.205,"y":5.251,"w":1.5,"l":70.566},{"oc":"#221f1f","x":6.205,"y":6.751,"w":0.75,"l":70.566},{"oc":"#221f1f","x":76.684,"y":5.251,"w":1.5,"l":22.361},{"oc":"#221f1f","x":76.684,"y":6.751,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.147,"y":8.251,"w":0.75,"l":31.152},{"oc":"#221f1f","x":36.955,"y":6.751,"w":3,"l":22.619},{"oc":"#221f1f","x":36.955,"y":8.251,"w":3,"l":22.619},{"oc":"#221f1f","x":59.359,"y":8.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":60.64,"y":8.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":60.64,"y":7.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":68.022,"y":8.251,"w":0.75,"l":8.748},{"oc":"#221f1f","x":68.408,"y":8.126,"w":0.75,"l":1.375},{"oc":"#221f1f","x":68.408,"y":7.626,"w":0.75,"l":1.375},{"oc":"#221f1f","x":76.684,"y":8.251,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.147,"y":10.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":11.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":59.359,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":12.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":12.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":11.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":13.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.272,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.984,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.359,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":15.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":15.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.272,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.984,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.359,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.272,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.984,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.359,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.272,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.984,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.359,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":18.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":18.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":19.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":20.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":20.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":22.501,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":23.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.159,"y":13.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.134,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":35.847,"y":24.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.222,"y":24.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.134,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":35.847,"y":25.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.222,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.134,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":35.847,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.222,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.134,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":35.847,"y":27.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.222,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.134,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":35.847,"y":28.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.222,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.134,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":35.847,"y":30.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.222,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.134,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":35.847,"y":30.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.222,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.134,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":35.847,"y":31.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.222,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.134,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":35.847,"y":32.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.222,"y":32.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.134,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":35.847,"y":33.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.222,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.134,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":35.847,"y":33.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.222,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.134,"y":33.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.134,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":35.847,"y":35.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.222,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":32.134,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":35.847,"y":36.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":48.222,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":25.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":27.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":27.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":28.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":29.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":29.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":30.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":30.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":30.749,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":30.749,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":30.749,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":31.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":31.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":31.499,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":56.884,"y":33.001,"w":0.75,"l":21.123},{"oc":"#221f1f","x":79.159,"y":33.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":33.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":33.001,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":56.884,"y":33.749,"w":0.75,"l":21.123},{"oc":"#221f1f","x":79.159,"y":33.749,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":33.749,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":33.749,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":56.884,"y":34.499,"w":0.75,"l":21.123},{"oc":"#221f1f","x":79.159,"y":34.499,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":34.499,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":34.499,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":56.884,"y":35.251,"w":0.75,"l":21.123},{"oc":"#221f1f","x":79.159,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":35.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":35.251,"w":0.75,"l":3.798},{"dsh":1,"oc":"#221f1f","x":56.884,"y":35.999,"w":0.75,"l":21.123},{"oc":"#221f1f","x":79.159,"y":35.999,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":35.999,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":35.999,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.19,"y":36.751,"w":1.2000000000000002,"l":92.813},{"oc":"#221f1f","x":79.159,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":37.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":37.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":38.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":38.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":41.251,"w":1.5,"l":44.636},{"oc":"#221f1f","x":50.697,"y":41.251,"w":1.5,"l":28.548},{"oc":"#221f1f","x":79.159,"y":41.251,"w":1.5,"l":19.886}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":1.531},{"oc":"#221f1f","x":21.04,"y":3.735,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.54},{"oc":"#221f1f","x":84.152,"y":2.735,"w":1.5,"l":2.532},{"oc":"#221f1f","x":84.152,"y":3.735,"w":1.5,"l":1.531},{"oc":"#221f1f","x":76.727,"y":5.22,"w":0.75,"l":1.547},{"oc":"#221f1f","x":59.402,"y":6.688,"w":3,"l":0.828},{"oc":"#221f1f","x":37.127,"y":6.688,"w":3,"l":0.828},{"oc":"#221f1f","x":59.402,"y":7.485,"w":3,"l":0.828},{"oc":"#221f1f","x":37.127,"y":7.485,"w":3,"l":0.828},{"oc":"#221f1f","x":44.552,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":47.027,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":49.502,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":51.977,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":54.452,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":56.927,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":62.015,"y":7.626,"w":0.75,"l":0.5},{"oc":"#221f1f","x":60.64,"y":7.626,"w":0.75,"l":0.5},{"oc":"#221f1f","x":69.783,"y":7.626,"w":0.75,"l":0.5},{"oc":"#221f1f","x":68.408,"y":7.626,"w":0.75,"l":0.5},{"oc":"#221f1f","x":76.727,"y":6.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":7.501,"w":0.75,"l":0.75},{"dsh":1,"oc":"#221f1f","x":81.677,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":84.152,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":86.627,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":89.102,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":91.577,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":94.052,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":96.527,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":99.002,"y":7.501,"w":0.75,"l":0.75},{"oc":"#221f1f","x":59.402,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":11.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":11.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":14.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":12.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":32.177,"y":23.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":51.977,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":32.177,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":51.977,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":32.177,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":51.977,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":31.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":32.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":33.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":35.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":35.89,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":32.177,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":51.977,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":48.265,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":29.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":31.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":32.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":32.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":32.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":33.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":33.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":33.733,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":34.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":35.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":35.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":36.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":36.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":36.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":37.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":37.486,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":10.501,"w":5.21,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":11.251,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":17.251,"w":3.713,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":22.501,"w":5.717,"h":0.743,"clr":-1},{"oc":"#bebfc1","x":32.177,"y":33.751,"w":3.712,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":24.001,"w":3.713,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":31.499,"w":3.713,"h":0.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.015,"w":6.666999999999998,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20F%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":2.765,"w":5.668000000000001,"clr":-1,"A":"left","R":[{"T":"(Form%201040)","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.94,"y":3.7569999999999997,"w":12.540000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.282,"w":13.279000000000003,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20%20(99)","S":-1,"TS":[0,9.3,0,0]}]},{"oc":"#221f1f","x":37.427,"y":2.419,"w":13.502,"clr":-1,"A":"left","R":[{"T":"Profit%20or%20Loss%20From%20Farming","S":11,"TS":[0,18,1,0]}]},{"oc":"#221f1f","x":26.908,"y":3.4000000000000004,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":28.273,"y":3.4930000000000003,"w":35.89999999999999,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%20Form%201040NR%2C%20Form%201041%2C%20Form%201065%2C%20or%20Form%201065-B.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":22.955,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":81.354,"y":4.243,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.8849999999999998,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.143,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":89.829,"y":3.143,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"oc":"#221f1f","x":85.965,"y":3.6879999999999997,"w":5.725000000000001,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":4.26,"w":6.909000000000001,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.933,"y":4.26,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":5.998,"y":5.001,"w":8.482000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20of%20proprietor","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.508,"y":5.001,"w":14.003999999999998,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20(SSN)","S":8,"TS":[0,10,1,0]}]},{"oc":"#221f1f","x":5.94,"y":6.483,"w":1,"clr":-1,"A":"left","R":[{"T":"A%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.264,"y":6.483,"w":11.352,"clr":-1,"A":"left","R":[{"T":"%20%20Principal%20crop%20or%20activity","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":37.908,"y":6.483,"w":12.670000000000002,"clr":-1,"A":"left","R":[{"T":"B%20%20%20Enter%20code%20from%20Part%20IV","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":42.453,"y":7.191,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.183,"y":6.483,"w":1.278,"clr":-1,"A":"left","R":[{"T":"C%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":61.967,"y":6.483,"w":9.059000000000001,"clr":-1,"A":"left","R":[{"T":"Accounting%20method%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.037,"y":7.333,"w":3.427,"clr":-1,"A":"left","R":[{"T":"Cash%20%20%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.961,"y":7.333,"w":3.37,"clr":-1,"A":"left","R":[{"T":"Accrual","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":77.508,"y":6.483,"w":1,"clr":-1,"A":"left","R":[{"T":"D%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":78.91,"y":6.483,"w":17.726000000000003,"clr":-1,"A":"left","R":[{"T":"Employer%20ID%20number%20(EIN)%2C%20(see%20instr)","S":-1,"TS":[0,9.4,1,0]}]},{"oc":"#221f1f","x":5.94,"y":8.108,"w":1.223,"clr":-1,"A":"left","R":[{"T":"E%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":88.312,"y":8.108,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.499,"y":8.108,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.939,"y":8.858,"w":1.167,"clr":-1,"A":"left","R":[{"T":"F%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.519,"y":8.858,"w":44.04999999999997,"clr":-1,"A":"left","R":[{"T":"Did%20you%20make%20any%20payments%20in%202013%20that%20would%20require%20you%20to%20file%20Form(s)%201099%20(see%20instructions)%3F%20","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":67.812,"y":8.858,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":69.874,"y":8.858,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":71.936,"y":8.858,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":73.997,"y":8.858,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":76.059,"y":8.858,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":78.121,"y":8.858,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":80.183,"y":8.858,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":82.245,"y":8.858,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":84.307,"y":8.858,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":88.312,"y":8.858,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.499,"y":8.858,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.939,"y":9.608,"w":1.334,"clr":-1,"A":"left","R":[{"T":"G%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.748,"y":9.608,"w":24.022000000000002,"clr":-1,"A":"left","R":[{"T":"If%20%E2%80%9CYes%2C%E2%80%9D%20did%20you%20or%20will%20you%20file%20required%20Forms%201099%3F%20","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":41.001,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":43.063,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":45.125,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":47.186,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":49.248,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":51.31,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":53.372,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":55.434,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":57.496,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":59.558,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":61.62,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":63.681,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":65.743,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":67.805,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":69.867,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":71.929,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":73.991,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":76.053,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":78.115,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":80.177,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":82.238,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":84.3,"y":9.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"oc":"#221f1f","x":88.312,"y":9.608,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.499,"y":9.608,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":6.349,"y":10.322,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":10.34,"w":13.892000000000007,"clr":-1,"A":"left","R":[{"T":"Farm%20Income%2C%20Cash%20Method.%20%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":35.069,"y":10.34,"w":37.56299999999999,"clr":-1,"A":"left","R":[{"T":"Complete%20Parts%20I%20and%20II%20(Accrual%20method.%20Complete%20Parts%20II%20and%20III%2C%20and%20Part%20I%2C%20line%209.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.65,"y":11.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":11.108,"w":25.83600000000001,"clr":-1,"A":"left","R":[{"T":"Sales%20of%20livestock%20and%20other%20resale%20items%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":47.19,"y":11.108,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.232,"y":11.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":11.858,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.888,"y":11.858,"w":29.319,"clr":-1,"A":"left","R":[{"T":"Cost%20or%20other%20basis%20of%20livestock%20or%20other%20items%20reported%20on%20line%201a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.315,"y":11.858,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.206,"y":11.858,"w":1.167,"clr":-1,"A":"left","R":[{"T":"1b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":12.608,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":12.608,"w":12.874000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%201b%20from%20line%201a%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.627,"y":12.608,"w":36,"clr":-1,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":7.65,"y":13.358,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":13.358,"w":29.653000000000002,"clr":-1,"A":"left","R":[{"T":"Sales%20of%20livestock%2C%20produce%2C%20grains%2C%20and%20other%20products%20you%20raised%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.377,"y":13.358,"w":18,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.426,"y":13.358,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.65,"y":14.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"3a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.108,"w":20.817000000000007,"clr":-1,"A":"left","R":[{"T":"Cooperative%20distributions%20(Form(s)%201099-PATR)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.003,"y":14.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":44.144,"y":14.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"3a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":64.102,"y":14.108,"w":1.167,"clr":-1,"A":"left","R":[{"T":"3b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":67.097,"y":14.108,"w":7.187,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.006,"y":14.108,"w":1.167,"clr":-1,"A":"left","R":[{"T":"3b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.65,"y":14.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"4a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.858,"w":13.799000000000001,"clr":-1,"A":"left","R":[{"T":"Agricultural%20program%20payments","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":29.863,"y":14.858,"w":7.8340000000000005,"clr":-1,"A":"left","R":[{"T":"%20(see%20instructions)","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#221f1f","x":41.002,"y":14.858,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":44.144,"y":14.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"4a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":64.102,"y":14.858,"w":1.167,"clr":-1,"A":"left","R":[{"T":"4b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":67.097,"y":14.858,"w":7.187,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.006,"y":14.858,"w":1.167,"clr":-1,"A":"left","R":[{"T":"4b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.65,"y":15.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"5a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.608,"w":30.447999999999997,"clr":-1,"A":"left","R":[{"T":"Commodity%20Credit%20Corporation%20(CCC)%20loans%20reported%20under%20election%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":53.377,"y":15.608,"w":18,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.032,"y":15.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"5a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":16.358,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":16.358,"w":9.092000000000002,"clr":-1,"A":"left","R":[{"T":"CCC%20loans%20forfeited%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.502,"y":16.358,"w":13.5,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":44.119,"y":16.358,"w":1.167,"clr":-1,"A":"left","R":[{"T":"5b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":64.102,"y":16.358,"w":1.112,"clr":-1,"A":"left","R":[{"T":"5c","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":67.107,"y":16.358,"w":7.187,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.032,"y":16.358,"w":1.112,"clr":-1,"A":"left","R":[{"T":"5c","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.65,"y":17.108,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.108,"w":35.245999999999995,"clr":-1,"A":"left","R":[{"T":"Crop%20insurance%20proceeds%20and%20federal%20crop%20disaster%20payments%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":17.858,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":44.144,"y":17.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"6a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":64.102,"y":17.858,"w":1.167,"clr":-1,"A":"left","R":[{"T":"6b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":67.107,"y":17.858,"w":7.187,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.006,"y":17.858,"w":1.167,"clr":-1,"A":"left","R":[{"T":"6b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":18.608,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":18.608,"w":22.708999999999993,"clr":-1,"A":"left","R":[{"T":"If%20election%20to%20defer%20to%202014%20is%20attached%2C%20check%20here%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":42.114,"y":18.514,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":56.038,"y":18.608,"w":1.167,"clr":-1,"A":"left","R":[{"T":"6d","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":59.152,"y":18.608,"w":12.653000000000004,"clr":-1,"A":"left","R":[{"T":"Amount%20deferred%20from%202012%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.006,"y":18.608,"w":1.167,"clr":-1,"A":"left","R":[{"T":"6d","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.65,"y":19.358,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.358,"w":16.337,"clr":-1,"A":"left","R":[{"T":"Custom%20hire%20(machine%20work)%20income%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.815,"y":19.358,"w":31.5,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.426,"y":19.358,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.65,"y":20.108,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":80.426,"y":20.108,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.65,"y":20.921,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":20.921,"w":7.503000000000002,"clr":-1,"A":"left","R":[{"T":"Gross%20income.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":20.347,"y":20.921,"w":41.074999999999946,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20in%20the%20right%20column%20(lines%201c%2C%202%2C%203b%2C%204b%2C%205a%2C%205c%2C%206b%2C%206d%2C%207%2C%20and%208).%20If%20you%20use%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.881,"y":21.608,"w":31.971000000000004,"clr":-1,"A":"left","R":[{"T":"accrual%20method%2C%20enter%20the%20amount%20from%20Part%20III%2C%20line%2050%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":55.431,"y":21.608,"w":16.5,"clr":-1,"A":"left","R":[{"T":"..........%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.105,"y":21.514,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.426,"y":21.608,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11,1,0]}]},{"x":6.349,"y":22.315,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":22.34,"w":20.784,"clr":-1,"A":"left","R":[{"T":"Farm%20Expenses%2C%20Cash%20and%20Accrual%20Method.%20","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":46.559,"y":22.34,"w":27.059,"clr":-1,"A":"left","R":[{"T":"Do%20not%20include%20personal%20or%20living%20expenses%20(see%20instructions).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.858,"w":11.412000000000004,"clr":-1,"A":"left","R":[{"T":"Amount%20received%20in%202013%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.627,"y":17.858,"w":10.5,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.108,"w":34.30199999999999,"clr":-1,"A":"left","R":[{"T":"Other%20income%2C%20including%20federal%20and%20state%20gasoline%20or%20fuel%20tax%20credit%20or%20refund","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":58.379,"y":20.108,"w":7.556000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.877,"y":20.108,"w":6,"clr":-1,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.032,"y":12.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"1c","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":23.17,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.17,"w":13.039000000000003,"clr":-1,"A":"left","R":[{"T":"Car%20and%20truck%20expenses%20(see%20","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.858,"w":11.576000000000004,"clr":-1,"A":"left","R":[{"T":"instructions).%20Also%20attach%20%20","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#221f1f","x":24.247,"y":23.858,"w":5.001,"clr":-1,"A":"left","R":[{"T":"Form%204562","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#221f1f","x":33.019,"y":23.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":24.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.608,"w":4.964,"clr":-1,"A":"left","R":[{"T":"Chemicals%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":18.315,"y":24.608,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.019,"y":24.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":25.358,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":25.358,"w":18.59400000000001,"clr":-1,"A":"left","R":[{"T":"Conservation%20expenses%20(see%20instructions)%20","S":-1,"TS":[0,9.24,0,0]}]},{"oc":"#221f1f","x":33.019,"y":25.358,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":26.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.108,"w":13.058000000000002,"clr":-1,"A":"left","R":[{"T":"Custom%20hire%20(machine%20work)%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.019,"y":26.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":26.92,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.905,"y":26.895,"w":17.152000000000005,"clr":-1,"A":"left","R":[{"T":"Depreciation%20and%20section%20179%20expense","S":-1,"TS":[0,9.447759999999999,0,0]}]},{"oc":"#221f1f","x":7.9350000000000005,"y":27.555,"w":14.948000000000008,"clr":-1,"A":"left","R":[{"T":"(see%20instructions)%20%20See%20Form%204562","S":-1,"TS":[0,10.38303,0,0]}]},{"oc":"#221f1f","x":33.019,"y":27.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":28.42,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":28.42,"w":12.614000000000003,"clr":-1,"A":"left","R":[{"T":"Employee%20benefit%20programs%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.108,"w":10.004000000000005,"clr":-1,"A":"left","R":[{"T":"other%20%20than%20on%20line%2023%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.325,"y":29.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.388,"y":29.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.019,"y":29.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":29.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":29.858,"w":2.519,"clr":-1,"A":"left","R":[{"T":"Feed%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":16.252,"y":29.858,"w":10.5,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.019,"y":29.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":30.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":30.608,"w":8.629000000000003,"clr":-1,"A":"left","R":[{"T":"Fertilizers%20and%20lime%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.502,"y":30.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.565,"y":30.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.627,"y":30.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.019,"y":30.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":31.357999999999997,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":31.357999999999997,"w":9.243000000000002,"clr":-1,"A":"left","R":[{"T":"Freight%20and%20trucking%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.502,"y":31.357999999999997,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.565,"y":31.357999999999997,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.627,"y":31.357999999999997,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.019,"y":31.357999999999997,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":32.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.108,"w":10.168000000000003,"clr":-1,"A":"left","R":[{"T":"Gasoline%2C%20fuel%2C%20and%20oil%20.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":26.551,"y":32.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.613,"y":32.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.019,"y":32.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":32.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":32.858,"w":12.725000000000005,"clr":-1,"A":"left","R":[{"T":"Insurance%20(other%20than%20health)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":33.019,"y":32.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":33.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":33.608,"w":3.6300000000000003,"clr":-1,"A":"left","R":[{"T":"Interest%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":34.358,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":34.358,"w":13.429000000000004,"clr":-1,"A":"left","R":[{"T":"Mortgage%20(paid%20to%20banks%2C%20etc.)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.624,"y":34.358,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"21a","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":35.108,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.108,"w":2.7790000000000004,"clr":-1,"A":"left","R":[{"T":"Other%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":16.252,"y":35.108,"w":10.5,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.599,"y":35.108,"w":1.723,"clr":-1,"A":"left","R":[{"T":"21b","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.886,"y":35.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":35.858,"w":16.800000000000004,"clr":-1,"A":"left","R":[{"T":"Labor%20hired%20(less%20employment%20credits)","S":-1,"TS":[0,9.8,0,0]}]},{"oc":"#221f1f","x":33.019,"y":35.795,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":52.673,"y":23.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.652,"y":23.108,"w":15.077000000000002,"clr":-1,"A":"left","R":[{"T":"Pension%20and%20profit-sharing%20plans%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.044,"y":23.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":52.673,"y":23.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.652,"y":23.858,"w":14.001000000000003,"clr":-1,"A":"left","R":[{"T":"Rent%20or%20lease%20(see%20instructions)%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":56.652,"y":24.608,"w":14.783000000000003,"clr":-1,"A":"left","R":[{"T":"Vehicles%2C%20machinery%2C%20equipment%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":54.202,"y":24.608,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":79.649,"y":24.608,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"24a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":54.202,"y":25.358,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.652,"y":25.358,"w":11.689000000000004,"clr":-1,"A":"left","R":[{"T":"Other%20(land%2C%20animals%2C%20etc.)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.002,"y":25.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.065,"y":25.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.624,"y":25.358,"w":1.723,"clr":-1,"A":"left","R":[{"T":"24b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":52.673,"y":26.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.652,"y":26.108,"w":11.670000000000003,"clr":-1,"A":"left","R":[{"T":"Repairs%20and%20maintenance%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.002,"y":26.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.065,"y":26.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.044,"y":26.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":52.673,"y":26.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.652,"y":26.858,"w":8.058000000000002,"clr":-1,"A":"left","R":[{"T":"Seeds%20and%20plants%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":67.815,"y":26.858,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.044,"y":26.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":52.673,"y":27.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.652,"y":27.608,"w":11.741,"clr":-1,"A":"left","R":[{"T":"Storage%20and%20warehousing%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.002,"y":27.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.065,"y":27.608,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.044,"y":27.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"27","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":52.673,"y":28.358,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.652,"y":28.358,"w":4.149,"clr":-1,"A":"left","R":[{"T":"Supplies%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.69,"y":28.358,"w":10.5,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.044,"y":28.358,"w":1.112,"clr":-1,"A":"left","R":[{"T":"28","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":52.673,"y":29.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.652,"y":29.108,"w":2.9440000000000004,"clr":-1,"A":"left","R":[{"T":"Taxes%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":61.627,"y":29.108,"w":12,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.044,"y":29.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"29","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":52.673,"y":29.856,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.652,"y":29.856,"w":3.5549999999999997,"clr":-1,"A":"left","R":[{"T":"Utilities%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":61.627,"y":29.856,"w":12,"clr":-1,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.044,"y":29.856,"w":1.112,"clr":-1,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":52.673,"y":30.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.652,"y":30.608,"w":15.837000000000007,"clr":-1,"A":"left","R":[{"T":"Veterinary%2C%20breeding%2C%20and%20medicine%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":80.044,"y":30.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":52.673,"y":31.356,"w":1.112,"clr":-1,"A":"left","R":[{"T":"32","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":56.652,"y":31.356,"w":11.316000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20expenses%20(specify)%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":54.202,"y":32.108,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":79.649,"y":32.108,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"32a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":54.202,"y":32.856,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":79.624,"y":32.856,"w":1.723,"clr":-1,"A":"left","R":[{"T":"32b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":54.202,"y":33.606,"w":0.556,"clr":-1,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":79.649,"y":33.606,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"32c","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":54.202,"y":34.358,"w":0.611,"clr":-1,"A":"left","R":[{"T":"d","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":79.624,"y":34.358,"w":1.723,"clr":-1,"A":"left","R":[{"T":"32d","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":54.202,"y":35.106,"w":0.556,"clr":-1,"A":"left","R":[{"T":"e","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":79.649,"y":35.106,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"32e","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":54.202,"y":35.858,"w":0.333,"clr":-1,"A":"left","R":[{"T":"f","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":79.815,"y":35.795,"w":1.445,"clr":-1,"A":"left","R":[{"T":"32f","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":36.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":36.608,"w":8.059000000000001,"clr":-1,"A":"left","R":[{"T":"Total%20expenses.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":21.106,"y":36.608,"w":28.507,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2010%20through%2032f.%20If%20line%2032f%20is%20negative%2C%20see%20instructions%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":61.627,"y":36.608,"w":10.5,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.242,"y":36.514,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.044,"y":36.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"33","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":37.358,"w":1.112,"clr":-1,"A":"left","R":[{"T":"34","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":37.358,"w":11.946000000000005,"clr":-1,"A":"left","R":[{"T":"Net%20farm%20profit%20or%20(loss).%20%20","S":-1,"TS":[0,10.84,1,0]}]},{"oc":"#221f1f","x":26.071,"y":37.358,"w":12.022000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2033%20from%20line%209","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":45.127,"y":37.358,"w":24.495999999999995,"clr":-1,"A":"left","R":[{"T":"................","S":-1,"TS":[0,10.84,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.108,"w":42.71099999999997,"clr":-1,"A":"left","R":[{"T":"If%20a%20profit%2C%20stop%20here%20and%20see%20instructions%20for%20where%20to%20report.%20If%20a%20loss%2C%20complete%20lines%2035%20and%2036.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.044,"y":37.358,"w":1.112,"clr":-1,"A":"left","R":[{"T":"34","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":38.858,"w":1.112,"clr":-1,"A":"left","R":[{"T":"35","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":38.858,"w":28.84000000000001,"clr":-1,"A":"left","R":[{"T":"Did%20you%20receive%20an%20applicable%20subsidy%20in%202013%3F%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":51.315,"y":38.858,"w":25.5,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":88.312,"y":38.858,"w":1.685,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":94.499,"y":38.858,"w":1.296,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":6.885,"y":39.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"36","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.889,"y":39.608,"w":49.39699999999995,"clr":-1,"A":"left","R":[{"T":"Check%20the%20box%20that%20describes%20your%20investment%20in%20this%20activity%20and%20see%20instructions%20for%20where%20to%20report%20your%20loss.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.414,"y":40.358,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":12.952,"y":40.358,"w":10.521,"clr":-1,"A":"left","R":[{"T":"All%20investment%20is%20at%20risk.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":35.639,"y":40.358,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":40.177,"y":40.358,"w":13.764000000000003,"clr":-1,"A":"left","R":[{"T":"Some%20investment%20is%20not%20at%20risk.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.208,"w":32.06400000000001,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20the%20separate%20instructions.","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":60.219,"y":41.213,"w":7.484,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011346H","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.956,"y":41.208,"w":13.783000000000008,"clr":-1,"A":"left","R":[{"T":"Schedule%20F%20(Form%201040)%202013","S":-1,"TS":[0,11,1,0]}]},{"x":60.98,"y":40.281,"w":175.62000000000006,"clr":0,"A":"left","R":[{"T":"If%20at%20risk%2C%20you%20must%20complete%20Form%206198","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":24.321,"y":4.243,"w":41.39999999999996,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Schedule%20F%20and%20its%20separate%20instructions%20is%20at%20www.irs.gov%2Fschedulef","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":7.595,"y":8.108,"w":57.17799999999997,"clr":-1,"A":"left","R":[{"T":"Did%20you%20%E2%80%9Cmaterially%20participate%E2%80%9D%20in%20the%20operation%20of%20this%20business%20during%202013%3F%20If%20%E2%80%9CNo%2C%E2%80%9D%20see%20instructions%20for%20limit%20on%20passive%20losses","S":-1,"TS":[0,10.8,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8649,"AM":0,"x":6.439,"y":5.935,"w":54.755,"h":0.833,"TU":"Name of proprietor."},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8650,"AM":0,"x":76.72,"y":6.122,"w":18.407,"h":0.833,"TU":"Social security number (SSN)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A","EN":0},"TI":8651,"AM":0,"x":6.229,"y":7.557,"w":30.649,"h":0.833,"TU":"Line A. Principal crop or activity."},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"B","EN":0},"TI":8652,"AM":0,"x":44.571,"y":7.478,"w":14.6,"h":0.833,"TU":"Line B. Enter code from Part IV.","MV":"999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"D","EN":0},"TI":8655,"AM":0,"x":76.825,"y":7.414,"w":22.25,"h":0.833,"TU":"Line D. Employer ID number (EIN), (see instructions)","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":8662,"AM":0,"x":63.216,"y":11.288,"w":12.189,"h":0.833,"TU":"Line 1a. Sales of livestock and other resale items (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":8663,"AM":0,"x":63.216,"y":12.038,"w":12.189,"h":0.833,"TU":"Line 1b. Cost or other basis of livestock or other items reported on line 1a."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":8664,"AM":1024,"x":83.044,"y":12.692,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALESRSD","EN":0},"TI":8665,"AM":0,"x":83.016,"y":13.538,"w":12.189,"h":0.833,"TU":"Line 2. Sales of livestock, produce, grains, and other products you raised."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5A","EN":0},"TI":8666,"AM":0,"x":47.085,"y":14.258,"w":12.148,"h":0.833,"TU":"Line 3a. Cooperative distributions (Form(s) 1099-PATR)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5B","EN":0},"TI":8667,"AM":0,"x":83.016,"y":14.288,"w":12.189,"h":0.833,"TU":"Line 3b. Taxable amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6A","EN":0},"TI":8668,"AM":0,"x":47.128,"y":15.038,"w":12.189,"h":0.833,"TU":"Line 4a. Agricultural program payments (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6B","EN":0},"TI":8669,"AM":0,"x":83.016,"y":15.038,"w":12.189,"h":0.833,"TU":"Line 4b. Taxable amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7A","EN":0},"TI":8670,"AM":0,"x":83.016,"y":15.788,"w":12.189,"h":0.833,"TU":"Line 5a. Commodity Credit Corporation (CCC) loans reported under election."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7B","EN":0},"TI":8671,"AM":0,"x":47.149,"y":16.508,"w":12.148,"h":0.833,"TU":"Line 5b. CCC loans forfeited."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7C","EN":0},"TI":8672,"AM":0,"x":83.016,"y":16.538,"w":12.189,"h":0.833,"TU":"Line 5c. Taxable amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":8673,"AM":0,"x":47.149,"y":18.008,"w":12.148,"h":0.833,"TU":"Line 6a. Crop insurance proceeds and federal crop disaster payments (see instructions). Amount received in 2013."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":8674,"AM":0,"x":82.948,"y":17.998,"w":12.249,"h":0.833,"TU":"Line 6b. Taxable amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8D","EN":0},"TI":8676,"AM":0,"x":83.016,"y":18.788,"w":12.189,"h":0.833,"TU":"Line 6d. Amount deferred from 2012."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HIRENR","EN":0},"TI":8677,"AM":0,"x":83.016,"y":19.538,"w":12.189,"h":0.833,"TU":"Line 7. Custom hire (machine work) income."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHERNR","EN":0},"TI":8678,"AM":0,"x":83.016,"y":20.288,"w":12.189,"h":0.833,"TU":"Line 8. Other income, including federal and state gasoline or fuel tax credit or refund (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":8679,"AM":1024,"x":82.948,"y":21.803,"w":12.324,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":8680,"AM":0,"x":83.016,"y":23.288,"w":12.189,"h":0.833,"TU":"Line 23. Pension and profit-sharing plans."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":8681,"AM":0,"x":35.998,"y":24.025,"w":12.399,"h":0.833,"TU":"Line 10. Car and truck expenses (see instructions). Also attach Form 4562. "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":8682,"AM":0,"x":35.991,"y":24.788,"w":12.189,"h":0.833,"TU":"Line 11. Chemicals."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26A3","EN":0},"TI":8683,"AM":0,"x":83.023,"y":24.748,"w":12.099,"h":0.833,"TU":"Line 24a. Rent or lease (see instructions) on Vehicles, machinery, equipment."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":8684,"AM":0,"x":35.991,"y":25.538,"w":12.189,"h":0.833,"TU":"Line 12. Conservation expenses (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26B","EN":0},"TI":8685,"AM":0,"x":83.016,"y":25.538,"w":12.189,"h":0.833,"TU":"Rent or lease (see instructions). Other (land, animals, etc.)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":8686,"AM":0,"x":35.991,"y":26.288,"w":12.189,"h":0.833,"TU":"Line 13. Custom hire (machine work)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":8687,"AM":0,"x":83.016,"y":26.288,"w":12.189,"h":0.833,"TU":"Line 25. Repairs and mantenance."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":8688,"AM":0,"x":83.016,"y":27.038,"w":12.189,"h":0.833,"TU":"Line 26. Seeds and plants."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4562F"}},"id":{"Id":"Add_F4562F","EN":0},"TI":8689,"AM":1024,"x":27.884,"y":27.655,"w":3.132,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":8690,"AM":0,"x":35.998,"y":27.721,"w":12.249,"h":0.833,"TU":"Line 14. Depreciation and section 179 expense (see instructions). See Form 4562."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":8691,"AM":0,"x":83.016,"y":27.788,"w":12.189,"h":0.833,"TU":"Line 27. Storage and warehousing."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":8692,"AM":0,"x":83.016,"y":28.538,"w":12.189,"h":0.833,"TU":"Line 28. Supplies."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":8693,"AM":0,"x":35.998,"y":29.221,"w":12.174,"h":0.833,"TU":"Line 15. Employee benefit programs other than on line 23."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":8694,"AM":0,"x":83.016,"y":29.288,"w":12.189,"h":0.833,"TU":"Line 29. Taxes."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":8695,"AM":0,"x":35.991,"y":30.038,"w":12.04,"h":0.833,"TU":"Line 16. Feed."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":8696,"AM":0,"x":83.016,"y":30.038,"w":12.189,"h":0.833,"TU":"Line 30. Utilities."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":8697,"AM":0,"x":35.991,"y":30.788,"w":12.189,"h":0.833,"TU":"Line 17. Fertilizers and lime."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":8698,"AM":0,"x":83.016,"y":30.788,"w":12.189,"h":0.833,"TU":"Line 31. Veterinary, breeding and medicine."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":8699,"AM":0,"x":36.055,"y":31.538,"w":12.189,"h":0.833,"TU":"Line 18. Freight and trucking."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":8700,"AM":0,"x":35.991,"y":32.288,"w":12.189,"h":0.833,"TU":"Line 19. Gasoline, fuel and oil."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L34T_1_","EN":0},"TI":8701,"AM":0,"x":56.884,"y":32.273,"w":21.141,"h":0.833,"TU":"Line 32a. Other expenses (specify)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L34AA_1_","EN":0},"TI":8702,"AM":0,"x":82.948,"y":32.275,"w":12.174,"h":0.833,"TU":"Line 32a. Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":8703,"AM":0,"x":35.981,"y":33.069,"w":12.189,"h":0.833,"TU":"Line 20. Insurance (other than health)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L34T_2_","EN":0},"TI":8704,"AM":0,"x":56.959,"y":33.023,"w":21.066,"h":0.833,"TU":"Line 32bOther expenses (specify)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L34AA_2_","EN":0},"TI":8705,"AM":0,"x":83.016,"y":33.038,"w":12.189,"h":0.833,"TU":"Line 32b. Amount."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L34T_3_","EN":0},"TI":8706,"AM":0,"x":56.884,"y":33.745,"w":21.141,"h":0.833,"TU":"Line 32c. Other expenses (specify)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L34AA_3_","EN":0},"TI":8707,"AM":0,"x":83.016,"y":33.788,"w":12.189,"h":0.833,"TU":"Line 32c. Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23A","EN":0},"TI":8708,"AM":0,"x":35.998,"y":34.444,"w":12.174,"h":0.833,"TU":"Line 21a. Mortgage interest (paid to banks, etc.)"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L34T_4_","EN":0},"TI":8709,"AM":0,"x":56.884,"y":34.523,"w":21.141,"h":0.833,"TU":"Line 32d Other expenses (specify)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L34AA_4_","EN":0},"TI":8710,"AM":0,"x":83.016,"y":34.538,"w":12.189,"h":0.833,"TU":"Line 32d. Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23B","EN":0},"TI":8711,"AM":0,"x":35.991,"y":35.288,"w":12.189,"h":0.833,"TU":"Line 21b. Other interest."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L34T_5_","EN":0},"TI":8712,"AM":0,"x":56.884,"y":35.273,"w":21.141,"h":0.833,"TU":"Line 32e. Other expenses (specify)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L34AA_5_","EN":0},"TI":8713,"AM":0,"x":83.016,"y":35.288,"w":12.189,"h":0.833,"TU":"Line 32e. Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":8714,"AM":0,"x":35.991,"y":36.038,"w":12.189,"h":0.833,"TU":"Line 22. Labor hired (less employment credits)."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L34T_6_","EN":0},"TI":8715,"AM":0,"x":56.885,"y":36.029,"w":21.141,"h":0.833,"TU":"Line 32f. Other expenses (specify)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L34AA_6_","EN":0},"TI":8716,"AM":0,"x":83.016,"y":36.038,"w":12.189,"h":0.833,"TU":"Line 32f. Amount."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":8717,"AM":1024,"x":83.016,"y":36.803,"w":12.189,"h":0.833,"TU":"33"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":8718,"AM":1024,"x":83.016,"y":37.538,"w":12.189,"h":0.833,"TU":"Line 34. Net farm profit or (loss). Subtract line 33 from line 9."},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6198F"}},"id":{"Id":"Add_F6198","EN":0},"TI":8723,"AM":1024,"x":89.19,"y":40.381,"w":3.132,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C1","EN":0},"TI":8653,"AM":0,"x":60.568,"y":7.424,"w":2.195,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C2","EN":0},"TI":8654,"AM":0,"x":67.852,"y":7.424,"w":2.121,"h":0.833,"checked":false}],"id":{"Id":"A177RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EY","EN":0},"TI":8656,"AM":0,"x":86.097,"y":8.233,"w":2.195,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EN","EN":0},"TI":8657,"AM":0,"x":92.311,"y":8.178,"w":2.046,"h":0.833,"checked":false}],"id":{"Id":"ERB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQD1099Y","EN":0},"TI":8658,"AM":0,"x":86.172,"y":8.886,"w":2.27,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQ1099N","EN":0},"TI":8659,"AM":0,"x":92.386,"y":8.886,"w":1.971,"h":0.833,"checked":false}],"id":{"Id":"FRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FIL1099Y","EN":0},"TI":8660,"AM":0,"x":86.247,"y":9.649,"w":2.046,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FIL1099N","EN":0},"TI":8661,"AM":0,"x":92.162,"y":9.676,"w":2.27,"h":0.833,"checked":false}],"id":{"Id":"GRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8CX","EN":0},"TI":8675,"AM":0,"x":46.642,"y":18.714,"w":2.345,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SUBSIDYY","EN":0},"TI":8719,"AM":0,"x":86.097,"y":38.833,"w":2.195,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SUBSIDYN","EN":0},"TI":8720,"AM":0,"x":92.162,"y":38.833,"w":2.27,"h":0.833,"checked":false}],"id":{"Id":"SUBSIDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B37A","EN":0},"TI":8721,"AM":0,"x":10.182,"y":40.331,"w":2.869,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B37B","EN":0},"TI":8722,"AM":0,"x":37.134,"y":40.331,"w":2.645,"h":0.833,"checked":false}],"id":{"Id":"B37RB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":86.711},{"oc":"#221f1f","x":92.772,"y":3.001,"w":1.5,"l":6.273},{"oc":"#221f1f","x":6.147,"y":3.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.159,"y":5.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":5.253,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":5.253,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.272,"y":6.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.984,"y":6.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.359,"y":6.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":6.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":6.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":6.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.272,"y":8.252,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.984,"y":8.252,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.359,"y":8.252,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":8.252,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":8.252,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":8.252,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":10.502,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":10.502,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":10.502,"w":0.75,"l":3.798},{"oc":"#221f1f","x":43.272,"y":12.002,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.984,"y":12.002,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.359,"y":12.002,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":12.002,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":12.002,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":12.002,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":13.502,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":13.502,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":13.502,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":15.002,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":15.002,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":15.002,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":16.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":16.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":19.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":19.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":22.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":22.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":24.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":24.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":25.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":25.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":27.001,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":28.501,"w":1.2000000000000002,"l":92.899},{"oc":"#221f1f","x":6.147,"y":29.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":37.676,"w":3,"l":44.636},{"oc":"#221f1f","x":6.147,"y":44.251,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":82.915,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":3.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":4.488,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":4.488,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":5.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":6.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":6.736,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":6.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":7.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":9.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":9.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":9.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":9.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":11.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":11.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":11.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":11.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":10.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":10.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":10.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":11.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":11.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":11.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":11.986,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":11.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":12.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":13.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":13.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":13.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":14.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":14.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":14.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":15.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":16.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":17.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":17.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":18.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":17.985,"w":0.75,"l":6.781},{"oc":"#221f1f","x":79.202,"y":17.985,"w":0.75,"l":6.781},{"oc":"#221f1f","x":95.29,"y":17.985,"w":0.75,"l":6.781},{"oc":"#221f1f","x":63.115,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":19.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":19.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":20.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":21.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":22.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":22.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":24.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":25.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.235,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":3.001,"w":6.224,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":8.251,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":79.202,"y":18.001,"w":3.713,"h":6.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":28.501,"w":6.286,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":29.751,"w":6.188,"h":2.25,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":27.454,"w":56.167999999999935,"clr":-1,"A":"left","R":[{"T":"47%2C%20subtract%20line%2047%20from%20line%2048.%20Enter%20the%20result%20on%20line%2049.%20Add%20lines%2044%20and%2049.%20Enter%20the%20total%20on%20line%2050%20and%20on%20Part%20I%2C%20line%209.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":26.766,"w":65.94599999999991,"clr":-1,"A":"left","R":[{"T":"*If%20you%20use%20the%20unit-livestock-price%20method%20or%20the%20farm-price%20method%20of%20valuing%20inventory%20and%20the%20amount%20on%20line%2048%20is%20larger%20than%20the%20amount%20on%20line","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":13.172000000000008,"clr":-1,"A":"left","R":[{"T":"Schedule%20F%20(Form%201040)%202013","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.7,"y":2.01,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.797,"y":2.01,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"x":6.349,"y":2.822,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":2.822,"w":14.781000000000004,"clr":-1,"A":"left","R":[{"T":"Farm%20Income%E2%80%9EAccrual%20Method%20%20","S":10,"TS":[0,14,1,0]}]},{"oc":"#221f1f","x":40.181,"y":2.822,"w":7.834000000000001,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.886,"y":4.358,"w":1.112,"clr":-1,"A":"left","R":[{"T":"37","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":4.358,"w":32.57900000000001,"clr":-1,"A":"left","R":[{"T":"Sales%20of%20livestock%2C%20produce%2C%20grains%2C%20and%20other%20products%20(see%20instructions)%20","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":55.44,"y":4.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":57.503,"y":4.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":59.566,"y":4.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":61.628,"y":4.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":63.691,"y":4.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":65.753,"y":4.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":67.816,"y":4.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":69.878,"y":4.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":71.941,"y":4.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":74.003,"y":4.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":76.066,"y":4.358,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"oc":"#221f1f","x":80.044,"y":4.358,"w":1.112,"clr":-1,"A":"left","R":[{"T":"37","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":5.858,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"38a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":5.858,"w":21.095000000000006,"clr":-1,"A":"left","R":[{"T":"Cooperative%20distributions%20(Form(s)%201099-PATR)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":41.003,"y":5.858,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.762,"y":5.858,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"38a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":64.102,"y":5.858,"w":1.723,"clr":-1,"A":"left","R":[{"T":"38b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":66.577,"y":5.858,"w":7.187,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.624,"y":5.858,"w":1.723,"clr":-1,"A":"left","R":[{"T":"38b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":7.359,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"39a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":7.359,"w":14.077000000000002,"clr":-1,"A":"left","R":[{"T":"Agricultural%20program%20payments%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":30.69,"y":7.359,"w":9,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.762,"y":7.359,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"39a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":64.102,"y":7.359,"w":1.723,"clr":-1,"A":"left","R":[{"T":"39b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":66.577,"y":7.359,"w":7.187,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.624,"y":7.359,"w":1.723,"clr":-1,"A":"left","R":[{"T":"39b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":8.859,"w":1.112,"clr":-1,"A":"left","R":[{"T":"40","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":8.859,"w":19.724,"clr":-1,"A":"left","R":[{"T":"Commodity%20Credit%20Corporation%20(CCC)%20loans%3A","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":8.415,"y":9.609,"w":0.556,"clr":-1,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":9.609,"w":15.835000000000006,"clr":-1,"A":"left","R":[{"T":"CCC%20loans%20reported%20under%20election%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":32.752,"y":9.609,"w":33,"clr":-1,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.649,"y":9.609,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"40a","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":8.415,"y":11.109,"w":0.611,"clr":-1,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":11.109,"w":9.092000000000002,"clr":-1,"A":"left","R":[{"T":"CCC%20loans%20forfeited%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.502,"y":11.109,"w":13.5,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":43.736,"y":11.109,"w":1.723,"clr":-1,"A":"left","R":[{"T":"40b","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":64.102,"y":11.109,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"40c","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":66.577,"y":11.109,"w":7.187,"clr":-1,"A":"left","R":[{"T":"Taxable%20amount","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":79.649,"y":11.109,"w":1.6680000000000001,"clr":-1,"A":"left","R":[{"T":"40c","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":12.609,"w":1.112,"clr":-1,"A":"left","R":[{"T":"41","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":12.609,"w":11.594000000000003,"clr":-1,"A":"left","R":[{"T":"Crop%20insurance%20proceeds%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":28.627,"y":12.609,"w":36,"clr":-1,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.044,"y":12.609,"w":1.112,"clr":-1,"A":"left","R":[{"T":"41","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":14.109,"w":1.112,"clr":-1,"A":"left","R":[{"T":"42","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":14.109,"w":16.337,"clr":-1,"A":"left","R":[{"T":"Custom%20hire%20(machine%20work)%20income%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":34.815,"y":14.109,"w":31.5,"clr":-1,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.044,"y":14.109,"w":1.112,"clr":-1,"A":"left","R":[{"T":"42","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":15.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"43","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":15.608,"w":13.892000000000003,"clr":-1,"A":"left","R":[{"T":"Other%20income%20(see%20instructions)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":30.69,"y":15.608,"w":34.5,"clr":-1,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.044,"y":15.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"43","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":17.108,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"44%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.108,"w":45.317999999999955,"clr":-1,"A":"left","R":[{"T":"Add%20amounts%20in%20the%20right%20column%20for%20lines%2037%20through%2043%20(lines%2037%2C%2038b%2C%2039b%2C%2040a%2C%2040c%2C%2041%2C%2042%2C%20and%2043)%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":74.003,"y":17.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.066,"y":17.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.044,"y":17.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"44","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":17.921,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"45%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":17.921,"w":33.377,"clr":-1,"A":"left","R":[{"T":"Inventory%20of%20livestock%2C%20produce%2C%20grains%2C%20and%20other%20products%20at%20beginning%20of%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.888,"y":18.608,"w":24.11800000000001,"clr":-1,"A":"left","R":[{"T":"the%20year.%20Do%20not%20include%20sales%20reported%20on%20Form%204797%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":45.126,"y":18.608,"w":10.5,"clr":-1,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.244,"y":18.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"45","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":19.421,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"46%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":19.421,"w":34.22999999999999,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20livestock%2C%20produce%2C%20grains%2C%20and%20other%20products%20purchased%20during%20the%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":10.892,"y":20.108,"w":2.1849999999999996,"clr":-1,"A":"left","R":[{"T":"year%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":14.192,"y":20.108,"w":33,"clr":-1,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.244,"y":20.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"46","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":21.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"47","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":21.608,"w":9.171000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2045%20and%2046%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":24.502,"y":21.608,"w":25.5,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.244,"y":21.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"47","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":23.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"48","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":23.108,"w":32.858,"clr":-1,"A":"left","R":[{"T":"Inventory%20of%20livestock%2C%20produce%2C%20grains%2C%20and%20other%20products%20at%20end%20of%20year%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":57.503,"y":23.108,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":60.244,"y":23.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"48","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":24.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"49","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":24.608,"w":40.34299999999998,"clr":-1,"A":"left","R":[{"T":"Cost%20of%20livestock%2C%20produce%2C%20grains%2C%20and%20other%20products%20sold.%20Subtract%20line%2048%20from%20line%2047*%20%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":67.815,"y":24.608,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":80.044,"y":24.608,"w":1.112,"clr":-1,"A":"left","R":[{"T":"49","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":6.886,"y":26.108,"w":1.112,"clr":-1,"A":"left","R":[{"T":"50","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":10.89,"y":26.108,"w":7.503000000000002,"clr":-1,"A":"left","R":[{"T":"Gross%20income.%20%20","S":-1,"TS":[0,11,1,0]}]},{"oc":"#221f1f","x":20.461,"y":26.108,"w":31.379,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2049%20from%20line%2044.%20Enter%20the%20result%20here%20and%20on%20Part%20I%2C%20line%209%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":65.752,"y":26.108,"w":7.5,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":76.242,"y":26.014,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":80.044,"y":25.983,"w":1.112,"clr":-1,"A":"left","R":[{"T":"50","S":-1,"TS":[0,11,1,0]}]},{"x":6.346,"y":28.322,"w":3.185,"clr":1,"A":"left","R":[{"T":"Part%20IV","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.674,"y":28.322,"w":17.338000000000008,"clr":-1,"A":"left","R":[{"T":"Principal%20Agricultural%20Activity%20Codes","S":10,"TS":[0,14,1,0]}]},{"x":6.243,"y":30.54,"w":0.892,"clr":1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,39.4001,0,0]}]},{"oc":"#221f1f","x":8.428,"y":30.476,"w":0.32,"clr":-1,"A":"left","R":[{"T":"!","S":-1,"TS":[2,25,0,0]}]},{"x":6.354,"y":31.072,"w":4.796,"clr":1,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,9.5,0,0]}]},{"oc":"#221f1f","x":13.158,"y":29.403,"w":21.597,"clr":-1,"A":"left","R":[{"T":"Do%20not%20file%20Schedule%20F%20(Form%201040)%20to%20report%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.158,"y":30.012,"w":4.277000000000001,"clr":-1,"A":"left","R":[{"T":"following.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.158,"y":30.759,"w":23.889,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Income%20from%20providing%20agricultural%20services%20such%20as%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.158,"y":31.368000000000002,"w":24.373,"clr":-1,"A":"left","R":[{"T":"soil%20preparation%2C%20veterinary%2C%20farm%20labor%2C%20horticultural%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.939,"y":31.976999999999997,"w":25.32,"clr":-1,"A":"left","R":[{"T":"management%20for%20a%20fee%20or%20on%20a%20contract%20basis.%20Instead%20file%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.939,"y":32.586,"w":24.986000000000008,"clr":-1,"A":"left","R":[{"T":"Schedule%20C%20(Form%201040)%20or%20Schedule%20C-EZ%20(Form%201040).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.939,"y":33.333,"w":26.724,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Income%20from%20breeding%2C%20raising%2C%20or%20caring%20for%20dogs%2C%20cats%2C%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.939,"y":33.943,"w":25.61600000000001,"clr":-1,"A":"left","R":[{"T":"other%20pet%20animals.%20Instead%20file%20Schedule%20C%20(Form%201040)%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.939,"y":34.552,"w":12.706000000000005,"clr":-1,"A":"left","R":[{"T":"Schedule%20C-EZ%20(Form%201040).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.939,"y":35.299,"w":25.982,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Sales%20of%20livestock%20held%20for%20draft%2C%20breeding%2C%20sport%2C%20or%20dairy%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.939,"y":35.908,"w":14.910000000000005,"clr":-1,"A":"left","R":[{"T":"purposes.%20Instead%20file%20Form%204797.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.486,"y":37.64,"w":25.778000000000002,"clr":-1,"A":"left","R":[{"T":"These%20codes%20for%20the%20Principal%20Agricultural%20Activity%20classify%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":38.249,"w":28.116000000000014,"clr":-1,"A":"left","R":[{"T":"farms%20by%20their%20primary%20activity%20to%20facilitate%20the%20administration%20of%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":38.858,"w":28.412000000000003,"clr":-1,"A":"left","R":[{"T":"the%20Internal%20Revenue%20Code.%20These%20six-digit%20codes%20are%20based%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":39.468,"w":26.521000000000004,"clr":-1,"A":"left","R":[{"T":"the%20North%20American%20Industry%20Classification%20System%20(NAICS).","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.486,"y":40.152,"w":25.319999999999997,"clr":-1,"A":"left","R":[{"T":"Select%20the%20code%20that%20best%20identifies%20your%20primary%20farming%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":40.761,"w":21.357,"clr":-1,"A":"left","R":[{"T":"activity%20and%20enter%20the%20six-digit%20number%20on%20line%20B.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":41.571,"w":7.888999999999999,"clr":-1,"A":"left","R":[{"T":"Crop%20Production","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":5.94,"y":42.321,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"111100","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.846,"y":42.321,"w":11.484,"clr":-1,"A":"left","R":[{"T":"Oilseed%20and%20grain%20farming","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":43.008,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"111210","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.846,"y":43.008,"w":13.095999999999998,"clr":-1,"A":"left","R":[{"T":"Vegetable%20and%20melon%20farming","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.202,"y":29.492,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"111300","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.108,"y":29.492,"w":11.318,"clr":-1,"A":"left","R":[{"T":"Fruit%20and%20tree%20nut%20farming","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.202,"y":30.242,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"111400","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.108,"y":30.242,"w":21.670000000000005,"clr":-1,"A":"left","R":[{"T":"Greenhouse%2C%20nursery%2C%20and%20floriculture%20production","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.202,"y":30.991,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"111900","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.108,"y":30.991,"w":8.465000000000002,"clr":-1,"A":"left","R":[{"T":"Other%20crop%20farming","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.202,"y":31.866999999999997,"w":8.89,"clr":-1,"A":"left","R":[{"T":"Animal%20Production","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.202,"y":32.616,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"112111","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.108,"y":32.616,"w":14.558000000000002,"clr":-1,"A":"left","R":[{"T":"Beef%20cattle%20ranching%20and%20farming","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.202,"y":33.366,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"112112","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.108,"y":33.366,"w":6.5,"clr":-1,"A":"left","R":[{"T":"Cattle%20feedlots","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.202,"y":34.116,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"112120","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.108,"y":34.116,"w":14.226000000000003,"clr":-1,"A":"left","R":[{"T":"Dairy%20cattle%20and%20milk%20production","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.202,"y":34.866,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"112210","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.108,"y":34.866,"w":9.15,"clr":-1,"A":"left","R":[{"T":"Hog%20and%20pig%20farming","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.202,"y":35.616,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"112300","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.108,"y":35.616,"w":12.206,"clr":-1,"A":"left","R":[{"T":"Poultry%20and%20egg%20production","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.202,"y":36.365,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"112400","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.108,"y":36.365,"w":10.761999999999999,"clr":-1,"A":"left","R":[{"T":"Sheep%20and%20goat%20farming","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.202,"y":37.115,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"112510","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.108,"y":37.115,"w":5.39,"clr":-1,"A":"left","R":[{"T":"Aquaculture","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.202,"y":37.865,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"112900","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.108,"y":37.865,"w":10.837,"clr":-1,"A":"left","R":[{"T":"Other%20animal%20production","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":54.202,"y":38.803,"w":10.279000000000002,"clr":-1,"A":"left","R":[{"T":"Forestry%20and%20Logging","S":9,"TS":[0,12,1,0]}]},{"oc":"#221f1f","x":54.202,"y":39.553,"w":3.3360000000000003,"clr":-1,"A":"left","R":[{"T":"113000","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.108,"y":39.553,"w":23.206,"clr":-1,"A":"left","R":[{"T":"Forestry%20and%20logging%20(including%20forest%20nurseries%20and%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.108,"y":40.228,"w":5.927000000000001,"clr":-1,"A":"left","R":[{"T":"timber%20tracts)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.956,"y":44.208,"w":13.783000000000008,"clr":-1,"A":"left","R":[{"T":"Schedule%20F%20(Form%201040)%202013","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":8724,"AM":1024,"x":28.773,"y":2.212,"w":37.76,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":8725,"AM":1024,"x":67.032,"y":2.19,"w":25.249,"h":0.833,"TU":"Social security number (SSN)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":8726,"AM":0,"x":82.948,"y":4.553,"w":12.174,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39A","EN":0},"TI":8727,"AM":0,"x":47.149,"y":6.008,"w":12.148,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39B","EN":0},"TI":8728,"AM":0,"x":82.948,"y":5.998,"w":12.174,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40A","EN":0},"TI":8729,"AM":0,"x":47.149,"y":7.508,"w":12.148,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40B","EN":0},"TI":8730,"AM":0,"x":83.023,"y":7.498,"w":12.099,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41A","EN":0},"TI":8731,"AM":0,"x":83.119,"y":9.665,"w":11.983,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41B","EN":0},"TI":8732,"AM":0,"x":47.149,"y":11.258,"w":12.148,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41C","EN":0},"TI":8733,"AM":0,"x":82.948,"y":11.248,"w":12.324,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":8734,"AM":0,"x":82.948,"y":12.748,"w":12.324,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L43","EN":0},"TI":8735,"AM":0,"x":82.873,"y":14.194,"w":12.249,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHINCNR","EN":0},"TI":8736,"AM":0,"x":82.873,"y":15.775,"w":12.249,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L45","EN":0},"TI":8737,"AM":1024,"x":83.023,"y":17.166,"w":12.099,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L46","EN":0},"TI":8738,"AM":0,"x":63.298,"y":18.738,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L47","EN":0},"TI":8739,"AM":0,"x":63.298,"y":20.248,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L48","EN":0},"TI":8740,"AM":1024,"x":63.298,"y":21.694,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L49","EN":0},"TI":8741,"AM":0,"x":63.298,"y":23.194,"w":12.024,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L50","EN":0},"TI":8742,"AM":1024,"x":82.935,"y":24.678,"w":12.125,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L51","EN":0},"TI":8743,"AM":0,"x":83.023,"y":26.221,"w":12.099,"h":0.833}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Profit or Loss From Farming","Creator":"Adobe LiveCycle Designer ES 9.0","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131125065904-08'00'","ModDate":"D:20140113180521-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":30.57,"y":2.76,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":2.256,"y":5.251,"w":1.5,"l":25.66,"oc":"#221f1f"},{"x":2.256,"y":6.751,"w":0.75,"l":25.66,"oc":"#221f1f"},{"x":27.885,"y":5.251,"w":1.5,"l":8.131,"oc":"#221f1f"},{"x":27.885,"y":6.751,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":2.235,"y":8.251,"w":0.75,"l":11.328,"oc":"#221f1f"},{"x":13.438,"y":6.751,"w":3,"l":8.225,"oc":"#221f1f"},{"x":13.438,"y":8.251,"w":3,"l":8.225,"oc":"#221f1f"},{"x":21.585,"y":8.251,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":22.051,"y":8.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":22.051,"y":7.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":24.735,"y":8.251,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":24.876,"y":8.126,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":24.876,"y":7.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":27.885,"y":8.251,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":2.235,"y":10.501,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":11.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":21.585,"y":12.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":12.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":12.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":11.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":12.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":12.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":12.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":13.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":13.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":14.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":14.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":14.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":15.735,"y":15.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":17.085,"y":15.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.585,"y":15.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":15.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":15.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":15.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":15.735,"y":15.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":17.085,"y":15.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.585,"y":15.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":15.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":15.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":15.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":16.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":15.735,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":17.085,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.585,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":15.735,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":17.085,"y":18.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.585,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":18.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":18.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":19.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":19.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":19.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":20.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":20.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":21.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":22.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":22.501,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":23.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":28.785,"y":13.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.685,"y":24.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.035,"y":24.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.535,"y":24.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.685,"y":25.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.035,"y":25.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.535,"y":25.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.685,"y":26.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.035,"y":26.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.535,"y":26.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.685,"y":27.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.035,"y":27.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.535,"y":27.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.685,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.035,"y":28.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.535,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.685,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.035,"y":30.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.535,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.685,"y":30.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.035,"y":30.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.535,"y":30.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.685,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.035,"y":31.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.535,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.685,"y":32.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.035,"y":32.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.535,"y":32.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.685,"y":33.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.035,"y":33.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.535,"y":33.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.685,"y":33.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.035,"y":33.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.535,"y":33.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.685,"y":33.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.685,"y":35.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.035,"y":35.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.535,"y":35.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":11.685,"y":36.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":13.035,"y":36.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":17.535,"y":36.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":24.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":24.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":24.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":24.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":25.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":25.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":25.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":26.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":26.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":26.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":27.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":27.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":27.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":27.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":27.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":27.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":28.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":29.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":29.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":29.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":30.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":30.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":30.749,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":30.749,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":30.749,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":31.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":31.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":31.499,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":20.685,"y":33.001,"w":0.75,"l":7.681,"oc":"#221f1f","dsh":1},{"x":28.785,"y":33.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":33.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":33.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":20.685,"y":33.749,"w":0.75,"l":7.681,"oc":"#221f1f","dsh":1},{"x":28.785,"y":33.749,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":33.749,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":33.749,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":20.685,"y":34.499,"w":0.75,"l":7.681,"oc":"#221f1f","dsh":1},{"x":28.785,"y":34.499,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":34.499,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":34.499,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":20.685,"y":35.251,"w":0.75,"l":7.681,"oc":"#221f1f","dsh":1},{"x":28.785,"y":35.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":35.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":35.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":20.685,"y":35.999,"w":0.75,"l":7.681,"oc":"#221f1f","dsh":1},{"x":28.785,"y":35.999,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":35.999,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":35.999,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.251,"y":36.751,"w":1.2,"l":33.75,"oc":"#221f1f"},{"x":28.785,"y":37.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":37.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":37.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":38.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":38.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":38.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":41.251,"w":1.5,"l":16.231,"oc":"#221f1f"},{"x":18.435,"y":41.251,"w":1.5,"l":10.381,"oc":"#221f1f"},{"x":28.785,"y":41.251,"w":1.5,"l":7.231,"oc":"#221f1f"}],"VLines":[{"x":7.651,"y":2.235,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":7.651,"y":3.735,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":2.235,"w":1.5,"l":0.54,"oc":"#221f1f"},{"x":30.601,"y":2.735,"w":1.5,"l":2.532,"oc":"#221f1f"},{"x":30.601,"y":3.735,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":27.901,"y":5.22,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":21.601,"y":6.688,"w":3,"l":0.828,"oc":"#221f1f"},{"x":13.501,"y":6.688,"w":3,"l":0.828,"oc":"#221f1f"},{"x":21.601,"y":7.485,"w":3,"l":0.828,"oc":"#221f1f"},{"x":13.501,"y":7.485,"w":3,"l":0.828,"oc":"#221f1f"},{"x":16.201,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":17.101,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":18.001,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":18.901,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":19.801,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":20.701,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":22.551,"y":7.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":22.051,"y":7.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":25.376,"y":7.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":24.876,"y":7.626,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":27.901,"y":6.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":29.701,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f","dsh":1},{"x":30.601,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":31.501,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":32.401,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":33.301,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.201,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":35.101,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":36.001,"y":7.501,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":21.601,"y":11.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":11.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":11.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":11.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":11.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":11.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":11.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":11.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":11.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":13.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":13.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":13.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":15.751,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":14.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":15.751,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":15.751,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":15.751,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":20.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":20.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":12.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":11.701,"y":23.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.901,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.701,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.701,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.701,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":26.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":11.701,"y":26.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.901,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":11.701,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":18.901,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.701,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.701,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.701,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":31.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.701,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.701,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":32.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.701,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":33.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":34.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.701,"y":34.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":34.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":34.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":35.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.701,"y":35.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":35.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":35.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":13.051,"y":35.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":11.701,"y":35.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18.901,"y":35.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.551,"y":35.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":29.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":29.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":29.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":31.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":31.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":31.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":32.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":32.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":32.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":32.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":33.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":33.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":33.733,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":34.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":34.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":34.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":35.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":35.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":35.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":35.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":35.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":35.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":36.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":36.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":36.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":37.486,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":22.501,"w":2.079,"h":0.743,"oc":"#221f1f"}],"Texts":[{"x":2.001,"y":2.015,"w":6.667,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"SCHEDULE F ","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":2.765,"w":5.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"(Form 1040)","S":10,"TS":[0,14,1,0]}]},{"x":2.001,"y":3.7569999999999997,"w":12.54,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.3,0,0]}]},{"x":2.001,"y":4.282,"w":13.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99)","S":-1,"TS":[0,9.3,0,0]}]},{"x":13.451,"y":2.419,"w":13.502,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Profit or Loss From Farming","S":11,"TS":[0,18,1,0]}]},{"x":9.626,"y":3.4000000000000004,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":10.001,"y":3.4930000000000003,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":10.122,"y":3.4930000000000003,"w":35.9,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Attach to Form 1040, Form 1040NR, Form 1041, Form 1065, or Form 1065-B.","S":-1,"TS":[0,11,1,0]}]},{"x":8.188,"y":4.149,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":8.563,"y":4.243,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":29.424,"y":4.243,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":31.02,"y":1.8849999999999998,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.426,"y":3.143,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":32.506,"y":3.143,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,24,1,0]}]},{"x":31.101,"y":3.6879999999999997,"w":5.725,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.101,"y":4.26,"w":6.909,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":33.998,"y":4.26,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14","S":10,"TS":[0,14,1,0]}]},{"x":2.022,"y":5.001,"w":8.482,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name of proprietor","S":2,"TS":[0,10,0,0]}]},{"x":28.026,"y":5.001,"w":14.004,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Social security number (SSN)","S":8,"TS":[0,10,1,0]}]},{"x":2.001,"y":6.483,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"A ","S":-1,"TS":[0,11,1,0]}]},{"x":2.482,"y":6.483,"w":11.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Principal crop or activity","S":-1,"TS":[0,11,0,0]}]},{"x":13.626,"y":6.483,"w":12.67,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"B Enter code from Part IV","S":-1,"TS":[0,11,1,0]}]},{"x":15.278,"y":7.191,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":21.726,"y":6.483,"w":1.278,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"C ","S":-1,"TS":[0,11,1,0]}]},{"x":22.374,"y":6.483,"w":9.059,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Accounting method:","S":-1,"TS":[0,11,0,0]}]},{"x":22.763,"y":7.333,"w":3.427,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cash ","S":-1,"TS":[0,11,0,0]}]},{"x":25.281,"y":7.333,"w":3.37,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Accrual","S":-1,"TS":[0,11,0,0]}]},{"x":28.026,"y":6.483,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"D ","S":-1,"TS":[0,11,1,0]}]},{"x":28.535,"y":6.483,"w":17.726,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Employer ID number (EIN), (see instr)","S":-1,"TS":[0,9.4,1,0]}]},{"x":2.001,"y":8.108,"w":1.223,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"E ","S":-1,"TS":[0,11,1,0]}]},{"x":31.954,"y":8.108,"w":1.685,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"x":34.204,"y":8.108,"w":1.296,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":8.858,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"F ","S":-1,"TS":[0,11,1,0]}]},{"x":2.575,"y":8.858,"w":44.05,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you make any payments in 2013 that would require you to file Form(s) 1099 (see instructions)? ","S":-1,"TS":[0,10.8,0,0]}]},{"x":24.5,"y":8.858,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":25.25,"y":8.858,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":25.999,"y":8.858,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":26.749,"y":8.858,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":27.499,"y":8.858,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":28.249,"y":8.858,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":28.998,"y":8.858,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":29.748,"y":8.858,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":30.498,"y":8.858,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":31.954,"y":8.858,"w":1.685,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"x":34.204,"y":8.858,"w":1.296,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":9.608,"w":1.334,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"G ","S":-1,"TS":[0,11,1,0]}]},{"x":2.658,"y":9.608,"w":24.022,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If “Yes,” did you or will you file required Forms 1099? ","S":-1,"TS":[0,10.8,0,0]}]},{"x":14.75,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":15.5,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":16.25,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":17,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":17.749,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":18.499,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":19.249,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":19.999,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":20.748,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":21.498,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":22.248,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":22.998,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":23.748,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":24.497,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":25.247,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":25.997,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":26.747,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":27.497,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":28.246,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":28.996,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":29.746,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":30.496,"y":9.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.8,0,0]}]},{"x":31.954,"y":9.608,"w":1.685,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"x":34.204,"y":9.608,"w":1.296,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":2.15,"y":10.322,"w":2.555,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I","S":-1,"TS":[0,13,0,0]}]},{"x":4.813,"y":10.34,"w":13.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Farm Income, Cash Method. ","S":9,"TS":[0,12,1,0]}]},{"x":12.593,"y":10.34,"w":37.563,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete Parts I and II (Accrual method. Complete Parts II and III, and Part I, line 9.)","S":3,"TS":[0,12,0,0]}]},{"x":2.623,"y":11.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1a","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":11.108,"w":25.836,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sales of livestock and other resale items (see instructions)","S":-1,"TS":[0,11,0,0]}]},{"x":17.001,"y":11.108,"w":9,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"x":21.743,"y":11.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1a","S":-1,"TS":[0,11,1,0]}]},{"x":2.901,"y":11.858,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"x":3.8,"y":11.858,"w":29.319,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cost or other basis of livestock or other items reported on line 1a ","S":-1,"TS":[0,11,0,0]}]},{"x":18.501,"y":11.858,"w":6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"x":21.734,"y":11.858,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1b","S":-1,"TS":[0,11,1,0]}]},{"x":2.901,"y":12.608,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":12.608,"w":12.874,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 1b from line 1a ","S":-1,"TS":[0,11,0,0]}]},{"x":10.251,"y":12.608,"w":36,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,0]}]},{"x":2.623,"y":13.358,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":13.358,"w":29.653,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sales of livestock, produce, grains, and other products you raised ","S":-1,"TS":[0,11,0,0]}]},{"x":19.251,"y":13.358,"w":18,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11,0,0]}]},{"x":29.087,"y":13.358,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"2","S":-1,"TS":[0,11,1,0]}]},{"x":2.623,"y":14.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3a","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":14.108,"w":20.817,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cooperative distributions (Form(s) 1099-PATR)","S":-1,"TS":[0,11,0,0]}]},{"x":14.751,"y":14.108,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":15.893,"y":14.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3a","S":-1,"TS":[0,11,1,0]}]},{"x":23.151,"y":14.108,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3b","S":-1,"TS":[0,11,1,0]}]},{"x":24.24,"y":14.108,"w":7.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable amount","S":-1,"TS":[0,11,0,0]}]},{"x":28.934,"y":14.108,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"3b","S":-1,"TS":[0,11,1,0]}]},{"x":2.623,"y":14.858,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4a","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":14.858,"w":13.799,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Agricultural program payments","S":-1,"TS":[0,11,0,0]}]},{"x":10.7,"y":14.858,"w":7.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" (see instructions)","S":-1,"TS":[0,9.8,0,0]}]},{"x":14.751,"y":14.858,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":15.893,"y":14.858,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4a","S":-1,"TS":[0,11,1,0]}]},{"x":23.151,"y":14.858,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4b","S":-1,"TS":[0,11,1,0]}]},{"x":24.24,"y":14.858,"w":7.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable amount","S":-1,"TS":[0,11,0,0]}]},{"x":28.934,"y":14.858,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"4b","S":-1,"TS":[0,11,1,0]}]},{"x":2.623,"y":15.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5a","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":15.608,"w":30.448,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Commodity Credit Corporation (CCC) loans reported under election ","S":-1,"TS":[0,11,0,0]}]},{"x":19.251,"y":15.608,"w":18,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":-1,"TS":[0,11,0,0]}]},{"x":28.943,"y":15.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5a","S":-1,"TS":[0,11,1,0]}]},{"x":2.901,"y":16.358,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":16.358,"w":9.092,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"CCC loans forfeited ","S":-1,"TS":[0,11,0,0]}]},{"x":8.751,"y":16.358,"w":13.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"x":15.884,"y":16.358,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5b","S":-1,"TS":[0,11,1,0]}]},{"x":23.151,"y":16.358,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5c","S":-1,"TS":[0,11,1,0]}]},{"x":24.243,"y":16.358,"w":7.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable amount","S":-1,"TS":[0,11,0,0]}]},{"x":28.943,"y":16.358,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"5c","S":-1,"TS":[0,11,1,0]}]},{"x":2.623,"y":17.108,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":17.108,"w":35.246,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Crop insurance proceeds and federal crop disaster payments (see instructions)","S":-1,"TS":[0,11,0,0]}]},{"x":2.901,"y":17.858,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"x":15.893,"y":17.858,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6a","S":-1,"TS":[0,11,1,0]}]},{"x":23.151,"y":17.858,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6b","S":-1,"TS":[0,11,1,0]}]},{"x":24.243,"y":17.858,"w":7.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable amount","S":-1,"TS":[0,11,0,0]}]},{"x":28.934,"y":17.858,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6b","S":-1,"TS":[0,11,1,0]}]},{"x":2.901,"y":18.608,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":18.608,"w":22.709,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If election to defer to 2014 is attached, check here ","S":-1,"TS":[0,11,0,0]}]},{"x":15.155,"y":18.514,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":20.218,"y":18.608,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6d","S":-1,"TS":[0,11,1,0]}]},{"x":21.351,"y":18.608,"w":12.653,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Amount deferred from 2012 ","S":-1,"TS":[0,11,0,0]}]},{"x":28.934,"y":18.608,"w":1.167,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"6d","S":-1,"TS":[0,11,1,0]}]},{"x":2.623,"y":19.358,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":19.358,"w":16.337,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Custom hire (machine work) income ","S":-1,"TS":[0,11,0,0]}]},{"x":12.501,"y":19.358,"w":31.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"x":29.087,"y":19.358,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"7","S":-1,"TS":[0,11,1,0]}]},{"x":2.623,"y":20.108,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11,1,0]}]},{"x":29.087,"y":20.108,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"8","S":-1,"TS":[0,11,1,0]}]},{"x":2.623,"y":20.921,"w":0.834,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.901,"y":21.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":3.801,"y":20.921,"w":7.503,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Gross income. ","S":-1,"TS":[0,11,1,0]}]},{"x":7.24,"y":20.921,"w":41.075,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add amounts in the right column (lines 1c, 2, 3b, 4b, 5a, 5c, 6b, 6d, 7, and 8). If you use the ","S":-1,"TS":[0,11,0,0]}]},{"x":3.798,"y":21.608,"w":31.971,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"accrual method, enter the amount from Part III, line 50 (see instructions)","S":-1,"TS":[0,11,0,0]}]},{"x":19.998,"y":21.608,"w":16.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......... ","S":-1,"TS":[0,11,0,0]}]},{"x":27.515,"y":21.514,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":29.087,"y":21.608,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"9","S":-1,"TS":[0,11,1,0]}]},{"x":2.15,"y":22.315,"w":2.85,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II","S":-1,"TS":[0,13,0,0]}]},{"x":4.813,"y":22.34,"w":20.784,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Farm Expenses, Cash and Accrual Method. ","S":9,"TS":[0,12,1,0]}]},{"x":16.771,"y":22.34,"w":27.059,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not include personal or living expenses (see instructions).","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":17.858,"w":11.412,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Amount received in 2013 ","S":-1,"TS":[0,11,0,0]}]},{"x":10.251,"y":17.858,"w":10.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"x":3.801,"y":20.108,"w":34.302,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other income, including federal and state gasoline or fuel tax credit or refund","S":-1,"TS":[0,11,0,0]}]},{"x":20.951,"y":20.108,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.8,0,0]}]},{"x":21.07,"y":20.108,"w":7.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions)","S":-1,"TS":[0,11,0,0]}]},{"x":25.251,"y":20.108,"w":6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":-1,"TS":[0,11,0,0]}]},{"x":28.943,"y":12.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"1c","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":23.17,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"10 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.901,"y":23.858,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":3.801,"y":23.17,"w":13.039,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Car and truck expenses (see ","S":-1,"TS":[0,9.8,0,0]}]},{"x":3.801,"y":23.858,"w":11.576,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions). Also attach ","S":-1,"TS":[0,9.8,0,0]}]},{"x":8.658,"y":23.858,"w":5.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 4562","S":-1,"TS":[0,9.8,0,0]}]},{"x":10.846,"y":23.858,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,9.8,0,0]}]},{"x":11.848,"y":23.858,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10","S":-1,"TS":[0,11,0,0]}]},{"x":2.345,"y":24.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"11","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":24.608,"w":4.964,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Chemicals ","S":-1,"TS":[0,11,0,0]}]},{"x":6.501,"y":24.608,"w":9,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"x":11.848,"y":24.608,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11","S":-1,"TS":[0,11,0,0]}]},{"x":2.345,"y":25.358,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":25.358,"w":18.594,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Conservation expenses (see instructions) ","S":-1,"TS":[0,9.24,0,0]}]},{"x":11.848,"y":25.358,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12","S":-1,"TS":[0,11,0,0]}]},{"x":2.345,"y":26.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":26.108,"w":13.058,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Custom hire (machine work) .","S":-1,"TS":[0,11,0,0]}]},{"x":11.848,"y":26.108,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13","S":-1,"TS":[0,11,0,0]}]},{"x":2.345,"y":26.92,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"14 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.901,"y":27.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8070000000000004,"y":26.895,"w":17.152,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Depreciation and section 179 expense","S":-1,"TS":[0,9.447759999999999,0,0]}]},{"x":2.727,"y":27.555,"w":14.948,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions) See Form 4562","S":-1,"TS":[0,10.38303,0,0]}]},{"x":11.848,"y":27.608,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14","S":-1,"TS":[0,11,0,0]}]},{"x":2.345,"y":28.42,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"15 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.901,"y":29.108,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":3.801,"y":28.42,"w":12.614,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Employee benefit programs ","S":-1,"TS":[0,11,0,0]}]},{"x":3.801,"y":29.108,"w":10.004,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"other than on line 23 .","S":-1,"TS":[0,11,0,0]}]},{"x":9.414,"y":29.108,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":10.164,"y":29.108,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":11.848,"y":29.108,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15","S":-1,"TS":[0,11,0,0]}]},{"x":2.345,"y":29.858,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"16","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":29.858,"w":2.519,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Feed ","S":-1,"TS":[0,11,0,0]}]},{"x":5.751,"y":29.858,"w":10.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"x":11.848,"y":29.858,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16","S":-1,"TS":[0,11,0,0]}]},{"x":2.345,"y":30.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":30.608,"w":8.629,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Fertilizers and lime ","S":-1,"TS":[0,11,0,0]}]},{"x":8.751,"y":30.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":9.501,"y":30.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":10.251,"y":30.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":11.848,"y":30.608,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17","S":-1,"TS":[0,11,0,0]}]},{"x":2.345,"y":31.357999999999997,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"18","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":31.357999999999997,"w":9.243,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Freight and trucking ","S":-1,"TS":[0,11,0,0]}]},{"x":8.751,"y":31.357999999999997,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":9.501,"y":31.357999999999997,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":10.251,"y":31.357999999999997,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":11.848,"y":31.357999999999997,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18","S":-1,"TS":[0,11,0,0]}]},{"x":2.345,"y":32.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"19","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":32.108,"w":10.168,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Gasoline, fuel, and oil .","S":-1,"TS":[0,11,0,0]}]},{"x":9.496,"y":32.108,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":10.246,"y":32.108,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":11.848,"y":32.108,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19","S":-1,"TS":[0,11,0,0]}]},{"x":2.345,"y":32.858,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":32.858,"w":12.725,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Insurance (other than health)","S":-1,"TS":[0,11,0,0]}]},{"x":11.848,"y":32.858,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20","S":-1,"TS":[0,11,0,0]}]},{"x":2.345,"y":33.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"21","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":33.608,"w":3.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Interest:","S":-1,"TS":[0,11,0,0]}]},{"x":2.901,"y":34.358,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":34.358,"w":13.429,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Mortgage (paid to banks, etc.)","S":-1,"TS":[0,11,0,0]}]},{"x":11.704,"y":34.358,"w":1.686,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21a","S":-1,"TS":[0,11,0,0]}]},{"x":2.901,"y":35.108,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":35.108,"w":2.779,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other ","S":-1,"TS":[0,11,0,0]}]},{"x":5.751,"y":35.108,"w":10.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"x":11.695,"y":35.108,"w":1.723,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21b","S":-1,"TS":[0,11,0,0]}]},{"x":2.345,"y":35.858,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"22","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":35.858,"w":16.8,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Labor hired (less employment credits)","S":-1,"TS":[0,9.8,0,0]}]},{"x":11.848,"y":35.795,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22","S":-1,"TS":[0,11,0,0]}]},{"x":18.995,"y":23.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23","S":-1,"TS":[0,11,1,0]}]},{"x":20.442,"y":23.108,"w":15.077,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Pension and profit-sharing plans ","S":-1,"TS":[0,11,0,0]}]},{"x":28.948,"y":23.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"23","S":-1,"TS":[0,11,1,0]}]},{"x":18.995,"y":23.858,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24","S":-1,"TS":[0,11,1,0]}]},{"x":20.442,"y":23.858,"w":14.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Rent or lease (see instructions):","S":-1,"TS":[0,11,0,0]}]},{"x":20.442,"y":24.608,"w":14.783,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vehicles, machinery, equipment ","S":-1,"TS":[0,11,0,0]}]},{"x":19.551,"y":24.608,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"x":28.804,"y":24.608,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24a","S":-1,"TS":[0,11,1,0]}]},{"x":19.551,"y":25.358,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"x":20.442,"y":25.358,"w":11.689,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other (land, animals, etc.) ","S":-1,"TS":[0,11,0,0]}]},{"x":26.751,"y":25.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.501,"y":25.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.795,"y":25.358,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"24b","S":-1,"TS":[0,11,1,0]}]},{"x":18.995,"y":26.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"25","S":-1,"TS":[0,11,1,0]}]},{"x":20.442,"y":26.108,"w":11.67,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Repairs and maintenance ","S":-1,"TS":[0,11,0,0]}]},{"x":26.751,"y":26.108,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.501,"y":26.108,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.948,"y":26.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"25","S":-1,"TS":[0,11,1,0]}]},{"x":18.995,"y":26.858,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26","S":-1,"TS":[0,11,1,0]}]},{"x":20.442,"y":26.858,"w":8.058,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Seeds and plants ","S":-1,"TS":[0,11,0,0]}]},{"x":24.501,"y":26.858,"w":7.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"x":28.948,"y":26.858,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"26","S":-1,"TS":[0,11,1,0]}]},{"x":18.995,"y":27.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27","S":-1,"TS":[0,11,1,0]}]},{"x":20.442,"y":27.608,"w":11.741,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Storage and warehousing ","S":-1,"TS":[0,11,0,0]}]},{"x":26.751,"y":27.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.501,"y":27.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.948,"y":27.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"27","S":-1,"TS":[0,11,1,0]}]},{"x":18.995,"y":28.358,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28","S":-1,"TS":[0,11,1,0]}]},{"x":20.442,"y":28.358,"w":4.149,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Supplies ","S":-1,"TS":[0,11,0,0]}]},{"x":23.001,"y":28.358,"w":10.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"x":28.948,"y":28.358,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"28","S":-1,"TS":[0,11,1,0]}]},{"x":18.995,"y":29.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"29","S":-1,"TS":[0,11,1,0]}]},{"x":20.442,"y":29.108,"w":2.944,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxes ","S":-1,"TS":[0,11,0,0]}]},{"x":22.251,"y":29.108,"w":12,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11,0,0]}]},{"x":28.948,"y":29.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"29","S":-1,"TS":[0,11,1,0]}]},{"x":18.995,"y":29.856,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11,1,0]}]},{"x":20.442,"y":29.856,"w":3.555,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Utilities ","S":-1,"TS":[0,11,0,0]}]},{"x":22.251,"y":29.856,"w":12,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........","S":-1,"TS":[0,11,0,0]}]},{"x":28.948,"y":29.856,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"30","S":-1,"TS":[0,11,1,0]}]},{"x":18.995,"y":30.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,1,0]}]},{"x":20.442,"y":30.608,"w":15.837,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Veterinary, breeding, and medicine ","S":-1,"TS":[0,10.6,0,0]}]},{"x":28.948,"y":30.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"31","S":-1,"TS":[0,11,1,0]}]},{"x":18.995,"y":31.356,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32","S":-1,"TS":[0,11,1,0]}]},{"x":20.442,"y":31.356,"w":11.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other expenses (specify):","S":-1,"TS":[0,11,0,0]}]},{"x":19.551,"y":32.108,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"x":28.804,"y":32.108,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32a","S":-1,"TS":[0,11,1,0]}]},{"x":19.551,"y":32.856,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"x":28.795,"y":32.856,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32b","S":-1,"TS":[0,11,1,0]}]},{"x":19.551,"y":33.606,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"c","S":-1,"TS":[0,11,1,0]}]},{"x":28.804,"y":33.606,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32c","S":-1,"TS":[0,11,1,0]}]},{"x":19.551,"y":34.358,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"d","S":-1,"TS":[0,11,1,0]}]},{"x":28.795,"y":34.358,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32d","S":-1,"TS":[0,11,1,0]}]},{"x":19.551,"y":35.106,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"e","S":-1,"TS":[0,11,1,0]}]},{"x":28.804,"y":35.106,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32e","S":-1,"TS":[0,11,1,0]}]},{"x":19.551,"y":35.858,"w":0.333,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"f","S":-1,"TS":[0,11,1,0]}]},{"x":28.865,"y":35.795,"w":1.445,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"32f","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":36.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"33","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":36.608,"w":8.059,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Total expenses. ","S":-1,"TS":[0,11,1,0]}]},{"x":7.516,"y":36.608,"w":28.507,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 10 through 32f. If line 32f is negative, see instructions ","S":-1,"TS":[0,11,0,0]}]},{"x":22.251,"y":36.608,"w":10.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"x":27.565,"y":36.514,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":28.948,"y":36.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"33","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":37.358,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"34","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":37.358,"w":11.946,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Net farm profit or (loss). ","S":-1,"TS":[0,10.84,1,0]}]},{"x":9.321,"y":37.358,"w":12.022,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 33 from line 9","S":-1,"TS":[0,10.84,0,0]}]},{"x":16.251,"y":37.358,"w":24.496,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"................","S":-1,"TS":[0,10.84,0,0]}]},{"x":3.801,"y":38.108,"w":42.711,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If a profit, stop here and see instructions for where to report. If a loss, complete lines 35 and 36.","S":-1,"TS":[0,11,0,0]}]},{"x":28.948,"y":37.358,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"34","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":38.858,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"35","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":38.858,"w":28.84,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you receive an applicable subsidy in 2013? (see instructions)","S":-1,"TS":[0,11,0,0]}]},{"x":18.501,"y":38.858,"w":25.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"x":31.954,"y":38.858,"w":1.685,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,11,0,0]}]},{"x":34.204,"y":38.858,"w":1.296,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":-1,"TS":[0,11,0,0]}]},{"x":2.345,"y":39.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"36","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":39.608,"w":49.397,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check the box that describes your investment in this activity and see instructions for where to report your loss.","S":-1,"TS":[0,11,0,0]}]},{"x":2.901,"y":40.358,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"x":4.551,"y":40.358,"w":10.521,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"All investment is at risk.","S":-1,"TS":[0,11,0,0]}]},{"x":12.801,"y":40.358,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"x":14.451,"y":40.358,"w":13.764,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Some investment is not at risk.","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":41.208,"w":32.064,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see the separate instructions.","S":-1,"TS":[0,11,1,0]}]},{"x":21.739,"y":41.213,"w":7.484,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11346H","S":2,"TS":[0,10,0,0]}]},{"x":28.916,"y":41.208,"w":13.783,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule F (Form 1040) 2013","S":-1,"TS":[0,11,1,0]}]},{"x":22.016,"y":40.281,"w":175.62,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"If at risk, you must complete Form 6198","S":-1,"TS":[0,13,0,0]}]},{"x":8.685,"y":4.243,"w":41.4,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Information about Schedule F and its separate instructions is at www.irs.gov/schedulef","S":-1,"TS":[0,11,1,0]}]},{"x":2.603,"y":8.108,"w":57.178,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you “materially participate” in the operation of this business during 2013? If “No,” see instructions for limit on passive losses","S":-1,"TS":[0,10.8,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1064,"AM":0,"TU":"Name of proprietor.","x":2.341,"y":5.935,"w":19.911,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1065,"AM":0,"TU":"Social security number (SSN)","x":27.898,"y":6.122,"w":6.693,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A","EN":0},"TI":1066,"AM":0,"TU":"Line A. Principal crop or activity.","x":2.265,"y":7.557,"w":11.145,"h":0.833},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"B","EN":0},"TI":1067,"AM":0,"TU":"Line B. Enter code from Part IV.","x":16.207,"y":7.478,"w":5.309,"h":0.833,"MV":"999999"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"D","EN":0},"TI":1070,"AM":0,"TU":"Line D. Employer ID number (EIN), (see instructions)","x":27.936,"y":7.414,"w":8.091,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":1077,"AM":0,"TU":"Line 1a. Sales of livestock and other resale items (see instructions).","x":22.988,"y":11.288,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":1078,"AM":0,"TU":"Line 1b. Cost or other basis of livestock or other items reported on line 1a.","x":22.988,"y":12.038,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1079,"AM":1024,"x":30.198,"y":12.692,"w":4.358,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"SALESRSD","EN":0},"TI":1080,"AM":0,"TU":"Line 2. Sales of livestock, produce, grains, and other products you raised.","x":30.188,"y":13.538,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5A","EN":0},"TI":1081,"AM":0,"TU":"Line 3a. Cooperative distributions (Form(s) 1099-PATR).","x":17.122,"y":14.258,"w":4.418,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5B","EN":0},"TI":1082,"AM":0,"TU":"Line 3b. Taxable amount.","x":30.188,"y":14.288,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6A","EN":0},"TI":1083,"AM":0,"TU":"Line 4a. Agricultural program payments (see instructions).","x":17.137,"y":15.038,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6B","EN":0},"TI":1084,"AM":0,"TU":"Line 4b. Taxable amount.","x":30.188,"y":15.038,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7A","EN":0},"TI":1085,"AM":0,"TU":"Line 5a. Commodity Credit Corporation (CCC) loans reported under election.","x":30.188,"y":15.788,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7B","EN":0},"TI":1086,"AM":0,"TU":"Line 5b. CCC loans forfeited.","x":17.145,"y":16.508,"w":4.417,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7C","EN":0},"TI":1087,"AM":0,"TU":"Line 5c. Taxable amount.","x":30.188,"y":16.538,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8A","EN":0},"TI":1088,"AM":0,"TU":"Line 6a. Crop insurance proceeds and federal crop disaster payments (see instructions). Amount received in 2013.","x":17.145,"y":18.008,"w":4.417,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8B","EN":0},"TI":1089,"AM":0,"TU":"Line 6b. Taxable amount.","x":30.163,"y":17.998,"w":4.454,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8D","EN":0},"TI":1091,"AM":0,"TU":"Line 6d. Amount deferred from 2012.","x":30.188,"y":18.788,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"HIRENR","EN":0},"TI":1092,"AM":0,"TU":"Line 7. Custom hire (machine work) income.","x":30.188,"y":19.538,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHERNR","EN":0},"TI":1093,"AM":0,"TU":"Line 8. Other income, including federal and state gasoline or fuel tax credit or refund (see instructions).","x":30.188,"y":20.288,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":1094,"AM":1024,"x":30.163,"y":21.803,"w":4.481,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":1095,"AM":0,"TU":"Line 23. Pension and profit-sharing plans.","x":30.188,"y":23.288,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":1096,"AM":0,"TU":"Line 10. Car and truck expenses (see instructions). Also attach Form 4562. ","x":13.09,"y":24.025,"w":4.509,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":1097,"AM":0,"TU":"Line 11. Chemicals.","x":13.088,"y":24.788,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26A3","EN":0},"TI":1098,"AM":0,"TU":"Line 24a. Rent or lease (see instructions) on Vehicles, machinery, equipment.","x":30.19,"y":24.748,"w":4.4,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":1099,"AM":0,"TU":"Line 12. Conservation expenses (see instructions).","x":13.088,"y":25.538,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26B","EN":0},"TI":1100,"AM":0,"TU":"Rent or lease (see instructions). Other (land, animals, etc.)","x":30.188,"y":25.538,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":1101,"AM":0,"TU":"Line 13. Custom hire (machine work).","x":13.088,"y":26.288,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":1102,"AM":0,"TU":"Line 25. Repairs and mantenance.","x":30.188,"y":26.288,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L28","EN":0},"TI":1103,"AM":0,"TU":"Line 26. Seeds and plants.","x":30.188,"y":27.038,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F4562F"}},"id":{"Id":"A178","EN":0},"TI":1104,"AM":1024,"TU":"Add Form 4562","x":10.14,"y":27.655,"w":1.139,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":1105,"AM":0,"TU":"Line 14. Depreciation and section 179 expense (see instructions). See Form 4562.","x":13.09,"y":27.721,"w":4.454,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L29","EN":0},"TI":1106,"AM":0,"TU":"Line 27. Storage and warehousing.","x":30.188,"y":27.788,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L30","EN":0},"TI":1107,"AM":0,"TU":"Line 28. Supplies.","x":30.188,"y":28.538,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":1108,"AM":0,"TU":"Line 15. Employee benefit programs other than on line 23.","x":13.09,"y":29.221,"w":4.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L31","EN":0},"TI":1109,"AM":0,"TU":"Line 29. Taxes.","x":30.188,"y":29.288,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":1110,"AM":0,"TU":"Line 16. Feed.","x":13.088,"y":30.038,"w":4.378,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L32","EN":0},"TI":1111,"AM":0,"TU":"Line 30. Utilities.","x":30.188,"y":30.038,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":1112,"AM":0,"TU":"Line 17. Fertilizers and lime.","x":13.088,"y":30.788,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L33","EN":0},"TI":1113,"AM":0,"TU":"Line 31. Veterinary, breeding and medicine.","x":30.188,"y":30.788,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":1114,"AM":0,"TU":"Line 18. Freight and trucking.","x":13.111,"y":31.538,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":1115,"AM":0,"TU":"Line 19. Gasoline, fuel and oil.","x":13.088,"y":32.288,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L34T_1_","EN":0},"TI":1116,"AM":0,"TU":"Line 32a. Other expenses (specify).","x":20.685,"y":32.273,"w":7.688,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L34AA_1_","EN":0},"TI":1117,"AM":0,"TU":"Line 32a. Amount.","x":30.163,"y":32.275,"w":4.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":1118,"AM":0,"TU":"Line 20. Insurance (other than health).","x":13.084,"y":33.069,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L34T_2_","EN":0},"TI":1119,"AM":0,"TU":"Line 32bOther expenses (specify).","x":20.712,"y":33.023,"w":7.66,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L34AA_2_","EN":0},"TI":1120,"AM":0,"TU":"Line 32b. Amount.","x":30.188,"y":33.038,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L34T_3_","EN":0},"TI":1121,"AM":0,"TU":"Line 32c. Other expenses (specify).","x":20.685,"y":33.745,"w":7.688,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L34AA_3_","EN":0},"TI":1122,"AM":0,"TU":"Line 32c. Amount.","x":30.188,"y":33.788,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23A","EN":0},"TI":1123,"AM":0,"TU":"Line 21a. Mortgage interest (paid to banks, etc.)","x":13.09,"y":34.444,"w":4.427,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L34T_4_","EN":0},"TI":1124,"AM":0,"TU":"Line 32d Other expenses (specify).","x":20.685,"y":34.523,"w":7.688,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L34AA_4_","EN":0},"TI":1125,"AM":0,"TU":"Line 32d. Amount.","x":30.188,"y":34.538,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23B","EN":0},"TI":1126,"AM":0,"TU":"Line 21b. Other interest.","x":13.088,"y":35.288,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L34T_5_","EN":0},"TI":1127,"AM":0,"TU":"Line 32e. Other expenses (specify).","x":20.685,"y":35.273,"w":7.688,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L34AA_5_","EN":0},"TI":1128,"AM":0,"TU":"Line 32e. Amount.","x":30.188,"y":35.288,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":1129,"AM":0,"TU":"Line 22. Labor hired (less employment credits).","x":13.088,"y":36.038,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"OTHEXP_L34T_6_","EN":0},"TI":1130,"AM":0,"TU":"Line 32f. Other expenses (specify).","x":20.686,"y":36.029,"w":7.688,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHEXP_L34AA_6_","EN":0},"TI":1131,"AM":0,"TU":"Line 32f. Amount.","x":30.188,"y":36.038,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L35","EN":0},"TI":1132,"AM":1024,"TU":"33","x":30.188,"y":36.803,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L36","EN":0},"TI":1133,"AM":1024,"TU":"Line 34. Net farm profit or (loss). Subtract line 33 from line 9.","x":30.188,"y":37.538,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"link"},"FL":{"form":{"Id":"F6198F"}},"id":{"Id":"A5","EN":0},"TI":1138,"AM":1024,"TU":"Add Form 6198","x":32.433,"y":40.381,"w":1.139,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C1","EN":0},"TI":1068,"AM":0,"TU":"Line C. Checkboxes.","x":22.025,"y":7.424,"w":0.798,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"C2","EN":0},"TI":1069,"AM":0,"TU":"Line C. Checkboxes.","x":24.673,"y":7.424,"w":0.771,"h":0.833,"checked":false}],"id":{"Id":"A177RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EY","EN":0},"TI":1071,"AM":0,"TU":"Line E. Checkboxes.","x":31.308,"y":8.233,"w":0.798,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EN","EN":0},"TI":1072,"AM":0,"TU":"Line E. Checkboxes.","x":33.568,"y":8.178,"w":0.744,"h":0.833,"checked":false}],"id":{"Id":"ERB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQD1099Y","EN":0},"TI":1073,"AM":0,"TU":"Line F. Checkboxes.","x":31.335,"y":8.886,"w":0.826,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"REQ1099N","EN":0},"TI":1074,"AM":0,"TU":"Line F. Checkboxes.","x":33.595,"y":8.886,"w":0.717,"h":0.833,"checked":false}],"id":{"Id":"FRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FIL1099Y","EN":0},"TI":1075,"AM":0,"TU":"Line G. Checkboxes.","x":31.363,"y":9.649,"w":0.744,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FIL1099N","EN":0},"TI":1076,"AM":0,"TU":"Line G. Checkboxes.","x":33.513,"y":9.676,"w":0.826,"h":0.833,"checked":false}],"id":{"Id":"GRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"L8CX","EN":0},"TI":1090,"AM":0,"TU":"Line 6c. If election to defer to 2014 is attached, check here.","x":16.961,"y":18.714,"w":0.853,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SUBSIDYY","EN":0},"TI":1134,"AM":0,"TU":"Line 34. Checkboxes.","x":31.308,"y":38.833,"w":0.798,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"SUBSIDYN","EN":0},"TI":1135,"AM":0,"TU":"Line 34. Checkboxes.","x":33.513,"y":38.833,"w":0.826,"h":0.833,"checked":false}],"id":{"Id":"SUBSIDRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B37A","EN":0},"TI":1136,"AM":0,"TU":"Line 36. Checkboxes.","x":3.703,"y":40.331,"w":1.043,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B37B","EN":0},"TI":1137,"AM":0,"TU":"Line 36. Checkboxes.","x":13.503,"y":40.331,"w":0.962,"h":0.833,"checked":false}],"id":{"Id":"B37RB","EN":0}}]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":3.001,"w":1.5,"l":31.531,"oc":"#221f1f"},{"x":33.735,"y":3.001,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":3.751,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":28.785,"y":5.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":5.253,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":5.253,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":15.735,"y":6.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":17.085,"y":6.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.585,"y":6.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":6.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":6.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":6.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":15.735,"y":8.252,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":17.085,"y":8.252,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.585,"y":8.252,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":8.252,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":8.252,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":8.252,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":8.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":10.502,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":10.502,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":10.502,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":15.735,"y":12.002,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":17.085,"y":12.002,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.585,"y":12.002,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":12.002,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":12.002,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":12.002,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":13.502,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":13.502,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":13.502,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":15.002,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":15.002,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":15.002,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":16.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":16.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":18.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":19.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":19.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":19.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":21.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":22.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":22.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":24.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":24.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":24.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":25.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":25.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":25.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":27.001,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":28.501,"w":1.2,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":29.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":37.676,"w":3,"l":16.231,"oc":"#221f1f"},{"x":2.235,"y":44.251,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":30.151,"y":3.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":3.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":3.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":4.488,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":4.488,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":15.751,"y":5.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":5.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":5.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":5.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":5.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":5.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":5.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":5.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":5.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":15.751,"y":7.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":7.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":7.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":7.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":6.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":6.736,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":6.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":7.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":7.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":8.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":8.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":8.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":9.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":9.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":9.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":9.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":15.751,"y":11.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":11.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":11.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":11.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":10.486,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":10.486,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":10.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":11.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":11.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":11.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":11.986,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":11.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":12.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":13.486,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":13.486,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":13.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":14.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":14.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":14.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":14.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":15.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":16.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":16.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":17.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":17.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":17.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":17.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":18.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":17.985,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":28.801,"y":17.985,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":34.651,"y":17.985,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":22.951,"y":19.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":19.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":19.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":20.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":20.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":21.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":22.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":22.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":22.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":24.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":25.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":25.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":3.001,"w":2.263,"h":0.75,"oc":"#221f1f"},{"x":28.801,"y":18.001,"w":1.35,"h":6.75,"oc":"#bebfc1"},{"x":2.251,"y":28.501,"w":2.286,"h":0.75,"oc":"#221f1f"},{"x":2.251,"y":29.751,"w":2.25,"h":2.25,"oc":"#221f1f"}],"Texts":[{"x":2.001,"y":27.454,"w":56.168,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"47, subtract line 47 from line 48. Enter the result on line 49. Add lines 44 and 49. Enter the total on line 50 and on Part I, line 9.","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":26.766,"w":65.946,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"*If you use the unit-livestock-price method or the farm-price method of valuing inventory and the amount on line 48 is larger than the amount on line","S":-1,"TS":[0,11,0,0]}]},{"x":2.001,"y":1.9729999999999999,"w":13.172,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule F (Form 1040) 2013","S":2,"TS":[0,10,0,0]}]},{"x":34.277,"y":2.01,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":2.01,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"x":2.15,"y":2.822,"w":3.145,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III","S":-1,"TS":[0,13,0,0]}]},{"x":4.813,"y":2.822,"w":14.781,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Farm Income„Accrual Method ","S":10,"TS":[0,14,1,0]}]},{"x":14.452,"y":2.822,"w":7.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions).","S":-1,"TS":[0,13,0,0]}]},{"x":2.345,"y":4.358,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"37","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":4.358,"w":32.579,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sales of livestock, produce, grains, and other products (see instructions) ","S":-1,"TS":[0,10.6,0,0]}]},{"x":20.001,"y":4.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":20.751,"y":4.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":21.501,"y":4.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":22.251,"y":4.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":23.001,"y":4.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":23.751,"y":4.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":24.501,"y":4.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":25.251,"y":4.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":26.001,"y":4.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":26.751,"y":4.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":27.501,"y":4.358,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,10.6,0,0]}]},{"x":28.948,"y":4.358,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"37","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":5.858,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"38a","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":5.858,"w":21.095,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cooperative distributions (Form(s) 1099-PATR) ","S":-1,"TS":[0,11,0,0]}]},{"x":14.751,"y":5.858,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":15.754000000000001,"y":5.858,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"38a","S":-1,"TS":[0,11,1,0]}]},{"x":23.151,"y":5.858,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"38b","S":-1,"TS":[0,11,1,0]}]},{"x":24.051,"y":5.858,"w":7.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable amount","S":-1,"TS":[0,11,0,0]}]},{"x":28.795,"y":5.858,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"38b","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":7.359,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"39a","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":7.359,"w":14.077,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Agricultural program payments ","S":-1,"TS":[0,11,0,0]}]},{"x":11.001,"y":7.359,"w":9,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":-1,"TS":[0,11,0,0]}]},{"x":15.754000000000001,"y":7.359,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"39a","S":-1,"TS":[0,11,1,0]}]},{"x":23.151,"y":7.359,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"39b","S":-1,"TS":[0,11,1,0]}]},{"x":24.051,"y":7.359,"w":7.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable amount","S":-1,"TS":[0,11,0,0]}]},{"x":28.795,"y":7.359,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"39b","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":8.859,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"40","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":8.859,"w":19.724,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Commodity Credit Corporation (CCC) loans:","S":-1,"TS":[0,11,0,0]}]},{"x":2.901,"y":9.609,"w":0.556,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":9.609,"w":15.835,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"CCC loans reported under election ","S":-1,"TS":[0,11,0,0]}]},{"x":11.751,"y":9.609,"w":33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11,0,0]}]},{"x":28.804,"y":9.609,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"40a","S":-1,"TS":[0,11,1,0]}]},{"x":2.901,"y":11.109,"w":0.611,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"b","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":11.109,"w":9.092,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"CCC loans forfeited ","S":-1,"TS":[0,11,0,0]}]},{"x":8.751,"y":11.109,"w":13.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":-1,"TS":[0,11,0,0]}]},{"x":15.745,"y":11.109,"w":1.723,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"40b","S":-1,"TS":[0,11,1,0]}]},{"x":23.151,"y":11.109,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"40c","S":-1,"TS":[0,11,1,0]}]},{"x":24.051,"y":11.109,"w":7.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable amount","S":-1,"TS":[0,11,0,0]}]},{"x":28.804,"y":11.109,"w":1.668,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"40c","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":12.609,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"41","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":12.609,"w":11.594,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Crop insurance proceeds ","S":-1,"TS":[0,11,0,0]}]},{"x":10.251,"y":12.609,"w":36,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":-1,"TS":[0,11,0,0]}]},{"x":28.948,"y":12.609,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"41","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":14.109,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"42","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":14.109,"w":16.337,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Custom hire (machine work) income ","S":-1,"TS":[0,11,0,0]}]},{"x":12.501,"y":14.109,"w":31.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....................","S":-1,"TS":[0,11,0,0]}]},{"x":28.948,"y":14.109,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"42","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":15.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"43","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":15.608,"w":13.892,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other income (see instructions)","S":-1,"TS":[0,11,0,0]}]},{"x":11.001,"y":15.608,"w":34.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,11,0,0]}]},{"x":28.948,"y":15.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"43","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":17.108,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"44 ","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":17.108,"w":45.318,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add amounts in the right column for lines 37 through 43 (lines 37, 38b, 39b, 40a, 40c, 41, 42, and 43) ","S":-1,"TS":[0,11,0,0]}]},{"x":26.751,"y":17.108,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":27.501,"y":17.108,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":28.948,"y":17.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"44","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":17.921,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"45 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.901,"y":18.608,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":3.801,"y":17.921,"w":33.377,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Inventory of livestock, produce, grains, and other products at beginning of ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8,"y":18.608,"w":24.118,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the year. Do not include sales reported on Form 4797 ","S":-1,"TS":[0,11,0,0]}]},{"x":16.25,"y":18.608,"w":10.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":-1,"TS":[0,11,0,0]}]},{"x":21.748,"y":18.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"45","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":19.421,"w":1.39,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"46 ","S":-1,"TS":[0,11,1,0]}]},{"x":2.901,"y":20.108,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":3.801,"y":19.421,"w":34.23,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cost of livestock, produce, grains, and other products purchased during the ","S":-1,"TS":[0,11,0,0]}]},{"x":3.8019999999999996,"y":20.108,"w":2.185,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"year ","S":-1,"TS":[0,11,0,0]}]},{"x":5.002,"y":20.108,"w":33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11,0,0]}]},{"x":21.748,"y":20.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"46","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":21.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"47","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":21.608,"w":9.171,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 45 and 46 ","S":-1,"TS":[0,11,0,0]}]},{"x":8.751,"y":21.608,"w":25.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................","S":-1,"TS":[0,11,0,0]}]},{"x":21.748,"y":21.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"47","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":23.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"48","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":23.108,"w":32.858,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Inventory of livestock, produce, grains, and other products at end of year ","S":-1,"TS":[0,11,0,0]}]},{"x":20.751,"y":23.108,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11,0,0]}]},{"x":21.748,"y":23.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"48","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":24.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"49","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":24.608,"w":40.343,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cost of livestock, produce, grains, and other products sold. Subtract line 48 from line 47* ","S":-1,"TS":[0,11,0,0]}]},{"x":24.501,"y":24.608,"w":7.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"x":28.948,"y":24.608,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"49","S":-1,"TS":[0,11,1,0]}]},{"x":2.345,"y":26.108,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"50","S":-1,"TS":[0,11,1,0]}]},{"x":3.801,"y":26.108,"w":7.503,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Gross income. ","S":-1,"TS":[0,11,1,0]}]},{"x":7.281,"y":26.108,"w":31.379,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 49 from line 44. Enter the result here and on Part I, line 9 ","S":-1,"TS":[0,11,0,0]}]},{"x":23.751,"y":26.108,"w":7.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":-1,"TS":[0,11,0,0]}]},{"x":27.565,"y":26.014,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":28.948,"y":25.983,"w":1.112,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"50","S":-1,"TS":[0,11,1,0]}]},{"x":2.148,"y":28.322,"w":3.185,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part IV","S":-1,"TS":[0,13,0,0]}]},{"x":4.813,"y":28.322,"w":17.338,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Principal Agricultural Activity Codes","S":10,"TS":[0,14,1,0]}]},{"x":2.111,"y":30.54,"w":0.892,"clr":1,"sw":0.32553125,"A":"left","R":[{"T":"F","S":-1,"TS":[0,39.4001,0,0]}]},{"x":2.906,"y":30.476,"w":0.32,"oc":"#221f1f","sw":0.390625,"A":"left","R":[{"T":"!","S":-1,"TS":[2,25,0,0]}]},{"x":2.152,"y":31.072,"w":4.796,"clr":1,"sw":0.32553125,"A":"left","R":[{"T":"CAUTION","S":-1,"TS":[0,9.5,0,0]}]},{"x":4.626,"y":29.403,"w":21.597,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not file Schedule F (Form 1040) to report the ","S":3,"TS":[0,12,0,0]}]},{"x":4.626,"y":30.012,"w":4.277,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"following.","S":3,"TS":[0,12,0,0]}]},{"x":4.626,"y":30.759,"w":23.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Income from providing agricultural services such as ","S":3,"TS":[0,12,0,0]}]},{"x":4.626,"y":31.368000000000002,"w":24.373,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"soil preparation, veterinary, farm labor, horticultural, or ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":31.976999999999997,"w":25.32,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"management for a fee or on a contract basis. Instead file ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":32.586,"w":24.986,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule C (Form 1040) or Schedule C-EZ (Form 1040).","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":33.333,"w":26.724,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Income from breeding, raising, or caring for dogs, cats, or ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":33.943,"w":25.616,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"other pet animals. Instead file Schedule C (Form 1040) or ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":34.552,"w":12.706,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule C-EZ (Form 1040).","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":35.299,"w":25.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Sales of livestock held for draft, breeding, sport, or dairy ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":35.908,"w":14.91,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"purposes. Instead file Form 4797.","S":3,"TS":[0,12,0,0]}]},{"x":2.563,"y":37.64,"w":25.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"These codes for the Principal Agricultural Activity classify ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":38.249,"w":28.116,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"farms by their primary activity to facilitate the administration of ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":38.858,"w":28.412,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the Internal Revenue Code. These six-digit codes are based on ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":39.468,"w":26.521,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"the North American Industry Classification System (NAICS).","S":3,"TS":[0,12,0,0]}]},{"x":2.563,"y":40.152,"w":25.32,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Select the code that best identifies your primary farming ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":40.761,"w":21.357,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"activity and enter the six-digit number on line B.","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":41.571,"w":7.889,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Crop Production","S":9,"TS":[0,12,1,0]}]},{"x":2.001,"y":42.321,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"111100","S":3,"TS":[0,12,0,0]}]},{"x":4.876,"y":42.321,"w":11.484,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Oilseed and grain farming","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":43.008,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"111210","S":3,"TS":[0,12,0,0]}]},{"x":4.876,"y":43.008,"w":13.096,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Vegetable and melon farming","S":3,"TS":[0,12,0,0]}]},{"x":19.551,"y":29.492,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"111300","S":3,"TS":[0,12,0,0]}]},{"x":22.426,"y":29.492,"w":11.318,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Fruit and tree nut farming","S":3,"TS":[0,12,0,0]}]},{"x":19.551,"y":30.242,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"111400","S":3,"TS":[0,12,0,0]}]},{"x":22.426,"y":30.242,"w":21.67,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Greenhouse, nursery, and floriculture production","S":3,"TS":[0,12,0,0]}]},{"x":19.551,"y":30.991,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"111900","S":3,"TS":[0,12,0,0]}]},{"x":22.426,"y":30.991,"w":8.465,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other crop farming","S":3,"TS":[0,12,0,0]}]},{"x":19.551,"y":31.866999999999997,"w":8.89,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Animal Production","S":9,"TS":[0,12,1,0]}]},{"x":19.551,"y":32.616,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"112111","S":3,"TS":[0,12,0,0]}]},{"x":22.426,"y":32.616,"w":14.558,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Beef cattle ranching and farming","S":3,"TS":[0,12,0,0]}]},{"x":19.551,"y":33.366,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"112112","S":3,"TS":[0,12,0,0]}]},{"x":22.426,"y":33.366,"w":6.5,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cattle feedlots","S":3,"TS":[0,12,0,0]}]},{"x":19.551,"y":34.116,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"112120","S":3,"TS":[0,12,0,0]}]},{"x":22.426,"y":34.116,"w":14.226,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Dairy cattle and milk production","S":3,"TS":[0,12,0,0]}]},{"x":19.551,"y":34.866,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"112210","S":3,"TS":[0,12,0,0]}]},{"x":22.426,"y":34.866,"w":9.15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Hog and pig farming","S":3,"TS":[0,12,0,0]}]},{"x":19.551,"y":35.616,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"112300","S":3,"TS":[0,12,0,0]}]},{"x":22.426,"y":35.616,"w":12.206,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Poultry and egg production","S":3,"TS":[0,12,0,0]}]},{"x":19.551,"y":36.365,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"112400","S":3,"TS":[0,12,0,0]}]},{"x":22.426,"y":36.365,"w":10.762,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sheep and goat farming","S":3,"TS":[0,12,0,0]}]},{"x":19.551,"y":37.115,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"112510","S":3,"TS":[0,12,0,0]}]},{"x":22.426,"y":37.115,"w":5.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Aquaculture","S":3,"TS":[0,12,0,0]}]},{"x":19.551,"y":37.865,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"112900","S":3,"TS":[0,12,0,0]}]},{"x":22.426,"y":37.865,"w":10.837,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Other animal production","S":3,"TS":[0,12,0,0]}]},{"x":19.551,"y":38.803,"w":10.279,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Forestry and Logging","S":9,"TS":[0,12,1,0]}]},{"x":19.551,"y":39.553,"w":3.336,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"113000","S":3,"TS":[0,12,0,0]}]},{"x":22.426,"y":39.553,"w":23.206,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Forestry and logging (including forest nurseries and ","S":3,"TS":[0,12,0,0]}]},{"x":22.426,"y":40.228,"w":5.927,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"timber tracts)","S":3,"TS":[0,12,0,0]}]},{"x":28.916,"y":44.208,"w":13.783,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"Schedule F (Form 1040) 2013","S":-1,"TS":[0,11,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":2187,"AM":1024,"x":10.463,"y":2.212,"w":13.731,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2188,"AM":1024,"TU":"Social security number (SSN)","x":24.375,"y":2.19,"w":9.182,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L38","EN":0},"TI":2189,"AM":0,"x":30.163,"y":4.553,"w":4.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39A","EN":0},"TI":2190,"AM":0,"x":17.145,"y":6.008,"w":4.417,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L39B","EN":0},"TI":2191,"AM":0,"x":30.163,"y":5.998,"w":4.427,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40A","EN":0},"TI":2192,"AM":0,"x":17.145,"y":7.508,"w":4.417,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L40B","EN":0},"TI":2193,"AM":0,"x":30.19,"y":7.498,"w":4.4,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41A","EN":0},"TI":2194,"AM":0,"x":30.225,"y":9.665,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41B","EN":0},"TI":2195,"AM":0,"x":17.145,"y":11.258,"w":4.417,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L41C","EN":0},"TI":2196,"AM":0,"x":30.163,"y":11.248,"w":4.481,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L42","EN":0},"TI":2197,"AM":0,"x":30.163,"y":12.748,"w":4.481,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L43","EN":0},"TI":2198,"AM":0,"x":30.136,"y":14.194,"w":4.454,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"OTHINCNR","EN":0},"TI":2199,"AM":0,"x":30.136,"y":15.775,"w":4.454,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L45","EN":0},"TI":2200,"AM":1024,"x":30.19,"y":17.166,"w":4.4,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L46","EN":0},"TI":2201,"AM":0,"x":23.017,"y":18.738,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L47","EN":0},"TI":2202,"AM":0,"x":23.017,"y":20.248,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L48","EN":0},"TI":2203,"AM":1024,"x":23.017,"y":21.694,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L49","EN":0},"TI":2204,"AM":0,"x":23.017,"y":23.194,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L50","EN":0},"TI":2205,"AM":1024,"x":30.158,"y":24.678,"w":4.409,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L51","EN":0},"TI":2206,"AM":0,"x":30.19,"y":26.221,"w":4.4,"h":0.833}],"Boxsets":[]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHHS.json b/test/data/fd/form/FSCHHS.json index 565db4b5..acca4673 100755 --- a/test/data/fd/form/FSCHHS.json +++ b/test/data/fd/form/FSCHHS.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":5.25,"w":1.5,"l":92.899},{"oc":"#221f1f","x":6.145,"y":5.256,"w":1.5,"l":14.936},{"oc":"#221f1f","x":84.064,"y":3,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.064,"y":5.25,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":5.25,"w":1.5,"l":70.624},{"oc":"#221f1f","x":6.145,"y":8.25,"w":0.75,"l":70.624},{"oc":"#221f1f","x":76.682,"y":5.25,"w":1.5,"l":22.361},{"oc":"#221f1f","x":76.682,"y":6.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.682,"y":6.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.682,"y":8.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.145,"y":24,"w":1.5,"l":92.899},{"oc":"#221f1f","x":6.145,"y":25.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":60.595,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":27,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":25.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":28.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":30,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":28.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":33,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":36,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":36,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":36,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":36,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":36,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":36,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":37.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":44.25,"w":1.5,"l":49.586},{"oc":"#221f1f","x":55.645,"y":44.25,"w":1.5,"l":26.073},{"oc":"#221f1f","x":81.632,"y":44.25,"w":1.5,"l":17.411}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.15,"y":2.984,"w":1.5,"l":2.281},{"oc":"#221f1f","x":76.725,"y":5.219,"w":0.75,"l":1.547},{"oc":"#221f1f","x":76.725,"y":6.734,"w":0.75,"l":1.531},{"oc":"#181616","x":79.2,"y":7.5,"w":0.75,"l":0.731},{"dsh":1,"oc":"#181616","x":81.685,"y":7.575,"w":0.75,"l":0.563},{"oc":"#181616","x":84.171,"y":7.5,"w":0.75,"l":0.731},{"oc":"#181616","x":86.656,"y":7.5,"w":0.75,"l":0.731},{"oc":"#181616","x":89.141,"y":7.5,"w":0.75,"l":0.731},{"oc":"#181616","x":91.627,"y":7.5,"w":0.75,"l":0.731},{"oc":"#181616","x":93.985,"y":7.5,"w":0.75,"l":0.731},{"oc":"#181616","x":96.496,"y":7.5,"w":0.75,"l":0.731},{"oc":"#221f1f","x":64.35,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":25.485,"w":0.75,"l":1.547},{"oc":"#221f1f","x":79.2,"y":25.485,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.288,"y":25.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":25.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":25.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":28.485,"w":0.75,"l":1.547},{"oc":"#221f1f","x":79.2,"y":28.485,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":31.484,"w":0.75,"l":1.547},{"oc":"#221f1f","x":79.2,"y":31.484,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.288,"y":31.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":31.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":31.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":34.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":35.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":35.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":35.976,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":35.976,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":35.976,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":35.976,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":36.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":36.727,"w":0.75,"l":0.789}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#fcfae1","x":6.188,"y":2.25,"w":92.813,"h":45,"clr":-1},{"x":6.188,"y":5.25,"w":70.538,"h":3,"clr":1},{"x":76.725,"y":5.25,"w":22.275,"h":1.5,"clr":1},{"x":76.725,"y":6.75,"w":22.275,"h":1.5,"clr":1},{"oc":"#221f1f","x":6.188,"y":24.375,"w":6.188,"h":0.75,"clr":-1},{"x":60.638,"y":26.25,"w":3.712,"h":0.75,"clr":1},{"x":64.35,"y":26.25,"w":11.138,"h":0.75,"clr":1},{"x":75.488,"y":26.25,"w":3.713,"h":0.75,"clr":1},{"oc":"#bebfc1","x":79.2,"y":25.5,"w":3.712,"h":1.5,"clr":-1},{"x":82.913,"y":25.5,"w":12.375,"h":2.25,"clr":1},{"x":95.288,"y":25.5,"w":3.712,"h":2.25,"clr":1},{"x":79.2,"y":27,"w":3.712,"h":1.5,"clr":1},{"x":82.913,"y":27.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":27.75,"w":3.712,"h":0.75,"clr":1},{"x":60.638,"y":29.25,"w":3.712,"h":0.75,"clr":1},{"x":64.35,"y":29.25,"w":11.138,"h":0.75,"clr":1},{"x":75.488,"y":29.25,"w":3.713,"h":0.75,"clr":1},{"oc":"#bebfc1","x":79.2,"y":28.5,"w":3.712,"h":1.5,"clr":-1},{"x":82.913,"y":28.5,"w":12.375,"h":2.25,"clr":1},{"x":95.288,"y":28.5,"w":3.712,"h":2.25,"clr":1},{"x":79.2,"y":30,"w":3.712,"h":1.5,"clr":1},{"x":82.913,"y":30.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":30.75,"w":3.712,"h":0.75,"clr":1},{"x":60.638,"y":32.25,"w":3.712,"h":0.75,"clr":1},{"x":64.35,"y":32.25,"w":11.138,"h":0.75,"clr":1},{"x":75.488,"y":32.25,"w":3.713,"h":0.75,"clr":1},{"oc":"#bebfc1","x":79.2,"y":31.5,"w":3.712,"h":1.5,"clr":-1},{"x":82.913,"y":31.5,"w":12.375,"h":2.25,"clr":1},{"x":95.288,"y":31.5,"w":3.712,"h":2.25,"clr":1},{"x":79.2,"y":33,"w":3.712,"h":1.5,"clr":1},{"x":82.913,"y":33.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":33.75,"w":3.712,"h":0.75,"clr":1},{"x":79.2,"y":34.5,"w":3.712,"h":1.5,"clr":1},{"x":82.913,"y":34.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":34.5,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":35.25,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":35.25,"w":3.712,"h":0.75,"clr":1},{"x":79.2,"y":36,"w":3.712,"h":1.5,"clr":1},{"x":82.913,"y":36,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":36,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":36.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":36.75,"w":3.712,"h":0.75,"clr":1},{"oc":"#221f1f","x":-0.798,"y":49.5,"w":1.596,"h":0.29,"clr":-1},{"oc":"#221f1f","x":0.037,"y":48.92,"w":1.596,"h":0.58,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.009,"w":7.077,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20H%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":2.696,"w":5.871,"clr":-1,"A":"left","R":[{"T":"(Form%201040)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.819,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.319,"w":13.279000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":36.198,"y":2.1,"w":14.02,"clr":-1,"A":"left","R":[{"T":"Household%20Employment%20Taxes%20%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":24.191,"y":2.794,"w":40.95,"clr":-1,"A":"left","R":[{"T":"(For%20Social%20Security%2C%20Medicare%2C%20Withheld%20Income%2C%20and%20Federal%20Unemployment%20(FUTA)%20Taxes)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.045,"y":3.4770000000000003,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":37.411,"y":3.5709999999999997,"w":22.714000000000006,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%201040NR%2C%201040-SS%2C%20or%201041.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":22.966,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.38,"y":4.242,"w":30.680999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Schedule%20H%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.565,"y":4.242,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform1040.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.741,"y":1.972,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1971","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.857,"y":3.33,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.202,"y":3.33,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.963,"y":3.9189999999999996,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.963,"y":4.365,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.94,"y":4.365,"w":1.112,"clr":-1,"A":"left","R":[{"T":"44","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5,"w":8.502,"clr":-1,"A":"left","R":[{"T":"Name%20of%20employer%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.163,"y":5,"w":11.220000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.163,"y":6.5,"w":14.937000000000003,"clr":-1,"A":"left","R":[{"T":"Employer%20identification%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.839,"w":48.79099999999997,"clr":-1,"A":"left","R":[{"T":"Calendar%20year%20taxpayers%20having%20no%20household%20employees%20in%202013%20do%20not%20have%20to%20complete%20this%20form%20for%202013.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.353,"y":10.452,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":10.464,"w":5.6129999999999995,"clr":-1,"A":"left","R":[{"T":"Did%20you%20pay%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.043,"y":10.464,"w":3.742,"clr":-1,"A":"left","R":[{"T":"any%20one","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.304,"y":10.464,"w":44.65899999999999,"clr":-1,"A":"left","R":[{"T":"%20household%20employee%20cash%20wages%20of%20%241%2C800%20or%20more%20in%202013%3F%20(If%20any%20household%20employee%20was%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.644,"y":11.152,"w":53.64099999999995,"clr":-1,"A":"left","R":[{"T":"spouse%2C%20your%20child%20under%20age%2021%2C%20your%20parent%2C%20or%20anyone%20under%20age%2018%2C%20see%20the%20line%20A%20instructions%20before%20you%20answer%20this","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.63,"y":11.839,"w":4.668000000000001,"clr":-1,"A":"left","R":[{"T":"question.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.203,"y":13.339,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.383,"y":13.339,"w":16.264000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20Skip%20lines%20B%20and%20C%20and%20go%20to%20line%201.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.204,"y":14.089,"w":2.464,"clr":-1,"A":"left","R":[{"T":"No.%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.015,"y":14.089,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%20B.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.324,"y":15.588999999999999,"w":0.982,"clr":-1,"A":"left","R":[{"T":"B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":15.588999999999999,"w":35.416,"clr":-1,"A":"left","R":[{"T":"Did%20you%20withhold%20federal%20income%20tax%20during%202013%20for%20any%20household%20employee%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":17.089,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.305,"y":17.089,"w":12.837000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20Skip%20line%20C%20and%20go%20to%20line%207.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.126,"y":17.839,"w":2.464,"clr":-1,"A":"left","R":[{"T":"No.%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.937999999999999,"y":17.839,"w":5.593,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%20C.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.266,"y":19.386,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":19.402,"w":5.6129999999999995,"clr":-1,"A":"left","R":[{"T":"Did%20you%20pay%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.815,"y":19.402,"w":2.1470000000000002,"clr":-1,"A":"left","R":[{"T":"total","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.297,"y":19.402,"w":15.170000000000007,"clr":-1,"A":"left","R":[{"T":"%20cash%20wages%20of%20%241%2C000%20or%20more%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.889,"y":19.402,"w":1.686,"clr":-1,"A":"left","R":[{"T":"any","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.658,"y":19.402,"w":4.4079999999999995,"clr":-1,"A":"left","R":[{"T":"%20calendar%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.637,"y":19.402,"w":3.482,"clr":-1,"A":"left","R":[{"T":"quarter","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.184,"y":19.402,"w":8.782000000000004,"clr":-1,"A":"left","R":[{"T":"%20of%202012%20or%202013%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.574,"y":19.402,"w":1.09,"clr":-1,"A":"left","R":[{"T":"all","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.421,"y":19.402,"w":10.911000000000003,"clr":-1,"A":"left","R":[{"T":"%20household%20employees%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.642,"y":20.089,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.042,"y":20.089,"w":3.4639999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.401,"y":20.089,"w":43.307999999999964,"clr":-1,"A":"left","R":[{"T":"count%20cash%20wages%20paid%20in%202012%20or%202013%20to%20your%20spouse%2C%20your%20child%20under%20age%2021%2C%20or%20your%20parent.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":21.589,"w":5.243,"clr":-1,"A":"left","R":[{"T":"No.%20%20%20Stop.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.235,"y":21.589,"w":11.299000000000003,"clr":-1,"A":"left","R":[{"T":"Do%20not%20file%20this%20schedule.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.114,"y":22.339,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Yes.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.725,"y":22.339,"w":14.394000000000002,"clr":-1,"A":"left","R":[{"T":"Skip%20lines%201-9%20and%20go%20to%20line%2010.%20","S":3,"TS":[0,12,0,0]}]},{"x":6.836,"y":24.196,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.156,"y":24.196,"w":25.532000000000007,"clr":-1,"A":"left","R":[{"T":"Social%20Security%2C%20Medicare%2C%20and%20Federal%20Income%20Taxes%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.552,"y":26.099,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":26.089,"w":20.815,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20wages%20subject%20to%20social%20security%20tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":26.089,"w":11.997,"clr":-1,"A":"left","R":[{"T":"........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.814,"y":26.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":27.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":27.589,"w":22.209000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20security%20tax.%20Multiply%20line%201%20by%2012.4%25%20(.124)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.124,"y":27.589,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":27.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":29.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":29.089,"w":18.889999999999997,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20wages%20subject%20to%20Medicare%20tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":29.089,"w":14.663,"clr":-1,"A":"left","R":[{"T":"..........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.814,"y":29.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":30.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":30.589,"w":19.302000000000003,"clr":-1,"A":"left","R":[{"T":"Medicare%20tax.%20Multiply%20line%203%20by%202.9%25%20(.029)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.001,"y":30.589,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"..................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":30.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":32.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":32.089,"w":29.613,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20wages%20subject%20to%20Additional%20Medicare%20Tax%20withholding%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.09,"y":32.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.814,"y":32.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":33.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":33.589,"w":30.025000000000006,"clr":-1,"A":"left","R":[{"T":"Additional%20Medicare%20Tax%20withholding.%20Multiply%20line%205%20by%200.9%25%20(.009)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.499,"y":33.589,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":33.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":35.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":35.089,"w":15.520000000000003,"clr":-1,"A":"left","R":[{"T":"Federal%20income%20tax%20withheld%2C%20if%20any","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":35.089,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":".....................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":35.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":36.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":36.589,"w":27.714,"clr":-1,"A":"left","R":[{"T":"Total%20social%20security%2C%20Medicare%2C%20and%20federal%20income%20taxes.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.52,"y":36.589,"w":10.283000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%202%2C%204%2C%206%2C%20and%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.876,"y":36.589,"w":6.665,"clr":-1,"A":"left","R":[{"T":"....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":36.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":38.155,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":38.152,"w":5.6129999999999995,"clr":-1,"A":"left","R":[{"T":"Did%20you%20pay%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.639,"y":38.152,"w":2.1470000000000002,"clr":-1,"A":"left","R":[{"T":"total","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.062,"y":38.152,"w":15.170000000000007,"clr":-1,"A":"left","R":[{"T":"%20cash%20wages%20of%20%241%2C000%20or%20more%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.243,"y":38.152,"w":1.686,"clr":-1,"A":"left","R":[{"T":"any","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.953,"y":38.152,"w":4.4079999999999995,"clr":-1,"A":"left","R":[{"T":"%20calendar%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.874,"y":38.152,"w":3.482,"clr":-1,"A":"left","R":[{"T":"quarter","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.362,"y":38.152,"w":8.782000000000004,"clr":-1,"A":"left","R":[{"T":"%20of%202012%20or%202013%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.457,"y":38.152,"w":1.09,"clr":-1,"A":"left","R":[{"T":"all","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.246,"y":38.152,"w":10.911000000000003,"clr":-1,"A":"left","R":[{"T":"%20household%20employees%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.645,"y":38.839,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.046,"y":38.839,"w":3.1859999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.974,"y":38.839,"w":43.58599999999997,"clr":-1,"A":"left","R":[{"T":"%20count%20cash%20wages%20paid%20in%202012%20or%202013%20to%20your%20spouse%2C%20your%20child%20under%20age%2021%2C%20or%20your%20parent.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":40.339,"w":4.965,"clr":-1,"A":"left","R":[{"T":"No.%20%20Stop.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.996,"y":40.339,"w":33.586,"clr":-1,"A":"left","R":[{"T":"Include%20the%20amount%20from%20line%208%20above%20on%20Form%201040%2C%20line%2059a.%20If%20you%20are%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.394,"y":40.339,"w":15.35600000000001,"clr":-1,"A":"left","R":[{"T":"required%20to%20file%20Form%201040%2C%20see%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.094,"y":41.026,"w":8.391000000000002,"clr":-1,"A":"left","R":[{"T":"line%209%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":42.589,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.305,"y":42.589,"w":6.539,"clr":-1,"A":"left","R":[{"T":"%20%20Go%20to%20line%2010.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":44.144,"w":35.76,"clr":-1,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20the%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.962,"y":44.125,"w":7.707000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2012187K%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.126,"y":44.125,"w":14.096000000000005,"clr":-1,"A":"left","R":[{"T":"Schedule%20H%20(Form%201040)%202013%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8744,"AM":1024,"x":77.442,"y":5.993,"w":18.951,"h":0.833,"TU":"Sequence No. 44"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8745,"AM":1024,"x":6.214,"y":7.187,"w":70.178,"h":0.912},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":8746,"AM":0,"x":77.566,"y":7.495,"w":18.835,"h":0.833,"TU":"Employer identification number","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":8753,"AM":0,"x":64.474,"y":26.258,"w":10.911,"h":0.833,"TU":"Line 1. Total cash wages subject to social security tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":8754,"AM":1024,"x":83.16,"y":27.686,"w":11.901,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":8755,"AM":0,"x":64.474,"y":29.258,"w":10.911,"h":0.833,"TU":"Line 3. Total cash wages subject to Medicare tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":8756,"AM":1024,"x":83.16,"y":30.605,"w":11.901,"h":0.88},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5AMED","EN":0},"TI":8757,"AM":0,"x":64.399,"y":32.265,"w":10.911,"h":0.833,"TU":"Line 5. Total cash wages subject to Additional Medicare Tax withholding."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6AMED","EN":0},"TI":8758,"AM":1024,"x":83.283,"y":33.631,"w":11.901,"h":0.88},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":8759,"AM":0,"x":83.098,"y":35.221,"w":12.024,"h":0.833,"TU":"Line 7. Federal income tax withheld, if any."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":8760,"AM":1024,"x":83.01,"y":36.545,"w":11.901,"h":0.88}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXA1","EN":0},"TI":8747,"AM":0,"x":9.882,"y":13.542,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXA2","EN":0},"TI":8748,"AM":0,"x":9.796,"y":14.3,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BXARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXB1","EN":0},"TI":8749,"AM":0,"x":9.839,"y":17.269,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXB2","EN":0},"TI":8750,"AM":0,"x":9.752,"y":18.027,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BXBRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXC1","EN":0},"TI":8751,"AM":0,"x":9.819,"y":21.754,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXC2","EN":0},"TI":8752,"AM":0,"x":9.732,"y":22.512,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BXCRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX91","EN":0},"TI":8761,"AM":0,"x":9.839,"y":40.505,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX92","EN":0},"TI":8762,"AM":0,"x":9.827,"y":42.788,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BX9RB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":3,"w":1.5,"l":87.949},{"oc":"#221f1f","x":94.007,"y":3,"w":1.5,"l":5.036},{"oc":"#221f1f","x":6.145,"y":3.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":91.532,"y":5.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":5.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.82,"y":5.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.82,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.575,"y":6,"w":0.75,"l":3.712},{"oc":"#221f1f","x":91.575,"y":5.25,"w":0.75,"l":3.712},{"oc":"#221f1f","x":95.245,"y":5.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.82,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.82,"y":6.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.575,"y":6.75,"w":0.75,"l":3.712},{"oc":"#221f1f","x":91.575,"y":6,"w":0.75,"l":3.712},{"oc":"#221f1f","x":95.245,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":6.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.82,"y":6.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.82,"y":7.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.575,"y":7.5,"w":0.75,"l":3.712},{"oc":"#221f1f","x":91.575,"y":6.75,"w":0.75,"l":3.712},{"oc":"#221f1f","x":95.245,"y":6.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":7.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":9.75,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":10.5,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":56.648,"y":11.25,"w":0.75,"l":21.357},{"oc":"#221f1f","x":79.157,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":10.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":13.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":14.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":14.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":14.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":14.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":15,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":15.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":16.5,"w":0.75,"l":17.411},{"oc":"#221f1f","x":6.145,"y":19.5,"w":0.75,"l":17.411},{"oc":"#221f1f","x":20.763,"y":16.547,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.47,"y":19.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":34.265,"y":16.5,"w":0.75,"l":15.258},{"oc":"#221f1f","x":34.709,"y":18.422,"w":0.75,"l":14.114},{"oc":"#221f1f","x":34.538,"y":19.5,"w":0.75,"l":8.783},{"oc":"#221f1f","x":41.582,"y":19.5,"w":0.75,"l":7.843},{"oc":"#221f1f","x":49.457,"y":16.5,"w":0.75,"l":7.511},{"oc":"#221f1f","x":49.457,"y":19.5,"w":0.75,"l":7.511},{"oc":"#221f1f","x":56.882,"y":16.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":56.882,"y":19.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.02,"y":16.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.02,"y":19.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":79.157,"y":16.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.157,"y":19.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.057,"y":16.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.057,"y":19.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":6.145,"y":19.5,"w":0.75,"l":17.411},{"oc":"#221f1f","x":6.145,"y":21,"w":0.75,"l":17.411},{"oc":"#221f1f","x":20.805,"y":21.047,"w":0.75,"l":13.613},{"oc":"#221f1f","x":20.805,"y":19.547,"w":0.75,"l":13.613},{"oc":"#221f1f","x":49.5,"y":21,"w":0.75,"l":7.425},{"oc":"#221f1f","x":49.5,"y":19.5,"w":0.75,"l":7.425},{"oc":"#221f1f","x":56.925,"y":21,"w":0.75,"l":11.138},{"oc":"#221f1f","x":56.925,"y":19.5,"w":0.75,"l":11.138},{"oc":"#221f1f","x":68.063,"y":21,"w":0.75,"l":11.138},{"oc":"#221f1f","x":68.063,"y":19.5,"w":0.75,"l":11.138},{"oc":"#221f1f","x":79.2,"y":21,"w":0.75,"l":9.9},{"oc":"#221f1f","x":79.2,"y":19.5,"w":0.75,"l":9.9},{"oc":"#221f1f","x":89.057,"y":19.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.057,"y":21,"w":0.75,"l":9.986},{"oc":"#221f1f","x":6.145,"y":21,"w":0.75,"l":17.411},{"oc":"#221f1f","x":6.145,"y":22.5,"w":1.125,"l":17.411},{"oc":"#221f1f","x":20.694,"y":21,"w":0.75,"l":16.362},{"oc":"#221f1f","x":20.694,"y":22.5,"w":1.125,"l":16.362},{"oc":"#221f1f","x":37.082,"y":21,"w":0.75,"l":6.273},{"oc":"#221f1f","x":37.082,"y":22.5,"w":1.125,"l":6.273},{"oc":"#221f1f","x":43.27,"y":21,"w":0.75,"l":6.273},{"oc":"#221f1f","x":43.27,"y":22.5,"w":1.125,"l":6.273},{"oc":"#221f1f","x":49.457,"y":21,"w":0.75,"l":7.511},{"oc":"#221f1f","x":49.457,"y":22.5,"w":1.125,"l":7.511},{"oc":"#221f1f","x":56.882,"y":21,"w":0.75,"l":11.223},{"oc":"#221f1f","x":56.882,"y":22.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":68.02,"y":21,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.02,"y":22.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":79.157,"y":21,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.157,"y":22.5,"w":1.125,"l":9.986},{"oc":"#221f1f","x":89.057,"y":21,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.057,"y":22.5,"w":1.125,"l":9.986},{"oc":"#221f1f","x":75.445,"y":22.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":75.445,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":22.5,"w":1.125,"l":9.986},{"oc":"#221f1f","x":89.057,"y":22.5,"w":1.125,"l":9.986},{"oc":"#221f1f","x":79.157,"y":24,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.057,"y":24,"w":0.75,"l":9.986},{"oc":"#221f1f","x":60.595,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":24.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.488,"y":24.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":24,"w":0.75,"l":3.713},{"oc":"#221f1f","x":79.157,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":24,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":25.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":25.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":25.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.913,"y":26.25,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":25.5,"w":0.75,"l":12.375},{"oc":"#221f1f","x":95.245,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":27,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":26.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":28.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":28.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":29.25,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":30,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.157,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":30.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":30.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":30.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":30.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":30.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.87,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":30.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.245,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":33.75,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":34.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":34.5,"w":0.75,"l":70.624},{"oc":"#221f1f","x":6.145,"y":36,"w":0.75,"l":70.624},{"oc":"#221f1f","x":76.682,"y":34.5,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.682,"y":36,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.145,"y":36,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":37.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":37.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":41.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":40.5,"w":0.75,"l":53.299},{"oc":"#221f1f","x":68.02,"y":40.5,"w":0.75,"l":31.023},{"oc":"#221f1f","x":6.145,"y":41.25,"w":0.75,"l":8.748},{"oc":"#221f1f","x":6.145,"y":44.25,"w":0.75,"l":8.748},{"oc":"#221f1f","x":14.807,"y":41.25,"w":0.75,"l":26.073},{"oc":"#221f1f","x":14.807,"y":42.75,"w":0.75,"l":26.073},{"oc":"#221f1f","x":40.795,"y":41.25,"w":0.75,"l":26.073},{"oc":"#221f1f","x":40.795,"y":42.75,"w":0.75,"l":26.073},{"oc":"#221f1f","x":66.782,"y":41.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":66.782,"y":42.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.92,"y":41.25,"w":0.75,"l":8.748},{"oc":"#221f1f","x":77.92,"y":42.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.84,"y":42.094,"w":0.75,"l":1.375},{"oc":"#221f1f","x":82.84,"y":41.594,"w":0.75,"l":1.375},{"oc":"#221f1f","x":86.582,"y":41.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":42.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":14.807,"y":43.5,"w":0.75,"l":59.486},{"oc":"#221f1f","x":14.807,"y":44.25,"w":0.75,"l":59.486},{"oc":"#221f1f","x":74.207,"y":43.5,"w":0.75,"l":24.836},{"oc":"#221f1f","x":74.207,"y":44.25,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.145,"y":44.25,"w":1.5,"l":92.899},{"oc":"#bfbfbf","x":-0.712,"y":49.5,"w":0.75,"l":1.425}],"VLines":[{"oc":"#221f1f","x":91.575,"y":3.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":3.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.863,"y":5.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":5.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":91.575,"y":5.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":5.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":87.863,"y":5.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":6,"w":0.75,"l":0.75},{"oc":"#221f1f","x":91.575,"y":6,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":5.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":87.863,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":6.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":91.575,"y":6.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":10.484,"w":0.75,"l":3.047},{"oc":"#221f1f","x":79.2,"y":10.484,"w":0.75,"l":3.047},{"oc":"#221f1f","x":95.288,"y":10.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":82.913,"y":10.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.288,"y":10.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":60.638,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":20.805,"y":16.531,"w":0.75,"l":3.031},{"oc":"#221f1f","x":34.418,"y":16.52,"w":0.75,"l":3.148},{"oc":"#221f1f","x":41.508,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.5,"y":16.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":56.925,"y":16.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":68.063,"y":16.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":79.2,"y":16.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":89.1,"y":16.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":23.513,"y":19.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":34.418,"y":19.547,"w":0.75,"l":1.5},{"oc":"#221f1f","x":20.805,"y":19.547,"w":0.75,"l":1.5},{"oc":"#221f1f","x":56.925,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":49.5,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":68.063,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":56.925,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":79.2,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":68.063,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":89.1,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":79.2,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":89.1,"y":19.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.513,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":20.805,"y":21.031,"w":0.75,"l":1.539},{"oc":"#221f1f","x":34.676,"y":20.887,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.5,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":41.508,"y":19.367,"w":0.75,"l":3.078},{"oc":"#221f1f","x":56.925,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.5,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":68.063,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":56.925,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":68.063,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":89.1,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":89.1,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":75.488,"y":22.477,"w":0.75,"l":1.539},{"oc":"#221f1f","x":89.1,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":89.1,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":89.1,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.1,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":24,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":24,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.913,"y":23.985,"w":0.75,"l":0.797},{"oc":"#221f1f","x":79.2,"y":23.985,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.288,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":24.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":24.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":24.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":24.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":25.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.913,"y":25.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":26.235,"w":0.75,"l":1.547},{"oc":"#221f1f","x":79.2,"y":26.235,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.288,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":27.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":27.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":27.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":27.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":29.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":29.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":29.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":29.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":30.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":30.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":30.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":30.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.725,"y":34.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":34.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":14.85,"y":41.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":40.837,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.825,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.215,"y":41.594,"w":0.75,"l":0.5},{"oc":"#221f1f","x":82.84,"y":41.594,"w":0.75,"l":0.5},{"oc":"#221f1f","x":86.625,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":42.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":43.484,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#fcfae1","x":5.801,"y":2.063,"w":92.813,"h":45,"clr":-1},{"oc":"#221f1f","x":6.188,"y":3,"w":6.324,"h":0.75,"clr":-1},{"x":87.863,"y":5.25,"w":3.713,"h":0.75,"clr":1},{"x":91.575,"y":5.25,"w":3.712,"h":0.75,"clr":1},{"x":95.288,"y":5.25,"w":3.712,"h":0.75,"clr":1},{"x":87.863,"y":6,"w":3.713,"h":0.75,"clr":1},{"x":91.575,"y":6,"w":3.712,"h":0.75,"clr":1},{"x":95.288,"y":6,"w":3.712,"h":0.75,"clr":1},{"x":87.863,"y":6.75,"w":3.713,"h":0.75,"clr":1},{"x":91.575,"y":6.75,"w":3.712,"h":0.75,"clr":1},{"x":95.288,"y":6.75,"w":3.712,"h":0.75,"clr":1},{"x":56.691,"y":10.563,"w":21.271,"h":0.687,"clr":1},{"oc":"#bebfc1","x":79.2,"y":10.5,"w":3.712,"h":3,"clr":-1},{"x":82.913,"y":10.5,"w":12.375,"h":3,"clr":1},{"x":95.288,"y":10.5,"w":3.712,"h":3,"clr":1},{"x":60.638,"y":12.75,"w":3.712,"h":0.75,"clr":1},{"x":64.35,"y":12.75,"w":11.138,"h":0.75,"clr":1},{"x":75.488,"y":12.75,"w":3.713,"h":0.75,"clr":1},{"x":79.2,"y":13.5,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":13.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":13.5,"w":3.712,"h":0.75,"clr":1},{"x":79.2,"y":14.25,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":14.25,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":14.25,"w":3.712,"h":0.75,"clr":1},{"x":6.155,"y":19.453,"w":14.502,"h":1.5,"clr":1},{"x":20.972,"y":19.453,"w":13.227,"h":1.5,"clr":1},{"x":49.5,"y":19.5,"w":7.425,"h":1.5,"clr":1},{"x":56.925,"y":19.5,"w":11.138,"h":1.5,"clr":1},{"x":68.063,"y":19.5,"w":11.138,"h":1.5,"clr":1},{"x":79.2,"y":19.5,"w":9.9,"h":1.5,"clr":1},{"x":89.1,"y":19.5,"w":9.9,"h":1.5,"clr":1},{"x":6.22,"y":21,"w":14.63,"h":1.5,"clr":1},{"x":20.805,"y":21.047,"w":13.613,"h":1.5,"clr":1},{"x":49.5,"y":21,"w":7.425,"h":1.5,"clr":1},{"x":56.925,"y":21,"w":11.138,"h":1.5,"clr":1},{"x":68.063,"y":21,"w":11.138,"h":1.5,"clr":1},{"x":79.2,"y":21,"w":9.9,"h":1.5,"clr":1},{"x":89.1,"y":21,"w":9.9,"h":1.5,"clr":1},{"x":75.488,"y":22.5,"w":3.713,"h":1.5,"clr":1},{"x":79.2,"y":22.5,"w":9.9,"h":0.75,"clr":1},{"x":89.1,"y":22.5,"w":9.9,"h":0.75,"clr":1},{"x":79.2,"y":23.25,"w":9.9,"h":0.75,"clr":1},{"x":89.1,"y":23.25,"w":9.9,"h":0.75,"clr":1},{"x":60.638,"y":24,"w":3.712,"h":0.75,"clr":1},{"x":64.35,"y":24,"w":11.138,"h":0.75,"clr":1},{"x":75.488,"y":24,"w":3.713,"h":0.75,"clr":1},{"oc":"#bebfc1","x":79.2,"y":24,"w":3.712,"h":0.75,"clr":-1},{"x":82.913,"y":24,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":24,"w":3.712,"h":0.75,"clr":1},{"x":79.2,"y":24.75,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":24.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":24.75,"w":3.712,"h":0.75,"clr":1},{"x":79.2,"y":25.5,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":25.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":25.5,"w":3.712,"h":0.75,"clr":1},{"x":60.638,"y":26.25,"w":3.712,"h":0.75,"clr":1},{"x":64.35,"y":26.25,"w":11.138,"h":0.75,"clr":1},{"x":75.488,"y":26.25,"w":3.713,"h":0.75,"clr":1},{"oc":"#bebfc1","x":79.2,"y":26.25,"w":3.712,"h":1.5,"clr":-1},{"x":82.913,"y":26.25,"w":12.375,"h":1.5,"clr":1},{"x":95.288,"y":26.25,"w":3.712,"h":1.5,"clr":1},{"x":79.2,"y":27.75,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":27.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":27.75,"w":3.712,"h":0.75,"clr":1},{"x":79.2,"y":28.5,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":28.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":28.5,"w":3.712,"h":0.75,"clr":1},{"oc":"#221f1f","x":6.188,"y":29.25,"w":6.188,"h":0.75,"clr":-1},{"x":79.2,"y":30,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":30,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":30,"w":3.712,"h":0.75,"clr":1},{"x":79.2,"y":30.75,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":30.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":30.75,"w":3.712,"h":0.75,"clr":1},{"oc":"#221f1f","x":6.188,"y":33.75,"w":6.188,"h":0.75,"clr":-1},{"x":6.188,"y":34.5,"w":70.538,"h":1.5,"clr":1},{"x":76.725,"y":34.5,"w":22.275,"h":1.5,"clr":1},{"x":6.188,"y":36,"w":92.813,"h":1.5,"clr":1},{"x":6.188,"y":37.5,"w":92.813,"h":3.75,"clr":1},{"x":34.699,"y":19.657,"w":6.657,"h":1.279,"clr":1},{"x":41.791,"y":19.61,"w":7.169,"h":1.279,"clr":1},{"x":34.699,"y":21.157,"w":6.657,"h":1.279,"clr":1},{"x":41.726,"y":21.11,"w":7.297,"h":1.279,"clr":1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.9809999999999999,"w":13.320000000000007,"clr":-1,"A":"left","R":[{"T":"Schedule%20H%20(Form%201040)%202013","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.8,"y":2.04,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":96.897,"y":2.04,"w":1.112,"clr":-1,"A":"left","R":[{"T":"%202%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.65,"y":2.821,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.156,"y":2.821,"w":16.867,"clr":-1,"A":"left","R":[{"T":"Federal%20Unemployment%20(FUTA)%20Tax%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":91.806,"y":3.652,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Yes%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.848,"y":3.652,"w":1.63,"clr":-1,"A":"left","R":[{"T":"No%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.693,"y":4.401,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":4.401,"w":47.32799999999996,"clr":-1,"A":"left","R":[{"T":"Did%20you%20pay%20unemployment%20contributions%20to%20only%20one%20state%3F%20(If%20you%20paid%20contributions%20to%20a%20credit%20reduction","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":5.089,"w":17.967000000000006,"clr":-1,"A":"left","R":[{"T":"state%2C%20see%20instructions%20and%20check%20%E2%80%9CNo.%E2%80%9D)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":5.089,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.609,"y":5.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":5.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":5.839,"w":50.105999999999966,"clr":-1,"A":"left","R":[{"T":"Did%20you%20pay%20all%20state%20unemployment%20contributions%20for%202013%20by%20April%2015%2C%202014%3F%20Fiscal%20year%20filers%20see%20instructions%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.609,"y":5.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":6.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":6.589,"w":41.687999999999995,"clr":-1,"A":"left","R":[{"T":"Were%20all%20wages%20that%20are%20taxable%20for%20FUTA%20tax%20also%20taxable%20for%20your%20state%E2%80%99s%20unemployment%20tax%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.062,"y":6.589,"w":7.998,"clr":-1,"A":"left","R":[{"T":".....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.609,"y":6.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.152,"w":2.76,"clr":-1,"A":"left","R":[{"T":"Next%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.207,"y":8.152,"w":8.521000000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.388,"y":8.152,"w":2.704,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CYes%E2%80%9D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.571,"y":8.152,"w":3.6490000000000005,"clr":-1,"A":"left","R":[{"T":"%20box%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.215,"y":8.152,"w":1.368,"clr":-1,"A":"left","R":[{"T":"all%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.331,"y":8.152,"w":16.615000000000002,"clr":-1,"A":"left","R":[{"T":"%20the%20lines%20above%2C%20complete%20Section%20A.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.235,"y":8.839,"w":8.521000000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.416,"y":8.839,"w":2.278,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CNo%E2%80%9D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.939,"y":8.839,"w":3.6490000000000005,"clr":-1,"A":"left","R":[{"T":"%20box%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.584,"y":8.839,"w":1.686,"clr":-1,"A":"left","R":[{"T":"any","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.192,"y":8.839,"w":26.747,"clr":-1,"A":"left","R":[{"T":"%20of%20the%20lines%20above%2C%20skip%20Section%20A%20and%20complete%20Section%20B.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.413,"y":9.54,"w":4.852,"clr":-1,"A":"left","R":[{"T":"Section%20A%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":10.389,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":10.412,"w":28.43400000000002,"clr":-1,"A":"left","R":[{"T":"Name%20of%20the%20state%20where%20you%20paid%20unemployment%20contributions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.633,"y":10.319,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":12.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":12.589,"w":23.916000000000007,"clr":-1,"A":"left","R":[{"T":"Contributions%20paid%20to%20your%20state%20unemployment%20fund%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":12.589,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.384,"y":12.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":13.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":13.339,"w":17.241,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20wages%20subject%20to%20FUTA%20tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":13.339,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":13.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":14.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":14.089,"w":4.927,"clr":-1,"A":"left","R":[{"T":"FUTA%20tax.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.271,"y":14.089,"w":37.566999999999986,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2015%20by%20.6%25%20(.006).%20Enter%20the%20result%20here%2C%20skip%20Section%20B%2C%20and%20go%20to%20line%2025","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":14.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.397,"y":14.79,"w":4.871,"clr":-1,"A":"left","R":[{"T":"Section%20B%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":15.588999999999999,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":15.588999999999999,"w":36.52599999999998,"clr":-1,"A":"left","R":[{"T":"Complete%20all%20columns%20below%20that%20apply%20(if%20you%20need%20more%20space%2C%20see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.899,"y":16.312,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"(a)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.656,"y":16.875,"w":6.835000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20%20of%20state%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.638,"y":16.359,"w":2.037,"clr":-1,"A":"left","R":[{"T":"(b)%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":22.384,"y":16.922,"w":8.554,"clr":-1,"A":"left","R":[{"T":"Taxable%20wages%20(as%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":22.07,"y":17.484,"w":9.076,"clr":-1,"A":"left","R":[{"T":"defined%20in%20state%20act)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":42.361,"y":16.312,"w":2,"clr":-1,"A":"left","R":[{"T":"(c)%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.326,"y":16.875,"w":9.815000000000001,"clr":-1,"A":"left","R":[{"T":"State%20experience%20rate%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.347,"y":17.438,"w":3.13,"clr":-1,"A":"left","R":[{"T":"period%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":36.631,"y":18.047,"w":2.612,"clr":-1,"A":"left","R":[{"T":"From%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.304,"y":18.154,"w":1.4260000000000002,"clr":-1,"A":"left","R":[{"T":"To%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.239,"y":16.312,"w":3.705,"clr":-1,"A":"left","R":[{"T":"(d)%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.547,"y":16.875,"w":2.908,"clr":-1,"A":"left","R":[{"T":"State%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.011,"y":17.438,"w":5.1850000000000005,"clr":-1,"A":"left","R":[{"T":"experience%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.926,"y":18,"w":2,"clr":-1,"A":"left","R":[{"T":"rate%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.543,"y":16.312,"w":2,"clr":-1,"A":"left","R":[{"T":"(e)%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.167,"y":16.875,"w":7.057000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20col.%20(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.249,"y":17.438,"w":3.595,"clr":-1,"A":"left","R":[{"T":"by%20.054%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.825,"y":16.312,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(f)%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.303,"y":16.875,"w":7.057000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20col.%20(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.752,"y":17.438,"w":4.649000000000001,"clr":-1,"A":"left","R":[{"T":"by%20col.%20(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.177,"y":16.25,"w":2.037,"clr":-1,"A":"left","R":[{"T":"(g)%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.801,"y":16.812,"w":7.093000000000002,"clr":-1,"A":"left","R":[{"T":"Subtract%20col.%20(f)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.057,"y":17.375,"w":6.667000000000002,"clr":-1,"A":"left","R":[{"T":"from%20col.%20(e).%20If%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.637,"y":17.938,"w":5.702,"clr":-1,"A":"left","R":[{"T":"zero%20or%20less%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.392,"y":18.5,"w":4.4460000000000015,"clr":-1,"A":"left","R":[{"T":"enter%20-0-.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.087,"y":16.25,"w":2.019,"clr":-1,"A":"left","R":[{"T":"(h)%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.167,"y":16.812,"w":6.316000000000001,"clr":-1,"A":"left","R":[{"T":"Contributions%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.435,"y":17.375,"w":5.872,"clr":-1,"A":"left","R":[{"T":"paid%20to%20state%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.798,"y":17.938,"w":6.93,"clr":-1,"A":"left","R":[{"T":"unemployment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.597,"y":18.5,"w":2.2790000000000004,"clr":-1,"A":"left","R":[{"T":"fund%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":23.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":23.089,"w":3,"clr":-1,"A":"left","R":[{"T":"Totals%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.251,"y":23.089,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":"............................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.234,"y":23.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":23.827,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":23.839,"w":15.227000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20columns%20(g)%20and%20(h)%20of%20line%2018%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":23.839,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.384,"y":23.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":24.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":24.589,"w":29.966000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20wages%20subject%20to%20FUTA%20tax%20(see%20the%20line%2015%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.499,"y":24.589,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":24.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":25.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":25.339,"w":14.043000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2020%20by%206.0%25%20(.060)%20%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":32.75,"y":25.339,"w":29.94200000000001,"clr":-1,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":79.946,"y":25.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":26.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":26.089,"w":13.765000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2020%20by%205.4%25%20(.054)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":26.089,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.384,"y":26.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":26.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":26.839,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.326,"y":26.839,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.734,"y":26.839,"w":9.021000000000003,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2019%20or%20line%2022%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":26.839,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.641,"y":27.589,"w":40.91699999999997,"clr":-1,"A":"left","R":[{"T":"(Employers%20in%20a%20credit%20reduction%20state%20must%20use%20the%20worksheet%20on%20page%20H-7%20and%20check%20here)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.993,"y":27.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":27.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":28.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":28.339,"w":4.927,"clr":-1,"A":"left","R":[{"T":"FUTA%20tax.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.271,"y":28.339,"w":30.19400000000001,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2023%20from%20line%2021.%20Enter%20the%20result%20here%20and%20go%20to%20line%2025%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.751,"y":28.339,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":28.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"x":6.329,"y":29.071,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.156,"y":29.071,"w":17.458000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20Household%20Employment%20Taxes%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":29.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":29.839,"w":39.71499999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%208.%20If%20you%20checked%20the%20%E2%80%9CYes%E2%80%9D%20box%20on%20line%20C%20of%20page%201%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.941,"y":29.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.003,"y":29.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.065,"y":29.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":29.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":30.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":30.589,"w":15.672000000000008,"clr":-1,"A":"left","R":[{"T":"Add%20line%2016%20(or%20line%2024)%20and%20line%2025%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":30.589,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":30.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":31.339,"w":16.078000000000003,"clr":-1,"A":"left","R":[{"T":"Are%20you%20required%20to%20file%20Form%201040%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":32.089,"w":5.1129999999999995,"clr":-1,"A":"left","R":[{"T":"Yes.%20Stop.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.034,"y":32.089,"w":28.271000000000008,"clr":-1,"A":"left","R":[{"T":"Include%20the%20amount%20from%20line%2026%20above%20on%20Form%201040%2C%20line%2059a.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.766000000000005,"y":32.089,"w":3.1859999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.694,"y":32.089,"w":10.945000000000002,"clr":-1,"A":"left","R":[{"T":"%20complete%20Part%20IV%20below.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":32.777,"w":1.63,"clr":-1,"A":"left","R":[{"T":"No.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.646,"y":32.777,"w":28.209000000000003,"clr":-1,"A":"left","R":[{"T":"%20You%20may%20have%20to%20complete%20Part%20IV.%20See%20instructions%20for%20details.","S":3,"TS":[0,12,0,0]}]},{"x":6.294,"y":33.571,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.156,"y":33.571,"w":12.149,"clr":-1,"A":"left","R":[{"T":"Address%20and%20Signature%E2%80%94%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":34.037,"y":33.571,"w":8.280000000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":48.269,"y":33.571,"w":2.537,"clr":-1,"A":"left","R":[{"T":"%20only%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":52.629,"y":33.571,"w":17.411000000000005,"clr":-1,"A":"left","R":[{"T":"if%20required.%20See%20the%20line%2027%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":34.16,"w":36.211,"clr":-1,"A":"left","R":[{"T":"Address%20(number%20and%20street)%20or%20P.O.%20box%20if%20mail%20is%20not%20delivered%20to%20street%20address%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.163,"y":34.143,"w":10.559000000000003,"clr":-1,"A":"left","R":[{"T":"Apt.%2C%20room%2C%20or%20suite%20no.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":35.682,"w":20.298,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office%2C%20state%2C%20and%20ZIP%20code%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":37.15,"w":56.84799999999996,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20schedule%2C%20including%20accompanying%20statements%2C%20and%20to%20the%20best%20of","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.471,"y":37.15,"w":15.818000000000001,"clr":-1,"A":"left","R":[{"T":"%20my%20knowledge%20and%20belief%2C%20it%20is%20true%2C","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.931,"y":37.65,"w":58.35099999999995,"clr":-1,"A":"left","R":[{"T":"correct%2C%20and%20complete.%20No%20part%20of%20any%20payment%20made%20to%20a%20state%20unemployment%20fund%20claimed%20as%20a%20credit%20was%2C%20or%20is%20to%20be%2C%20deducted%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.062,"y":37.65,"w":15.265000000000002,"clr":-1,"A":"left","R":[{"T":"from%20the%20payments%20to%20employees.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.935,"y":38.15,"w":49.392999999999965,"clr":-1,"A":"left","R":[{"T":"Declaration%20of%20preparer%20(other%20than%20taxpayer)%20is%20based%20on%20all%20information%20of%20which%20preparer%20has%20any%20knowledge.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.904,"y":39.165,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,23.9997,0,0],"RA":90}]},{"oc":"#221f1f","x":8.413,"y":40.312,"w":9.687000000000003,"clr":-1,"A":"left","R":[{"T":"Employer%E2%80%99s%20signature%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.067,"y":39.165,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,23.9997,0,0],"RA":90}]},{"oc":"#221f1f","x":67.813,"y":40.312,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":41.435,"w":2.3880000000000003,"clr":-1,"A":"left","R":[{"T":"Paid%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":5.938,"y":42.185,"w":4.445,"clr":-1,"A":"left","R":[{"T":"Preparer%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":5.938,"y":42.935,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Use%20Only","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":15.288,"y":40.938,"w":12.224000000000006,"clr":-1,"A":"left","R":[{"T":"Print%2FType%20preparer%E2%80%99s%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.931,"y":40.938,"w":9.037000000000003,"clr":-1,"A":"left","R":[{"T":"Preparer's%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.263,"y":40.938,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.4,"y":41.338,"w":6.169000000000002,"clr":-1,"A":"left","R":[{"T":"Check%20%20%20%20%20%20%20%20%20if%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.4,"y":41.838,"w":6.353,"clr":-1,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.719,"y":40.938,"w":2.203,"clr":-1,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.288,"y":42.625,"w":7.189000000000002,"clr":-1,"A":"left","R":[{"T":"Firm%E2%80%99s%20name%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":23.937,"y":42.531,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":15.288,"y":43.375,"w":7.186999999999999,"clr":-1,"A":"left","R":[{"T":"Firm's%20address%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":23.934,"y":43.281,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":74.688,"y":42.625,"w":5.186,"clr":-1,"A":"left","R":[{"T":"Firm's%20EIN%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.927,"y":42.531,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":74.688,"y":43.375,"w":4.557,"clr":-1,"A":"left","R":[{"T":"Phone%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.126,"y":44.125,"w":14.096000000000005,"clr":-1,"A":"left","R":[{"T":"Schedule%20H%20(Form%201040)%202013%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":35.166,"y":18.576,"w":4.558,"clr":-1,"A":"left","R":[{"T":"mm%2Fdd%2Fyy","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":42.385,"y":18.623,"w":4.558,"clr":-1,"A":"left","R":[{"T":"mm%2Fdd%2Fyy","S":2,"TS":[0,10,0,0]}]},{"x":0.09399999999999997,"y":48.532,"w":14.675999999999998,"clr":0,"A":"left","R":[{"T":"AL","S":-1,"TS":[0,15,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":8763,"AM":1024,"x":22.718,"y":2.117,"w":44.901,"h":0.833,"TU":"For Privacy Act and Paperwork Reduction Act Notice, see the instructions"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":8764,"AM":1024,"x":76.931,"y":2.136,"w":16.686,"h":0.833,"TU":"Schedule H (Form 1040) 2013"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":8771,"AM":0,"x":56.62,"y":10.566,"w":20.65,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":8772,"AM":0,"x":64.56,"y":12.761,"w":10.883,"h":0.833,"TU":"Line 14. Contributions paid to your state unemployment fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":8773,"AM":0,"x":83.181,"y":13.462,"w":11.931,"h":0.833,"TU":"Line 15. Total cash wages subject to FUTA tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":8774,"AM":1024,"x":83.161,"y":14.244,"w":11.931,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A30_STNAME_1_","EN":0},"TI":8775,"AM":0,"x":6.442,"y":20.067,"w":13.091,"h":0.867,"PL":{"V":[null,"AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A30_TAXWAGES_1_","EN":0},"TI":8776,"AM":0,"x":21.115,"y":20.051,"w":13.122,"h":0.882,"TU":"Line 17(b). Taxable wages (as defined in state act)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATEFROM_1_","EN":0},"TI":8777,"AM":0,"x":34.933,"y":20.135,"w":6.396,"h":0.833,"TU":"Line 17(c). State experience rate period from.","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATETO_1_","EN":0},"TI":8778,"AM":0,"x":42.241,"y":20.159,"w":6.676,"h":0.833,"TU":"Line 17(c). State experience rate period to.","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A31_STEXPRT_1_","EN":0},"TI":8779,"AM":0,"x":49.686,"y":20.096,"w":7.074,"h":0.833,"TU":"Line 17(d). State experience rate.","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLE_1_","EN":0},"TI":8780,"AM":1024,"x":57.111,"y":20.096,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLF_1_","EN":0},"TI":8781,"AM":1024,"x":68.248,"y":20.123,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLG_1_","EN":0},"TI":8782,"AM":1024,"x":79.386,"y":20.096,"w":9.549,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_UNEMP_1_","EN":0},"TI":8783,"AM":0,"x":89.286,"y":20.123,"w":9.653,"h":0.833,"TU":"Line 17(h). Contributions paid to state unemployment fund."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A30_STNAME_2_","EN":0},"TI":8784,"AM":0,"x":6.372,"y":21.34,"w":13.231,"h":0.918,"PL":{"V":[null,"AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A30_TAXWAGES_2_","EN":0},"TI":8785,"AM":0,"x":20.866,"y":21.471,"w":13.262,"h":0.882,"TU":"Line 17(b). Taxable wages (as defined in state act)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATEFROM_2_","EN":0},"TI":8786,"AM":0,"x":34.963,"y":21.55,"w":6.256,"h":0.849,"TU":"Line 17(c). State experience rate period from.","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATETO_2_","EN":0},"TI":8787,"AM":0,"x":42.195,"y":21.506,"w":7.236,"h":0.909,"TU":"Line 17(c). State experience rate period to.","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A31_STEXPRT_2_","EN":0},"TI":8788,"AM":0,"x":49.792,"y":21.66,"w":7.074,"h":0.833,"TU":"Line 17(d). State experience rate.","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLE_2_","EN":0},"TI":8789,"AM":1024,"x":57.142,"y":21.66,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLF_2_","EN":0},"TI":8790,"AM":1024,"x":68.279,"y":21.687,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLG_2_","EN":0},"TI":8791,"AM":1024,"x":79.417,"y":21.66,"w":9.549,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_UNEMP_2_","EN":0},"TI":8792,"AM":0,"x":89.317,"y":21.687,"w":9.652,"h":0.833,"TU":"Line 17(h). Contributions paid to state unemployment fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A","EN":0},"TI":8793,"AM":1024,"x":79.376,"y":23.184,"w":9.549,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B","EN":0},"TI":8794,"AM":1024,"x":89.396,"y":23.209,"w":9.549,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":8795,"AM":1024,"x":64.471,"y":23.988,"w":10.911,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":8796,"AM":0,"x":83.162,"y":24.725,"w":12.024,"h":0.833,"TU":"Line 20. Total cash wages subject to FUTA tax (see the line 15 instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":8797,"AM":1024,"x":83.016,"y":25.545,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":8798,"AM":1024,"x":64.474,"y":26.258,"w":10.911,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":8800,"AM":0,"x":83.119,"y":27.658,"w":11.983,"h":0.833,"TU":"Line 23. Enter the smaller of line 19 or line 22."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":8801,"AM":1024,"x":83.016,"y":28.545,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":8802,"AM":1024,"x":83.016,"y":30.038,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":8803,"AM":1024,"x":83.016,"y":30.795,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDRESS","EN":0},"TI":8806,"AM":0,"x":6.253,"y":35.131,"w":70.307,"h":0.833,"TU":"Address (number and street) or P.O. box if mail is not delivered to street address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":8807,"AM":0,"x":77.364,"y":35.131,"w":9.199,"h":0.833,"TU":"Apt., room, or suite no."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":8808,"AM":0,"x":6.221,"y":36.635,"w":28.754,"h":0.85,"TU":"City, town or post office."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":8809,"AM":0,"x":52.887,"y":36.641,"w":12.78,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":8810,"AM":0,"x":84.522,"y":36.63,"w":14.53,"h":0.85,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME","EN":0},"TI":8811,"AM":1024,"x":24.915,"y":42.788,"w":24.771,"h":0.833,"TU":"Firm’s name a"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B10Y","EN":0},"TI":8765,"AM":0,"x":92.697,"y":5.229,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B10N","EN":0},"TI":8766,"AM":0,"x":96.353,"y":5.224,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"B10RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B11Y","EN":0},"TI":8767,"AM":0,"x":92.642,"y":5.944,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B11N","EN":0},"TI":8768,"AM":0,"x":96.373,"y":5.939,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"B11RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B12Y","EN":0},"TI":8769,"AM":0,"x":92.622,"y":6.726,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B12N","EN":0},"TI":8770,"AM":0,"x":96.279,"y":6.722,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"B12RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EMPLRX","EN":0},"TI":8799,"AM":0,"x":75.797,"y":27.738,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX28A","EN":0},"TI":8804,"AM":0,"x":9.727,"y":32.215,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX28B","EN":0},"TI":8805,"AM":0,"x":9.789,"y":32.946,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BX28RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Household Employment Taxes","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131230083912-08'00'","ModDate":"D:20140130103019-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":5.25,"w":1.5,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":5.256,"w":1.5,"l":5.431,"oc":"#221f1f"},{"x":30.569,"y":3,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.569,"y":5.25,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.234,"y":5.25,"w":1.5,"l":25.681,"oc":"#221f1f"},{"x":2.234,"y":8.25,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":27.884,"y":5.25,"w":1.5,"l":8.131,"oc":"#221f1f"},{"x":27.884,"y":6.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.884,"y":6.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.884,"y":8.25,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":2.234,"y":24,"w":1.5,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":25.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":22.034,"y":27,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.384,"y":27,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.434,"y":27,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":25.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":28.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.384,"y":30,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.434,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":28.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":31.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":33,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.384,"y":33,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.434,"y":33,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":31.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":34.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":34.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":34.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":34.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":36,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":34.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":34.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":36,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":36,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":36,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":37.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":36,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":36,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":37.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":37.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":44.25,"w":1.5,"l":18.031,"oc":"#221f1f"},{"x":20.234,"y":44.25,"w":1.5,"l":9.481,"oc":"#221f1f"},{"x":29.684,"y":44.25,"w":1.5,"l":6.331,"oc":"#221f1f"}],"VLines":[{"x":7.65,"y":2.234,"w":1.5,"l":3.047,"oc":"#221f1f"},{"x":30.6,"y":2.234,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":2.984,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":27.9,"y":5.219,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":27.9,"y":6.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.8,"y":7.5,"w":0.75,"l":0.731,"oc":"#181616"},{"x":29.704,"y":7.575,"w":0.75,"l":0.563,"oc":"#181616","dsh":1},{"x":30.608,"y":7.5,"w":0.75,"l":0.731,"oc":"#181616"},{"x":31.511,"y":7.5,"w":0.75,"l":0.731,"oc":"#181616"},{"x":32.415,"y":7.5,"w":0.75,"l":0.731,"oc":"#181616"},{"x":33.319,"y":7.5,"w":0.75,"l":0.731,"oc":"#181616"},{"x":34.176,"y":7.5,"w":0.75,"l":0.731,"oc":"#181616"},{"x":35.089,"y":7.5,"w":0.75,"l":0.731,"oc":"#181616"},{"x":23.4,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":25.485,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":28.8,"y":25.485,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.65,"y":25.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.15,"y":25.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.65,"y":25.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.15,"y":26.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.8,"y":26.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.15,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":28.485,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":28.8,"y":28.485,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.65,"y":28.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.15,"y":28.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.65,"y":28.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.15,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.8,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.15,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":31.484,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":28.8,"y":31.484,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.65,"y":31.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.15,"y":31.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.65,"y":31.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.15,"y":32.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.8,"y":32.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":33.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":33.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":33.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":34.484,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.65,"y":34.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":34.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":34.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":35.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":35.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":35.976,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.65,"y":35.976,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":35.976,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":35.976,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":36.727,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":36.727,"w":0.75,"l":0.789,"oc":"#221f1f"}],"Fills":[{"x":2.25,"y":2.25,"w":33.75,"h":45,"oc":"#fcfae1"},{"x":2.25,"y":5.25,"w":25.65,"h":3,"clr":1},{"x":27.9,"y":5.25,"w":8.1,"h":1.5,"clr":1},{"x":27.9,"y":6.75,"w":8.1,"h":1.5,"clr":1},{"x":2.25,"y":24.375,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":23.4,"y":26.25,"w":4.05,"h":0.75,"clr":1},{"x":30.15,"y":25.5,"w":4.5,"h":2.25,"clr":1},{"x":34.65,"y":25.5,"w":1.35,"h":2.25,"clr":1},{"x":30.15,"y":27.75,"w":4.5,"h":0.75,"clr":1},{"x":23.4,"y":29.25,"w":4.05,"h":0.75,"clr":1},{"x":30.15,"y":28.5,"w":4.5,"h":2.25,"clr":1},{"x":34.65,"y":28.5,"w":1.35,"h":2.25,"clr":1},{"x":30.15,"y":30.75,"w":4.5,"h":0.75,"clr":1},{"x":23.4,"y":32.25,"w":4.05,"h":0.75,"clr":1},{"x":30.15,"y":31.5,"w":4.5,"h":2.25,"clr":1},{"x":34.65,"y":31.5,"w":1.35,"h":2.25,"clr":1},{"x":30.15,"y":33.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":34.5,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":35.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":36,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":36.75,"w":4.5,"h":0.75,"clr":1}],"Texts":[{"x":2,"y":2.009,"w":7.077,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"SCHEDULE H ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":2.696,"w":5.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Form 1040) ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":3.819,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":2,"y":4.319,"w":13.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99) ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":13.004,"y":2.1,"w":14.02,"oc":"#221f1f","sw":0.390625,"A":"left","R":[{"T":"Household Employment Taxes ","S":-1,"TS":[2,17,0,0]}]},{"x":8.638,"y":2.794,"w":40.95,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(For Social Security, Medicare, Withheld Income, and Federal Unemployment (FUTA) Taxes)","S":-1,"TS":[0,11,0,0]}]},{"x":12.948,"y":3.4770000000000003,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":13.323,"y":3.4779999999999998,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":13.445,"y":3.5709999999999997,"w":22.714,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attach to Form 1040, 1040NR, 1040-SS, or 1041.","S":-1,"TS":[0,11,0,0]}]},{"x":24.802,"y":3.5709999999999997,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":8.192,"y":4.149,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":8.567,"y":4.242,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":8.706,"y":4.242,"w":30.681,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Information about Schedule H and its separate instructions is at ","S":-1,"TS":[0,11,0,0]}]},{"x":24.046,"y":4.242,"w":11.023,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"www.irs.gov/form1040.","S":-1,"TS":[0,11,0,0]}]},{"x":31.019,"y":1.972,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-1971","S":2,"TS":[0,10,0,0]}]},{"x":31.425,"y":3.33,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":33.005,"y":3.33,"w":1.336,"oc":"#221f1f","sw":0.43490625,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"x":31.1,"y":3.9189999999999996,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.1,"y":4.365,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":34.001,"y":4.365,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"44","S":-1,"TS":[0,13,0,0]}]},{"x":34.696,"y":4.365,"w":0.334,"oc":"#221f1f","sw":0.43490625,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":5,"w":8.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name of employer ","S":2,"TS":[0,10,0,0]}]},{"x":27.9,"y":5,"w":11.22,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Social security number ","S":2,"TS":[0,10,0,0]}]},{"x":27.9,"y":6.5,"w":14.937,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Employer identification number","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":8.839,"w":48.791,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Calendar year taxpayers having no household employees in 2013 do not have to complete this form for 2013.","S":3,"TS":[0,12,0,0]}]},{"x":2.515,"y":10.452,"w":0.963,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"A ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":10.464,"w":5.613,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you pay ","S":3,"TS":[0,12,0,0]}]},{"x":6.766,"y":10.464,"w":3.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"any one","S":3,"TS":[0,12,0,0]}]},{"x":9.043,"y":10.464,"w":44.659,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" household employee cash wages of $1,800 or more in 2013? (If any household employee was your ","S":3,"TS":[0,12,0,0]}]},{"x":3.348,"y":11.152,"w":53.641,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"spouse, your child under age 21, your parent, or anyone under age 18, see the line A instructions before you answer this","S":3,"TS":[0,12,0,0]}]},{"x":3.343,"y":11.839,"w":4.668,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"question.) ","S":3,"TS":[0,12,0,0]}]},{"x":4.278,"y":13.339,"w":2.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"x":5.435,"y":13.339,"w":16.264,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Skip lines B and C and go to line 1.","S":3,"TS":[0,12,0,0]}]},{"x":4.279,"y":14.089,"w":2.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No. ","S":3,"TS":[0,12,0,0]}]},{"x":5.665,"y":14.089,"w":5.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Go to line B.","S":3,"TS":[0,12,0,0]}]},{"x":2.504,"y":15.588999999999999,"w":0.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"B ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":15.588999999999999,"w":35.416,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you withhold federal income tax during 2013 for any household employee? ","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":17.089,"w":2.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"x":5.407,"y":17.089,"w":12.837,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Skip line C and go to line 7.","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":17.839,"w":2.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No. ","S":3,"TS":[0,12,0,0]}]},{"x":5.636,"y":17.839,"w":5.593,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Go to line C.","S":3,"TS":[0,12,0,0]}]},{"x":2.483,"y":19.386,"w":1.019,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"C ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":19.402,"w":5.613,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you pay ","S":3,"TS":[0,12,0,0]}]},{"x":6.683,"y":19.402,"w":2.147,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"total","S":3,"TS":[0,12,0,0]}]},{"x":7.949,"y":19.402,"w":15.17,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" cash wages of $1,000 or more in ","S":3,"TS":[0,12,0,0]}]},{"x":16.891,"y":19.402,"w":1.686,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"any","S":3,"TS":[0,12,0,0]}]},{"x":17.898,"y":19.402,"w":4.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" calendar ","S":3,"TS":[0,12,0,0]}]},{"x":20.436,"y":19.402,"w":3.482,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"quarter","S":3,"TS":[0,12,0,0]}]},{"x":22.453,"y":19.402,"w":8.782,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of 2012 or 2013 to ","S":3,"TS":[0,12,0,0]}]},{"x":27.686,"y":19.402,"w":1.09,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"all","S":3,"TS":[0,12,0,0]}]},{"x":28.358,"y":19.402,"w":10.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" household employees? ","S":3,"TS":[0,12,0,0]}]},{"x":3.347,"y":20.089,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"x":3.493,"y":20.089,"w":3.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not ","S":3,"TS":[0,12,0,0]}]},{"x":5.441,"y":20.089,"w":43.308,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"count cash wages paid in 2012 or 2013 to your spouse, your child under age 21, or your parent.) ","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":21.589,"w":5.243,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No. Stop. ","S":3,"TS":[0,12,0,0]}]},{"x":7.199,"y":21.589,"w":11.299,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not file this schedule. ","S":3,"TS":[0,12,0,0]}]},{"x":4.246,"y":22.339,"w":2.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes. ","S":3,"TS":[0,12,0,0]}]},{"x":5.559,"y":22.339,"w":14.394,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Skip lines 1-9 and go to line 10. ","S":3,"TS":[0,12,0,0]}]},{"x":2.327,"y":24.196,"w":2.833,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I ","S":-1,"TS":[0,13,0,0]}]},{"x":4.625,"y":24.196,"w":25.532,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Social Security, Medicare, and Federal Income Taxes ","S":-1,"TS":[0,13,0,0]}]},{"x":2.587,"y":26.099,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":26.089,"w":20.815,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total cash wages subject to social security tax","S":3,"TS":[0,12,0,0]}]},{"x":15.5,"y":26.089,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........ ","S":3,"TS":[0,12,0,0]}]},{"x":22.319,"y":26.089,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":27.589,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":27.589,"w":22.209,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Social security tax. Multiply line 1 by 12.4% (.124)","S":3,"TS":[0,12,0,0]}]},{"x":16.25,"y":27.589,"w":21.328,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":27.589,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":29.089,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":29.089,"w":18.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total cash wages subject to Medicare tax ","S":3,"TS":[0,12,0,0]}]},{"x":14,"y":29.089,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......... ","S":3,"TS":[0,12,0,0]}]},{"x":22.319,"y":29.089,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":30.589,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":30.589,"w":19.302,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Medicare tax. Multiply line 3 by 2.9% (.029)","S":3,"TS":[0,12,0,0]}]},{"x":14.75,"y":30.589,"w":23.994,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":28.052,"y":30.589,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":30.589,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":32.089,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":32.089,"w":29.613,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total cash wages subject to Additional Medicare Tax withholding .","S":3,"TS":[0,12,0,0]}]},{"x":20.601,"y":32.089,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":22.319,"y":32.089,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":33.589,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":33.589,"w":30.025,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Additional Medicare Tax withholding. Multiply line 5 by 0.9% (.009) ","S":3,"TS":[0,12,0,0]}]},{"x":20.75,"y":33.589,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":33.589,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":35.089,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":35.089,"w":15.52,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Federal income tax withheld, if any","S":3,"TS":[0,12,0,0]}]},{"x":12.5,"y":35.089,"w":27.993,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"x":28.051,"y":35.089,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":35.089,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":36.589,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":36.589,"w":27.714,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total social security, Medicare, and federal income taxes. ","S":3,"TS":[0,12,0,0]}]},{"x":18.939,"y":36.589,"w":10.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 2, 4, 6, and 7","S":3,"TS":[0,12,0,0]}]},{"x":25.25,"y":36.589,"w":5.332,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"x":28.054,"y":36.589,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":36.589,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":38.155,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":38.152,"w":5.613,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you pay ","S":3,"TS":[0,12,0,0]}]},{"x":6.619,"y":38.152,"w":2.147,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"total","S":3,"TS":[0,12,0,0]}]},{"x":7.864000000000001,"y":38.152,"w":15.17,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" cash wages of $1,000 or more in ","S":3,"TS":[0,12,0,0]}]},{"x":16.657,"y":38.152,"w":1.686,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"any","S":3,"TS":[0,12,0,0]}]},{"x":17.642,"y":38.152,"w":4.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" calendar ","S":3,"TS":[0,12,0,0]}]},{"x":20.159,"y":38.152,"w":3.482,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"quarter","S":3,"TS":[0,12,0,0]}]},{"x":22.154,"y":38.152,"w":8.782,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of 2012 or 2013 to ","S":3,"TS":[0,12,0,0]}]},{"x":27.28,"y":38.152,"w":1.09,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"all","S":3,"TS":[0,12,0,0]}]},{"x":27.93,"y":38.152,"w":10.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" household employees? ","S":3,"TS":[0,12,0,0]}]},{"x":3.348,"y":38.839,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"x":3.494,"y":38.839,"w":3.186,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not","S":3,"TS":[0,12,0,0]}]},{"x":5.286,"y":38.839,"w":43.586,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" count cash wages paid in 2012 or 2013 to your spouse, your child under age 21, or your parent.) ","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":40.339,"w":4.965,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No. Stop. ","S":3,"TS":[0,12,0,0]}]},{"x":7.112,"y":40.339,"w":33.586,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Include the amount from line 8 above on Form 1040, line 59a. If you are not","S":3,"TS":[0,12,0,0]}]},{"x":26.35,"y":40.339,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":26.53,"y":40.339,"w":15.356,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"required to file Form 1040, see the","S":3,"TS":[0,12,0,0]}]},{"x":5.693,"y":41.026,"w":8.391,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 9 instructions. ","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":42.589,"w":2.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"x":5.407,"y":42.589,"w":6.539,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Go to line 10.","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":44.144,"w":35.76,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"For Privacy Act and Paperwork Reduction Act Notice, see the instructions. ","S":-1,"TS":[0,11,0,0]}]},{"x":23.1,"y":44.125,"w":7.707,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 12187K ","S":2,"TS":[0,10,0,0]}]},{"x":29.705,"y":44.125,"w":14.096,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule H (Form 1040) 2013 ","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1283,"AM":1024,"TU":"Sequence No. 44","x":28.161,"y":5.993,"w":6.891,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1284,"AM":1024,"x":2.26,"y":7.187,"w":25.519,"h":0.912},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":1285,"AM":0,"TU":"Employer identification number","x":28.206,"y":7.495,"w":6.849,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":1292,"AM":0,"TU":"Line 1. Total cash wages subject to social security tax.","x":23.445,"y":26.258,"w":3.968,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":1293,"AM":1024,"x":30.24,"y":27.686,"w":4.328,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1294,"AM":0,"TU":"Line 3. Total cash wages subject to Medicare tax.","x":23.445,"y":29.258,"w":3.968,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":1295,"AM":1024,"x":30.24,"y":30.605,"w":4.328,"h":0.88},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5AMED","EN":0},"TI":1296,"AM":0,"TU":"Line 5. Total cash wages subject to Additional Medicare Tax withholding.","x":23.418,"y":32.265,"w":3.967,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6AMED","EN":0},"TI":1297,"AM":1024,"x":30.285,"y":33.631,"w":4.328,"h":0.88},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":1298,"AM":0,"TU":"Line 7. Federal income tax withheld, if any.","x":30.218,"y":35.221,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":1299,"AM":1024,"x":30.186,"y":36.545,"w":4.328,"h":0.88}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXA1","EN":0},"TI":1286,"AM":0,"TU":"Line A. Checkboxes.","x":3.594,"y":13.542,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXA2","EN":0},"TI":1287,"AM":0,"TU":"Line A. Checkboxes.","x":3.562,"y":14.3,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BXARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXB1","EN":0},"TI":1288,"AM":0,"TU":"Line B. Checkboxes.","x":3.578,"y":17.269,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXB2","EN":0},"TI":1289,"AM":0,"TU":"Line B. Checkboxes.","x":3.546,"y":18.027,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BXBRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXC1","EN":0},"TI":1290,"AM":0,"TU":"Line C. Checkboxes.","x":3.571,"y":21.754,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXC2","EN":0},"TI":1291,"AM":0,"TU":"Line C. Checkboxes.","x":3.539,"y":22.512,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BXCRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX91","EN":0},"TI":1300,"AM":0,"TU":"Line 9. Checkboxes.","x":3.578,"y":40.505,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX92","EN":0},"TI":1301,"AM":0,"TU":"Line 9. Checkboxes.","x":3.573,"y":42.788,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BX9RB","EN":0}}]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":3,"w":1.5,"l":31.981,"oc":"#221f1f"},{"x":34.184,"y":3,"w":1.5,"l":1.831,"oc":"#221f1f"},{"x":2.234,"y":3.75,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":33.284,"y":5.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":5.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.934,"y":5.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.934,"y":6,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":33.3,"y":6,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":33.3,"y":5.25,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":34.634,"y":5.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":6,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.934,"y":6,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.934,"y":6.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":33.3,"y":6.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":33.3,"y":6,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":34.634,"y":6,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":6.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.934,"y":6.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.934,"y":7.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":33.3,"y":7.5,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":33.3,"y":6.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":34.634,"y":6.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":7.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":9.75,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":10.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":20.599,"y":11.25,"w":0.75,"l":7.766,"oc":"#221f1f","dsh":1},{"x":28.784,"y":10.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":10.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":10.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":13.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.384,"y":13.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.434,"y":13.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":14.25,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":14.25,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":14.25,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":14.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":14.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":14.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":15,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":15.75,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":16.5,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":2.234,"y":19.5,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":7.55,"y":16.547,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":8.534,"y":19.5,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":12.46,"y":16.5,"w":0.75,"l":5.548,"oc":"#221f1f"},{"x":12.621,"y":18.422,"w":0.75,"l":5.132,"oc":"#221f1f"},{"x":12.559,"y":19.5,"w":0.75,"l":3.194,"oc":"#221f1f"},{"x":15.121,"y":19.5,"w":0.75,"l":2.852,"oc":"#221f1f"},{"x":17.984,"y":16.5,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":17.984,"y":19.5,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":20.684,"y":16.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":20.684,"y":19.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":24.734,"y":16.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":24.734,"y":19.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":28.784,"y":16.5,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.784,"y":19.5,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":32.384,"y":16.5,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":32.384,"y":19.5,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":2.234,"y":19.5,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":2.234,"y":21,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":7.566,"y":21.047,"w":0.75,"l":4.95,"oc":"#221f1f"},{"x":7.566,"y":19.547,"w":0.75,"l":4.95,"oc":"#221f1f"},{"x":18,"y":21,"w":0.75,"l":2.7,"oc":"#221f1f"},{"x":18,"y":19.5,"w":0.75,"l":2.7,"oc":"#221f1f"},{"x":20.7,"y":21,"w":0.75,"l":4.05,"oc":"#221f1f"},{"x":20.7,"y":19.5,"w":0.75,"l":4.05,"oc":"#221f1f"},{"x":24.75,"y":21,"w":0.75,"l":4.05,"oc":"#221f1f"},{"x":24.75,"y":19.5,"w":0.75,"l":4.05,"oc":"#221f1f"},{"x":28.8,"y":21,"w":0.75,"l":3.6,"oc":"#221f1f"},{"x":28.8,"y":19.5,"w":0.75,"l":3.6,"oc":"#221f1f"},{"x":32.384,"y":19.5,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":32.384,"y":21,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":2.234,"y":21,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":2.234,"y":22.5,"w":1.125,"l":6.331,"oc":"#221f1f"},{"x":7.525,"y":21,"w":0.75,"l":5.95,"oc":"#221f1f"},{"x":7.525,"y":22.5,"w":1.125,"l":5.95,"oc":"#221f1f"},{"x":13.484,"y":21,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":13.484,"y":22.5,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":15.734,"y":21,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":15.734,"y":22.5,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":17.984,"y":21,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":17.984,"y":22.5,"w":1.125,"l":2.731,"oc":"#221f1f"},{"x":20.684,"y":21,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":20.684,"y":22.5,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":24.734,"y":21,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":24.734,"y":22.5,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":28.784,"y":21,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.784,"y":22.5,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":32.384,"y":21,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":32.384,"y":22.5,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":27.434,"y":22.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":27.434,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":22.5,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":32.384,"y":22.5,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":28.784,"y":24,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":32.384,"y":24,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":22.034,"y":24.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.384,"y":24.75,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.45,"y":24.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":24,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":28.784,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":24,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":25.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":25.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":25.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.15,"y":26.25,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":30.15,"y":25.5,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":34.634,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":27,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.384,"y":27,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.434,"y":27,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":26.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":28.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":28.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":28.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":28.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":29.25,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":30,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":28.784,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":30.75,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":30,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":30.75,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":30.75,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":30.75,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":30.75,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":31.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":30.75,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":33.75,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":34.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":34.5,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":2.234,"y":36,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":27.884,"y":34.5,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.884,"y":36,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":2.234,"y":36,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":37.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":37.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":41.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.134,"y":40.5,"w":0.75,"l":19.381,"oc":"#221f1f"},{"x":24.734,"y":40.5,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":2.234,"y":41.25,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":2.234,"y":44.25,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":5.384,"y":41.25,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":5.384,"y":42.75,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":14.834,"y":41.25,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":14.834,"y":42.75,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":24.284,"y":41.25,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":24.284,"y":42.75,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":28.334,"y":41.25,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":28.334,"y":42.75,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":30.124,"y":42.094,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":30.124,"y":41.594,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":31.484,"y":41.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":42.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":5.384,"y":43.5,"w":0.75,"l":21.631,"oc":"#221f1f"},{"x":5.384,"y":44.25,"w":0.75,"l":21.631,"oc":"#221f1f"},{"x":26.984,"y":43.5,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":26.984,"y":44.25,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":2.234,"y":44.25,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":33.3,"y":3.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":3.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.95,"y":5.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":5.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":33.3,"y":5.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.65,"y":5.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.95,"y":5.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":6,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":33.3,"y":6,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.65,"y":5.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.95,"y":6.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":6.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":33.3,"y":6.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.65,"y":6.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":10.484,"w":0.75,"l":3.047,"oc":"#221f1f"},{"x":28.8,"y":10.484,"w":0.75,"l":3.047,"oc":"#221f1f"},{"x":34.65,"y":10.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":30.15,"y":10.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":34.65,"y":10.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":22.05,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":13.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":13.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":13.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":13.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":14.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":14.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":14.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":14.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":7.566,"y":16.531,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":12.516,"y":16.52,"w":0.75,"l":3.148,"oc":"#221f1f"},{"x":15.094,"y":18.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18,"y":16.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":20.7,"y":16.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":24.75,"y":16.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":28.8,"y":16.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":32.4,"y":16.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":8.55,"y":19.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":12.516,"y":19.547,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":7.566,"y":19.547,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":20.7,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":18,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":24.75,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":20.7,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":28.8,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":24.75,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":32.4,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":28.8,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":32.4,"y":19.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":8.55,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":7.566,"y":21.031,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":12.609,"y":20.887,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":18,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":15.094,"y":19.367,"w":0.75,"l":3.078,"oc":"#221f1f"},{"x":20.7,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":18,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":24.75,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":20.7,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.8,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":24.75,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":32.4,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.8,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":32.4,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":27.45,"y":22.477,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":32.4,"y":22.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":22.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":32.4,"y":22.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":32.4,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":32.4,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":24,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":24,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":30.15,"y":23.985,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":28.8,"y":23.985,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":34.65,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":24.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":24.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":24.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":24.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":25.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":30.15,"y":25.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.65,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":26.235,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":28.8,"y":26.235,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.65,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.15,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.8,"y":27.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":27.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":27.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":27.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":29.984,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":29.984,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":29.984,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":29.984,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":30.727,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":30.727,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":30.727,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":30.727,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":27.9,"y":34.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.9,"y":34.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":5.4,"y":41.235,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":14.85,"y":41.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.3,"y":41.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.35,"y":41.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.624,"y":41.594,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":30.124,"y":41.594,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":31.5,"y":41.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27,"y":42.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27,"y":43.484,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.109,"y":2.063,"w":33.75,"h":45,"oc":"#fcfae1"},{"x":2.25,"y":3,"w":2.3,"h":0.75,"oc":"#221f1f"},{"x":20.615,"y":10.563,"w":7.735,"h":0.687,"clr":1},{"x":28.8,"y":10.5,"w":1.35,"h":3,"oc":"#bebfc1"},{"x":30.15,"y":10.5,"w":4.5,"h":3,"clr":1},{"x":34.65,"y":10.5,"w":1.35,"h":3,"clr":1},{"x":23.4,"y":12.75,"w":4.05,"h":0.75,"clr":1},{"x":30.15,"y":13.5,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":14.25,"w":4.5,"h":0.75,"clr":1},{"x":2.238,"y":19.453,"w":5.273,"h":1.5,"clr":1},{"x":7.626,"y":19.453,"w":4.81,"h":1.5,"clr":1},{"x":18,"y":19.5,"w":2.7,"h":1.5,"clr":1},{"x":20.7,"y":19.5,"w":4.05,"h":1.5,"clr":1},{"x":24.75,"y":19.5,"w":4.05,"h":1.5,"clr":1},{"x":28.8,"y":19.5,"w":3.6,"h":1.5,"clr":1},{"x":32.4,"y":19.5,"w":3.6,"h":1.5,"clr":1},{"x":2.262,"y":21,"w":5.32,"h":1.5,"clr":1},{"x":7.566,"y":21.047,"w":4.95,"h":1.5,"clr":1},{"x":18,"y":21,"w":2.7,"h":1.5,"clr":1},{"x":20.7,"y":21,"w":4.05,"h":1.5,"clr":1},{"x":24.75,"y":21,"w":4.05,"h":1.5,"clr":1},{"x":28.8,"y":21,"w":3.6,"h":1.5,"clr":1},{"x":32.4,"y":21,"w":3.6,"h":1.5,"clr":1},{"x":28.8,"y":22.5,"w":3.6,"h":0.75,"clr":1},{"x":32.4,"y":22.5,"w":3.6,"h":0.75,"clr":1},{"x":28.8,"y":23.25,"w":3.6,"h":0.75,"clr":1},{"x":32.4,"y":23.25,"w":3.6,"h":0.75,"clr":1},{"x":23.4,"y":24,"w":4.05,"h":0.75,"clr":1},{"x":30.15,"y":24,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":24.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":25.5,"w":4.5,"h":0.75,"clr":1},{"x":23.4,"y":26.25,"w":4.05,"h":0.75,"clr":1},{"x":30.15,"y":26.25,"w":4.5,"h":1.5,"clr":1},{"x":30.15,"y":27.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":28.5,"w":4.5,"h":0.75,"clr":1},{"x":2.25,"y":29.25,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":30.15,"y":30,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":30.75,"w":4.5,"h":0.75,"clr":1},{"x":2.25,"y":33.75,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.25,"y":34.5,"w":25.65,"h":1.5,"clr":1},{"x":27.9,"y":34.5,"w":8.1,"h":1.5,"clr":1},{"x":2.25,"y":36,"w":33.75,"h":1.5,"clr":1},{"x":2.25,"y":37.5,"w":33.75,"h":3.75,"clr":1},{"x":12.618,"y":19.657,"w":2.421,"h":1.279,"clr":1},{"x":15.197,"y":19.61,"w":2.607,"h":1.279,"clr":1},{"x":12.618,"y":21.157,"w":2.421,"h":1.279,"clr":1},{"x":15.173,"y":21.11,"w":2.653,"h":1.279,"clr":1}],"Texts":[{"x":2,"y":1.9809999999999999,"w":13.32,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule H (Form 1040) 2013","S":2,"TS":[0,10,0,0]}]},{"x":33.95,"y":2.04,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.076,"y":2.04,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" 2 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.259,"y":2.821,"w":3.128,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II ","S":-1,"TS":[0,13,0,0]}]},{"x":4.625,"y":2.821,"w":16.867,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Federal Unemployment (FUTA) Tax ","S":-1,"TS":[0,13,0,0]}]},{"x":33.225,"y":3.652,"w":2.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes ","S":3,"TS":[0,12,0,0]}]},{"x":34.695,"y":3.652,"w":1.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":4.401,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":4.401,"w":47.328,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you pay unemployment contributions to only one state? (If you paid contributions to a credit reduction","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":5.089,"w":17.967,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"state, see instructions and check “No.”) ","S":3,"TS":[0,12,0,0]}]},{"x":14,"y":5.089,"w":30.659,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"x":32.062,"y":5.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":5.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":5.839,"w":50.106,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you pay all state unemployment contributions for 2013 by April 15, 2014? Fiscal year filers see instructions ","S":3,"TS":[0,12,0,0]}]},{"x":32.062,"y":5.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":6.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":6.589,"w":41.688,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Were all wages that are taxable for FUTA tax also taxable for your state’s unemployment tax?","S":3,"TS":[0,12,0,0]}]},{"x":27.5,"y":6.589,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..... ","S":3,"TS":[0,12,0,0]}]},{"x":32.062,"y":6.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":8.152,"w":2.76,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Next: ","S":3,"TS":[0,12,0,0]}]},{"x":3.553,"y":8.152,"w":8.521,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you checked the ","S":3,"TS":[0,12,0,0]}]},{"x":8.346,"y":8.152,"w":2.704,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"“Yes”","S":3,"TS":[0,12,0,0]}]},{"x":9.867,"y":8.152,"w":3.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" box on ","S":3,"TS":[0,12,0,0]}]},{"x":11.919,"y":8.152,"w":1.368,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"all ","S":3,"TS":[0,12,0,0]}]},{"x":12.689,"y":8.152,"w":16.615,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" the lines above, complete Section A.","S":3,"TS":[0,12,0,0]}]},{"x":22.035,"y":8.152,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.563,"y":8.839,"w":8.521,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you checked the ","S":3,"TS":[0,12,0,0]}]},{"x":8.356,"y":8.839,"w":2.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"“No”","S":3,"TS":[0,12,0,0]}]},{"x":9.637,"y":8.839,"w":3.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" box on ","S":3,"TS":[0,12,0,0]}]},{"x":11.69,"y":8.839,"w":1.686,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"any","S":3,"TS":[0,12,0,0]}]},{"x":12.638,"y":8.839,"w":26.747,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of the lines above, skip Section A and complete Section B. ","S":3,"TS":[0,12,0,0]}]},{"x":17.446,"y":9.54,"w":4.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Section A ","S":-1,"TS":[0,13,0,0]}]},{"x":2.275,"y":10.389,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":10.412,"w":28.434,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name of the state where you paid unemployment contributions ","S":3,"TS":[0,12,0,0]}]},{"x":19.344,"y":10.319,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2.275,"y":12.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":12.589,"w":23.916,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Contributions paid to your state unemployment fund ","S":3,"TS":[0,12,0,0]}]},{"x":17,"y":12.589,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":22.162,"y":12.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":13.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":13.339,"w":17.241,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total cash wages subject to FUTA tax ","S":3,"TS":[0,12,0,0]}]},{"x":13.25,"y":13.339,"w":26.66,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"x":28.912,"y":13.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":14.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":14.089,"w":4.927,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"FUTA tax. ","S":3,"TS":[0,12,0,0]}]},{"x":6.121,"y":14.089,"w":37.567,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 15 by .6% (.006). Enter the result here, skip Section B, and go to line 25","S":3,"TS":[0,12,0,0]}]},{"x":28.912,"y":14.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"x":17.44,"y":14.79,"w":4.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Section B ","S":-1,"TS":[0,13,0,0]}]},{"x":2.275,"y":15.588999999999999,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":15.588999999999999,"w":36.526,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete all columns below that apply (if you need more space, see instructions):","S":3,"TS":[0,12,0,0]}]},{"x":4.895,"y":16.312,"w":1.166,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(a)","S":2,"TS":[0,10,0,0]}]},{"x":5.405,"y":16.312,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":3.716,"y":16.875,"w":6.835,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name of state ","S":2,"TS":[0,10,0,0]}]},{"x":9.528,"y":16.359,"w":2.037,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(b) ","S":2,"TS":[0,10,0,0]}]},{"x":7.981,"y":16.922,"w":8.554,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable wages (as ","S":2,"TS":[0,10,0,0]}]},{"x":12.707,"y":16.875,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":7.866,"y":17.484,"w":9.076,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"defined in state act) ","S":2,"TS":[0,10,0,0]}]},{"x":15.245,"y":16.312,"w":2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(c) ","S":2,"TS":[0,10,0,0]}]},{"x":13.414,"y":16.875,"w":9.815,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"State experience rate ","S":2,"TS":[0,10,0,0]}]},{"x":17.708,"y":16.875,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":14.876,"y":17.438,"w":3.13,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"period ","S":2,"TS":[0,10,0,0]}]},{"x":13.161,"y":18.047,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"From ","S":2,"TS":[0,10,0,0]}]},{"x":15.952000000000002,"y":18.154,"w":1.426,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"To ","S":2,"TS":[0,10,0,0]}]},{"x":18.837,"y":16.312,"w":3.705,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(d) ","S":2,"TS":[0,10,0,0]}]},{"x":18.585,"y":16.875,"w":2.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"State ","S":2,"TS":[0,10,0,0]}]},{"x":18.027,"y":17.438,"w":5.185,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"experience ","S":2,"TS":[0,10,0,0]}]},{"x":18.723,"y":18,"w":2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"rate ","S":2,"TS":[0,10,0,0]}]},{"x":22.22,"y":16.312,"w":2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(e) ","S":2,"TS":[0,10,0,0]}]},{"x":20.992,"y":16.875,"w":7.057,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply col. (b) ","S":2,"TS":[0,10,0,0]}]},{"x":24.08,"y":16.875,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":21.75,"y":17.438,"w":3.595,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"by .054 ","S":2,"TS":[0,10,0,0]}]},{"x":26.323,"y":16.312,"w":1.759,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(f) ","S":2,"TS":[0,10,0,0]}]},{"x":25.042,"y":16.875,"w":7.057,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply col. (b) ","S":2,"TS":[0,10,0,0]}]},{"x":28.13,"y":16.875,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":25.569,"y":17.438,"w":4.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"by col. (d) ","S":2,"TS":[0,10,0,0]}]},{"x":30.087,"y":16.25,"w":2.037,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(g) ","S":2,"TS":[0,10,0,0]}]},{"x":28.859,"y":16.812,"w":7.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract col. (f) ","S":2,"TS":[0,10,0,0]}]},{"x":31.963,"y":16.812,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":28.953,"y":17.375,"w":6.667,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from col. (e). If ","S":2,"TS":[0,10,0,0]}]},{"x":31.869,"y":17.375,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":29.163,"y":17.938,"w":5.702,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"zero or less, ","S":2,"TS":[0,10,0,0]}]},{"x":31.658,"y":17.938,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":29.438,"y":18.5,"w":4.446,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"enter -0-. ","S":2,"TS":[0,10,0,0]}]},{"x":33.691,"y":16.25,"w":2.019,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(h) ","S":2,"TS":[0,10,0,0]}]},{"x":32.629,"y":16.812,"w":6.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Contributions ","S":2,"TS":[0,10,0,0]}]},{"x":35.392,"y":16.812,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":32.726,"y":17.375,"w":5.872,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"paid to state ","S":2,"TS":[0,10,0,0]}]},{"x":35.295,"y":17.375,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":32.495,"y":17.938,"w":6.93,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"unemployment ","S":2,"TS":[0,10,0,0]}]},{"x":35.527,"y":17.938,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":33.512,"y":18.5,"w":2.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"fund ","S":2,"TS":[0,10,0,0]}]},{"x":1.948,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":8.248,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":13.198,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":15.448,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":17.698,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":20.398,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":24.448,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":28.498,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":32.098,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2.275,"y":23.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":23.089,"w":3,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Totals ","S":3,"TS":[0,12,0,0]}]},{"x":5.75,"y":23.089,"w":38.657,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............................ ","S":3,"TS":[0,12,0,0]}]},{"x":27.562,"y":23.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":23.827,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":23.839,"w":15.227,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add columns (g) and (h) of line 18 ","S":3,"TS":[0,12,0,0]}]},{"x":12.5,"y":23.839,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":22.162,"y":23.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":24.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":24.589,"w":29.966,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total cash wages subject to FUTA tax (see the line 15 instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":20.75,"y":24.589,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":28.912,"y":24.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":25.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":25.339,"w":14.043,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 20 by 6.0% (.060) ","S":-1,"TS":[0,11.82,0,0]}]},{"x":11.75,"y":25.339,"w":29.942,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11.82,0,0]}]},{"x":28.912,"y":25.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":26.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":26.089,"w":13.765,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 20 by 5.4% (.054) ","S":3,"TS":[0,12,0,0]}]},{"x":11.75,"y":26.089,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":22.162,"y":26.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":26.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":26.839,"w":4.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":5.778,"y":26.839,"w":3.496,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"x":7.744,"y":26.839,"w":9.021,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of line 19 or line 22 ","S":3,"TS":[0,12,0,0]}]},{"x":13.25,"y":26.839,"w":26.66,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"x":3.347,"y":27.589,"w":40.917,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Employers in a credit reduction state must use the worksheet on page H-7 and check here)","S":3,"TS":[0,12,0,0]}]},{"x":26.748,"y":27.589,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":28.912,"y":27.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":28.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":28.339,"w":4.927,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"FUTA tax. ","S":3,"TS":[0,12,0,0]}]},{"x":6.121,"y":28.339,"w":30.194,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 23 from line 21. Enter the result here and go to line 25 ","S":3,"TS":[0,12,0,0]}]},{"x":23.75,"y":28.339,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":28.912,"y":28.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"x":2.142,"y":29.071,"w":3.423,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III ","S":-1,"TS":[0,13,0,0]}]},{"x":4.625,"y":29.071,"w":17.458,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total Household Employment Taxes ","S":-1,"TS":[0,13,0,0]}]},{"x":2.275,"y":29.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":29.839,"w":39.715,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount from line 8. If you checked the “Yes” box on line C of page 1, enter -0- ","S":3,"TS":[0,12,0,0]}]},{"x":26.001,"y":29.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":26.751,"y":29.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":27.501,"y":29.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":28.912,"y":29.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":30.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":30.589,"w":15.672,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add line 16 (or line 24) and line 25 ","S":3,"TS":[0,12,0,0]}]},{"x":12.5,"y":30.589,"w":27.993,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"x":28.912,"y":30.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":31.339,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"27 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":31.339,"w":16.078,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Are you required to file Form 1040? ","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":32.089,"w":5.113,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes. Stop. ","S":3,"TS":[0,12,0,0]}]},{"x":7.126,"y":32.089,"w":28.271,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Include the amount from line 26 above on Form 1040, line 59a. ","S":3,"TS":[0,12,0,0]}]},{"x":23.029,"y":32.089,"w":3.186,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not","S":3,"TS":[0,12,0,0]}]},{"x":24.821,"y":32.089,"w":10.945,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" complete Part IV below.","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":32.777,"w":1.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No.","S":3,"TS":[0,12,0,0]}]},{"x":5.167,"y":32.777,"w":28.209,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" You may have to complete Part IV. See instructions for details.","S":3,"TS":[0,12,0,0]}]},{"x":2.13,"y":33.571,"w":3.463,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part IV ","S":-1,"TS":[0,13,0,0]}]},{"x":4.625,"y":33.571,"w":12.149,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Address and Signature— ","S":-1,"TS":[0,13,0,0]}]},{"x":12.218,"y":33.571,"w":8.28,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete this part","S":-1,"TS":[0,13,0,0]}]},{"x":17.393,"y":33.571,"w":2.537,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" only ","S":-1,"TS":[0,13,0,0]}]},{"x":18.979,"y":33.571,"w":17.411,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"if required. See the line 27 instructions.","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":34.16,"w":36.211,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Address (number and street) or P.O. box if mail is not delivered to street address ","S":2,"TS":[0,10,0,0]}]},{"x":27.9,"y":34.143,"w":10.559,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Apt., room, or suite no. ","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":35.682,"w":20.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"City, town or post office, state, and ZIP code ","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":37.15,"w":56.848,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Under penalties of perjury, I declare that I have examined this schedule, including accompanying statements, and to the best of","S":2,"TS":[0,10,0,0]}]},{"x":28.376,"y":37.15,"w":15.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" my knowledge and belief, it is true,","S":2,"TS":[0,10,0,0]}]},{"x":1.9980000000000002,"y":37.65,"w":58.351,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"correct, and complete. No part of any payment made to a state unemployment fund claimed as a credit was, or is to be, deducted ","S":2,"TS":[0,10,0,0]}]},{"x":28.954,"y":37.65,"w":15.265,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from the payments to employees. ","S":2,"TS":[0,10,0,0]}]},{"x":1.999,"y":38.15,"w":49.393,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Declaration of preparer (other than taxpayer) is based on all information of which preparer has any knowledge. ","S":2,"TS":[0,10,0,0]}]},{"x":2.352,"y":39.165,"w":0.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"F","S":-1,"TS":[0,23.9997,0,0],"RA":90}]},{"x":2.9,"y":40.312,"w":9.687,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Employer’s signature ","S":2,"TS":[0,10,0,0]}]},{"x":23.502,"y":39.165,"w":0.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"F","S":-1,"TS":[0,23.9997,0,0],"RA":90}]},{"x":24.5,"y":40.312,"w":2.371,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date ","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":41.435,"w":2.388,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Paid ","S":4,"TS":[0,14,0,0]}]},{"x":2,"y":42.185,"w":4.445,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Preparer ","S":4,"TS":[0,14,0,0]}]},{"x":2,"y":42.935,"w":4.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Use Only","S":4,"TS":[0,14,0,0]}]},{"x":5.4,"y":40.938,"w":12.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Print/Type preparer’s name","S":2,"TS":[0,10,0,0]}]},{"x":14.725,"y":40.938,"w":9.037,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Preparer's signature","S":2,"TS":[0,10,0,0]}]},{"x":24.3,"y":40.938,"w":2.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"x":28.35,"y":41.338,"w":6.169,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check if ","S":2,"TS":[0,10,0,0]}]},{"x":28.35,"y":41.838,"w":6.353,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"x":31.375,"y":40.938,"w":2.203,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"x":5.4,"y":42.625,"w":7.189,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm’s name ","S":2,"TS":[0,10,0,0]}]},{"x":8.545,"y":42.531,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":5.4,"y":43.375,"w":7.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm's address ","S":2,"TS":[0,10,0,0]}]},{"x":8.544,"y":43.281,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":27,"y":42.625,"w":5.186,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm's EIN ","S":2,"TS":[0,10,0,0]}]},{"x":29.269,"y":42.531,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":27,"y":43.375,"w":4.557,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Phone no.","S":2,"TS":[0,10,0,0]}]},{"x":29.705,"y":44.125,"w":14.096,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule H (Form 1040) 2013 ","S":2,"TS":[0,10,0,0]}]},{"x":12.629,"y":18.576,"w":4.558,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"mm/dd/yy","S":2,"TS":[0,10,0,0]}]},{"x":15.254,"y":18.623,"w":4.558,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"mm/dd/yy","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":2232,"AM":1024,"TU":"For Privacy Act and Paperwork Reduction Act Notice, see the instructions","x":8.261,"y":2.117,"w":16.328,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2233,"AM":1024,"TU":"Schedule H (Form 1040) 2013","x":27.975,"y":2.136,"w":6.067,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":2240,"AM":0,"TU":"Line 13. State where you paid unemployment contributions.","x":20.589,"y":10.566,"w":7.191,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AL"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":2241,"AM":0,"TU":"Line 14. Contributions paid to your state unemployment fund.","x":23.476,"y":12.761,"w":3.957,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":2242,"AM":0,"TU":"Line 15. Total cash wages subject to FUTA tax.","x":30.248,"y":13.462,"w":4.338,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":2243,"AM":1024,"x":30.241,"y":14.244,"w":4.338,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A30_STNAME_1_","EN":0},"TI":2244,"AM":0,"TU":"Line 17(a) Name of state.","x":2.343,"y":20.067,"w":4.442,"h":0.867,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":" "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A30_TAXWAGES_1_","EN":0},"TI":2245,"AM":0,"TU":"Line 17(b). Taxable wages (as defined in state act).","x":7.678,"y":20.051,"w":4.772,"h":0.882},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATEFROM_1_","EN":0},"TI":2246,"AM":0,"TU":"Line 17(c). State experience rate period from.","x":12.703,"y":20.135,"w":2.326,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATETO_1_","EN":0},"TI":2247,"AM":0,"TU":"Line 17(c). State experience rate period to.","x":15.36,"y":20.159,"w":2.428,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A31_STEXPRT_1_","EN":0},"TI":2248,"AM":0,"TU":"Line 17(d). State experience rate.","x":18.067,"y":20.096,"w":2.573,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLE_1_","EN":0},"TI":2249,"AM":1024,"x":20.767,"y":20.096,"w":3.923,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLF_1_","EN":0},"TI":2250,"AM":1024,"x":24.817,"y":20.123,"w":3.922,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLG_1_","EN":0},"TI":2251,"AM":1024,"x":28.867,"y":20.096,"w":3.473,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_UNEMP_1_","EN":0},"TI":2252,"AM":0,"TU":"Line 17(h). Contributions paid to state unemployment fund.","x":32.468,"y":20.123,"w":3.51,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A30_STNAME_2_","EN":0},"TI":2253,"AM":0,"TU":"Line 17(a) Name of state.","x":2.317,"y":21.34,"w":4.493,"h":0.918,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AK"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A30_TAXWAGES_2_","EN":0},"TI":2254,"AM":0,"TU":"Line 17(b). Taxable wages (as defined in state act).","x":7.588,"y":21.471,"w":4.823,"h":0.882},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATEFROM_2_","EN":0},"TI":2255,"AM":0,"TU":"Line 17(c). State experience rate period from.","x":12.714,"y":21.55,"w":2.275,"h":0.849,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATETO_2_","EN":0},"TI":2256,"AM":0,"TU":"Line 17(c). State experience rate period to.","x":15.344,"y":21.506,"w":2.631,"h":0.909,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A31_STEXPRT_2_","EN":0},"TI":2257,"AM":0,"TU":"Line 17(d). State experience rate.","x":18.106,"y":21.66,"w":2.573,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLE_2_","EN":0},"TI":2258,"AM":1024,"x":20.779,"y":21.66,"w":3.922,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLF_2_","EN":0},"TI":2259,"AM":1024,"x":24.829,"y":21.687,"w":3.922,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLG_2_","EN":0},"TI":2260,"AM":1024,"x":28.879,"y":21.66,"w":3.472,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_UNEMP_2_","EN":0},"TI":2261,"AM":0,"TU":"Line 17(h). Contributions paid to state unemployment fund.","x":32.479,"y":21.687,"w":3.51,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A","EN":0},"TI":2262,"AM":1024,"x":28.864,"y":23.184,"w":3.473,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B","EN":0},"TI":2263,"AM":1024,"x":32.508,"y":23.209,"w":3.472,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":2264,"AM":1024,"x":23.444,"y":23.988,"w":3.968,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":2265,"AM":0,"TU":"Line 20. Total cash wages subject to FUTA tax (see the line 15 instructions).","x":30.241,"y":24.725,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":2266,"AM":1024,"x":30.188,"y":25.545,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":2267,"AM":1024,"x":23.445,"y":26.258,"w":3.968,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":2269,"AM":0,"TU":"Line 23. Enter the smaller of line 19 or line 22.","x":30.225,"y":27.658,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":2270,"AM":1024,"x":30.188,"y":28.545,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":2271,"AM":1024,"x":30.188,"y":30.038,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":2272,"AM":1024,"x":30.188,"y":30.795,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDRESS","EN":0},"TI":2275,"AM":0,"TU":"Address (number and street) or P.O. box if mail is not delivered to street address","x":2.274,"y":35.131,"w":25.566,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":2276,"AM":0,"TU":"Apt., room, or suite no.","x":28.133,"y":35.131,"w":3.345,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":2277,"AM":0,"TU":"City, town or post office.","x":2.262,"y":36.635,"w":10.456,"h":0.85},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":2278,"AM":0,"TU":"State","x":19.232,"y":36.641,"w":4.329,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"no entry"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":2279,"AM":0,"TU":"Zip code.","x":30.735,"y":36.63,"w":5.284,"h":0.85},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME","EN":0},"TI":2280,"AM":1024,"TU":"Firm’s name a","x":9.06,"y":42.788,"w":9.008,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B10Y","EN":0},"TI":2234,"AM":0,"TU":"Line 10. Checkboxes.","x":33.708,"y":5.229,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B10N","EN":0},"TI":2235,"AM":0,"TU":"Line 10. Checkboxes.","x":35.038,"y":5.224,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"B10RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B11Y","EN":0},"TI":2236,"AM":0,"TU":"Line 11. Checkboxes.","x":33.688,"y":5.944,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B11N","EN":0},"TI":2237,"AM":0,"TU":"Line 11. Checkboxes.","x":35.045,"y":5.939,"w":0.581,"h":0.833,"checked":false}],"id":{"Id":"B11RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B12Y","EN":0},"TI":2238,"AM":0,"TU":"Line 12. Checkboxes.","x":33.681,"y":6.726,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B12N","EN":0},"TI":2239,"AM":0,"TU":"Line 12. Checkboxes.","x":35.01,"y":6.722,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"B12RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EMPLRX","EN":0},"TI":2268,"AM":0,"TU":"Employers in a credit reduction state must use the worksheet on page H-7 and check here.)","x":27.563,"y":27.738,"w":0.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX28A","EN":0},"TI":2273,"AM":0,"x":3.537,"y":32.215,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX28B","EN":0},"TI":2274,"AM":0,"x":3.56,"y":32.946,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BX28RB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHHT.json b/test/data/fd/form/FSCHHT.json index 8d699938..2908281e 100755 --- a/test/data/fd/form/FSCHHT.json +++ b/test/data/fd/form/FSCHHT.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":5.25,"w":1.5,"l":92.899},{"oc":"#221f1f","x":6.145,"y":5.256,"w":1.5,"l":14.936},{"oc":"#221f1f","x":84.064,"y":3,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.064,"y":5.25,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.145,"y":5.25,"w":1.5,"l":70.624},{"oc":"#221f1f","x":6.145,"y":8.25,"w":0.75,"l":70.624},{"oc":"#221f1f","x":76.682,"y":5.25,"w":1.5,"l":22.361},{"oc":"#221f1f","x":76.682,"y":6.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.682,"y":6.75,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.682,"y":8.25,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.145,"y":24,"w":1.5,"l":92.899},{"oc":"#221f1f","x":6.145,"y":25.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":60.595,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":27,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":25.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":28.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":30,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":28.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":33,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":33,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":36,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":34.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":34.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":36,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":36,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":36,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":36,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":36,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":37.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":37.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":44.25,"w":1.5,"l":49.586},{"oc":"#221f1f","x":55.645,"y":44.25,"w":1.5,"l":26.073},{"oc":"#221f1f","x":81.632,"y":44.25,"w":1.5,"l":17.411}],"VLines":[{"oc":"#221f1f","x":21.038,"y":2.234,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.15,"y":2.234,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.15,"y":2.984,"w":1.5,"l":2.281},{"oc":"#221f1f","x":76.725,"y":5.219,"w":0.75,"l":1.547},{"oc":"#221f1f","x":76.725,"y":6.734,"w":0.75,"l":1.531},{"oc":"#181616","x":79.2,"y":7.5,"w":0.75,"l":0.731},{"dsh":1,"oc":"#181616","x":81.685,"y":7.575,"w":0.75,"l":0.563},{"oc":"#181616","x":84.171,"y":7.5,"w":0.75,"l":0.731},{"oc":"#181616","x":86.656,"y":7.5,"w":0.75,"l":0.731},{"oc":"#181616","x":89.141,"y":7.5,"w":0.75,"l":0.731},{"oc":"#181616","x":91.627,"y":7.5,"w":0.75,"l":0.731},{"oc":"#181616","x":93.985,"y":7.5,"w":0.75,"l":0.731},{"oc":"#181616","x":96.496,"y":7.5,"w":0.75,"l":0.731},{"oc":"#221f1f","x":64.35,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":25.485,"w":0.75,"l":1.547},{"oc":"#221f1f","x":79.2,"y":25.485,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.288,"y":25.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":25.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":25.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":26.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":27.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":29.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":28.485,"w":0.75,"l":1.547},{"oc":"#221f1f","x":79.2,"y":28.485,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":29.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":30.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":32.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":31.484,"w":0.75,"l":1.547},{"oc":"#221f1f","x":79.2,"y":31.484,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.288,"y":31.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":31.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":95.288,"y":31.484,"w":0.75,"l":2.281},{"oc":"#221f1f","x":82.913,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":32.985,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":33.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":34.484,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":34.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":35.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":35.234,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":35.976,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.288,"y":35.976,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":35.976,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":35.976,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":36.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":36.727,"w":0.75,"l":0.789}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#fcfae1","x":6.188,"y":2.25,"w":92.813,"h":45,"clr":-1},{"x":6.188,"y":5.25,"w":70.538,"h":3,"clr":1},{"x":76.725,"y":5.25,"w":22.275,"h":1.5,"clr":1},{"x":76.725,"y":6.75,"w":22.275,"h":1.5,"clr":1},{"oc":"#221f1f","x":6.188,"y":24.375,"w":6.188,"h":0.75,"clr":-1},{"x":60.638,"y":26.25,"w":3.712,"h":0.75,"clr":1},{"x":64.35,"y":26.25,"w":11.138,"h":0.75,"clr":1},{"x":75.488,"y":26.25,"w":3.713,"h":0.75,"clr":1},{"oc":"#bebfc1","x":79.2,"y":25.5,"w":3.712,"h":1.5,"clr":-1},{"x":82.913,"y":25.5,"w":12.375,"h":2.25,"clr":1},{"x":95.288,"y":25.5,"w":3.712,"h":2.25,"clr":1},{"x":79.2,"y":27,"w":3.712,"h":1.5,"clr":1},{"x":82.913,"y":27.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":27.75,"w":3.712,"h":0.75,"clr":1},{"x":60.638,"y":29.25,"w":3.712,"h":0.75,"clr":1},{"x":64.35,"y":29.25,"w":11.138,"h":0.75,"clr":1},{"x":75.488,"y":29.25,"w":3.713,"h":0.75,"clr":1},{"oc":"#bebfc1","x":79.2,"y":28.5,"w":3.712,"h":1.5,"clr":-1},{"x":82.913,"y":28.5,"w":12.375,"h":2.25,"clr":1},{"x":95.288,"y":28.5,"w":3.712,"h":2.25,"clr":1},{"x":79.2,"y":30,"w":3.712,"h":1.5,"clr":1},{"x":82.913,"y":30.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":30.75,"w":3.712,"h":0.75,"clr":1},{"x":60.638,"y":32.25,"w":3.712,"h":0.75,"clr":1},{"x":64.35,"y":32.25,"w":11.138,"h":0.75,"clr":1},{"x":75.488,"y":32.25,"w":3.713,"h":0.75,"clr":1},{"oc":"#bebfc1","x":79.2,"y":31.5,"w":3.712,"h":1.5,"clr":-1},{"x":82.913,"y":31.5,"w":12.375,"h":2.25,"clr":1},{"x":95.288,"y":31.5,"w":3.712,"h":2.25,"clr":1},{"x":79.2,"y":33,"w":3.712,"h":1.5,"clr":1},{"x":82.913,"y":33.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":33.75,"w":3.712,"h":0.75,"clr":1},{"x":79.2,"y":34.5,"w":3.712,"h":1.5,"clr":1},{"x":82.913,"y":34.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":34.5,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":35.25,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":35.25,"w":3.712,"h":0.75,"clr":1},{"x":79.2,"y":36,"w":3.712,"h":1.5,"clr":1},{"x":82.913,"y":36,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":36,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":36.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":36.75,"w":3.712,"h":0.75,"clr":1},{"oc":"#221f1f","x":-0.798,"y":49.5,"w":1.596,"h":0.29,"clr":-1},{"oc":"#221f1f","x":0.037,"y":48.92,"w":1.596,"h":0.58,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":2.009,"w":7.077,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20H%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":2.696,"w":5.871,"clr":-1,"A":"left","R":[{"T":"(Form%201040)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":3.819,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.938,"y":4.319,"w":13.279000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":36.198,"y":2.1,"w":14.02,"clr":-1,"A":"left","R":[{"T":"Household%20Employment%20Taxes%20%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":24.191,"y":2.794,"w":40.95,"clr":-1,"A":"left","R":[{"T":"(For%20Social%20Security%2C%20Medicare%2C%20Withheld%20Income%2C%20and%20Federal%20Unemployment%20(FUTA)%20Taxes)","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":36.045,"y":3.4770000000000003,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":37.411,"y":3.5709999999999997,"w":22.714000000000006,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%2C%201040NR%2C%201040-SS%2C%20or%201041.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":22.966,"y":4.149,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.38,"y":4.242,"w":30.680999999999997,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Schedule%20H%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.565,"y":4.242,"w":11.023000000000005,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fform1040.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.741,"y":1.972,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-1971","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.857,"y":3.33,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.202,"y":3.33,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.963,"y":3.9189999999999996,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.963,"y":4.365,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.94,"y":4.365,"w":1.112,"clr":-1,"A":"left","R":[{"T":"44","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":5,"w":8.502,"clr":-1,"A":"left","R":[{"T":"Name%20of%20employer%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.163,"y":5,"w":11.220000000000002,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.163,"y":6.5,"w":14.937000000000003,"clr":-1,"A":"left","R":[{"T":"Employer%20identification%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.839,"w":48.79099999999997,"clr":-1,"A":"left","R":[{"T":"Calendar%20year%20taxpayers%20having%20no%20household%20employees%20in%202013%20do%20not%20have%20to%20complete%20this%20form%20for%202013.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.353,"y":10.452,"w":0.9630000000000001,"clr":-1,"A":"left","R":[{"T":"A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":10.464,"w":5.6129999999999995,"clr":-1,"A":"left","R":[{"T":"Did%20you%20pay%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.043,"y":10.464,"w":3.742,"clr":-1,"A":"left","R":[{"T":"any%20one","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":25.304,"y":10.464,"w":44.65899999999999,"clr":-1,"A":"left","R":[{"T":"%20household%20employee%20cash%20wages%20of%20%241%2C800%20or%20more%20in%202013%3F%20(If%20any%20household%20employee%20was%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.644,"y":11.152,"w":53.64099999999995,"clr":-1,"A":"left","R":[{"T":"spouse%2C%20your%20child%20under%20age%2021%2C%20your%20parent%2C%20or%20anyone%20under%20age%2018%2C%20see%20the%20line%20A%20instructions%20before%20you%20answer%20this","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.63,"y":11.839,"w":4.668000000000001,"clr":-1,"A":"left","R":[{"T":"question.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.203,"y":13.339,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.383,"y":13.339,"w":16.264000000000003,"clr":-1,"A":"left","R":[{"T":"%20%20Skip%20lines%20B%20and%20C%20and%20go%20to%20line%201.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.204,"y":14.089,"w":2.464,"clr":-1,"A":"left","R":[{"T":"No.%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.015,"y":14.089,"w":5.556000000000001,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%20B.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.324,"y":15.588999999999999,"w":0.982,"clr":-1,"A":"left","R":[{"T":"B%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":15.588999999999999,"w":35.416,"clr":-1,"A":"left","R":[{"T":"Did%20you%20withhold%20federal%20income%20tax%20during%202013%20for%20any%20household%20employee%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":17.089,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.305,"y":17.089,"w":12.837000000000002,"clr":-1,"A":"left","R":[{"T":"%20%20Skip%20line%20C%20and%20go%20to%20line%207.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.126,"y":17.839,"w":2.464,"clr":-1,"A":"left","R":[{"T":"No.%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.937999999999999,"y":17.839,"w":5.593,"clr":-1,"A":"left","R":[{"T":"Go%20to%20line%20C.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.266,"y":19.386,"w":1.0190000000000001,"clr":-1,"A":"left","R":[{"T":"C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":19.402,"w":5.6129999999999995,"clr":-1,"A":"left","R":[{"T":"Did%20you%20pay%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.815,"y":19.402,"w":2.1470000000000002,"clr":-1,"A":"left","R":[{"T":"total","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.297,"y":19.402,"w":15.170000000000007,"clr":-1,"A":"left","R":[{"T":"%20cash%20wages%20of%20%241%2C000%20or%20more%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.889,"y":19.402,"w":1.686,"clr":-1,"A":"left","R":[{"T":"any","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.658,"y":19.402,"w":4.4079999999999995,"clr":-1,"A":"left","R":[{"T":"%20calendar%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.637,"y":19.402,"w":3.482,"clr":-1,"A":"left","R":[{"T":"quarter","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.184,"y":19.402,"w":8.782000000000004,"clr":-1,"A":"left","R":[{"T":"%20of%202012%20or%202013%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.574,"y":19.402,"w":1.09,"clr":-1,"A":"left","R":[{"T":"all","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":78.421,"y":19.402,"w":10.911000000000003,"clr":-1,"A":"left","R":[{"T":"%20household%20employees%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.642,"y":20.089,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.042,"y":20.089,"w":3.4639999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.401,"y":20.089,"w":43.307999999999964,"clr":-1,"A":"left","R":[{"T":"count%20cash%20wages%20paid%20in%202012%20or%202013%20to%20your%20spouse%2C%20your%20child%20under%20age%2021%2C%20or%20your%20parent.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":21.589,"w":5.243,"clr":-1,"A":"left","R":[{"T":"No.%20%20%20Stop.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.235,"y":21.589,"w":11.299000000000003,"clr":-1,"A":"left","R":[{"T":"Do%20not%20file%20this%20schedule.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.114,"y":22.339,"w":2.334,"clr":-1,"A":"left","R":[{"T":"Yes.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.725,"y":22.339,"w":14.394000000000002,"clr":-1,"A":"left","R":[{"T":"Skip%20lines%201-9%20and%20go%20to%20line%2010.%20","S":3,"TS":[0,12,0,0]}]},{"x":6.836,"y":24.196,"w":2.833,"clr":1,"A":"left","R":[{"T":"Part%20I%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.156,"y":24.196,"w":25.532000000000007,"clr":-1,"A":"left","R":[{"T":"Social%20Security%2C%20Medicare%2C%20and%20Federal%20Income%20Taxes%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":7.552,"y":26.099,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":26.089,"w":20.815,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20wages%20subject%20to%20social%20security%20tax","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":43.063,"y":26.089,"w":11.997,"clr":-1,"A":"left","R":[{"T":"........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.814,"y":26.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":27.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":27.589,"w":22.209000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20security%20tax.%20Multiply%20line%201%20by%2012.4%25%20(.124)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.124,"y":27.589,"w":21.327999999999996,"clr":-1,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":27.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":29.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":29.089,"w":18.889999999999997,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20wages%20subject%20to%20Medicare%20tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.939,"y":29.089,"w":14.663,"clr":-1,"A":"left","R":[{"T":"..........%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.814,"y":29.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":30.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":30.589,"w":19.302000000000003,"clr":-1,"A":"left","R":[{"T":"Medicare%20tax.%20Multiply%20line%203%20by%202.9%25%20(.029)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":41.001,"y":30.589,"w":25.32699999999999,"clr":-1,"A":"left","R":[{"T":"..................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":30.589,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":32.089,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":32.089,"w":29.613,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20wages%20subject%20to%20Additional%20Medicare%20Tax%20withholding%20.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.09,"y":32.089,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.814,"y":32.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":33.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":33.589,"w":30.025000000000006,"clr":-1,"A":"left","R":[{"T":"Additional%20Medicare%20Tax%20withholding.%20Multiply%20line%205%20by%200.9%25%20(.009)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.499,"y":33.589,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":33.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":35.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":35.089,"w":15.520000000000003,"clr":-1,"A":"left","R":[{"T":"Federal%20income%20tax%20withheld%2C%20if%20any","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":35.089,"w":29.325999999999986,"clr":-1,"A":"left","R":[{"T":".....................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":35.089,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":36.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":36.589,"w":27.714,"clr":-1,"A":"left","R":[{"T":"Total%20social%20security%2C%20Medicare%2C%20and%20federal%20income%20taxes.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":52.52,"y":36.589,"w":10.283000000000001,"clr":-1,"A":"left","R":[{"T":"Add%20lines%202%2C%204%2C%206%2C%20and%207","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":69.876,"y":36.589,"w":6.665,"clr":-1,"A":"left","R":[{"T":"....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.376,"y":36.589,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.552,"y":38.155,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":38.152,"w":5.6129999999999995,"clr":-1,"A":"left","R":[{"T":"Did%20you%20pay%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.639,"y":38.152,"w":2.1470000000000002,"clr":-1,"A":"left","R":[{"T":"total","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":22.062,"y":38.152,"w":15.170000000000007,"clr":-1,"A":"left","R":[{"T":"%20cash%20wages%20of%20%241%2C000%20or%20more%20in%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.243,"y":38.152,"w":1.686,"clr":-1,"A":"left","R":[{"T":"any","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.953,"y":38.152,"w":4.4079999999999995,"clr":-1,"A":"left","R":[{"T":"%20calendar%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":55.874,"y":38.152,"w":3.482,"clr":-1,"A":"left","R":[{"T":"quarter","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.362,"y":38.152,"w":8.782000000000004,"clr":-1,"A":"left","R":[{"T":"%20of%202012%20or%202013%20to%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":75.457,"y":38.152,"w":1.09,"clr":-1,"A":"left","R":[{"T":"all","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":77.246,"y":38.152,"w":10.911000000000003,"clr":-1,"A":"left","R":[{"T":"%20household%20employees%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.645,"y":38.839,"w":0.259,"clr":-1,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.046,"y":38.839,"w":3.1859999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.974,"y":38.839,"w":43.58599999999997,"clr":-1,"A":"left","R":[{"T":"%20count%20cash%20wages%20paid%20in%202012%20or%202013%20to%20your%20spouse%2C%20your%20child%20under%20age%2021%2C%20or%20your%20parent.)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":40.339,"w":4.965,"clr":-1,"A":"left","R":[{"T":"No.%20%20Stop.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":19.996,"y":40.339,"w":33.586,"clr":-1,"A":"left","R":[{"T":"Include%20the%20amount%20from%20line%208%20above%20on%20Form%201040%2C%20line%2059a.%20If%20you%20are%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.394,"y":40.339,"w":15.35600000000001,"clr":-1,"A":"left","R":[{"T":"required%20to%20file%20Form%201040%2C%20see%20the","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.094,"y":41.026,"w":8.391000000000002,"clr":-1,"A":"left","R":[{"T":"line%209%20instructions.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":42.589,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":15.305,"y":42.589,"w":6.539,"clr":-1,"A":"left","R":[{"T":"%20%20Go%20to%20line%2010.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":44.144,"w":35.76,"clr":-1,"A":"left","R":[{"T":"For%20Privacy%20Act%20and%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20the%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":63.962,"y":44.125,"w":7.707000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2012187K%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.126,"y":44.125,"w":14.096000000000005,"clr":-1,"A":"left","R":[{"T":"Schedule%20H%20(Form%201040)%202013%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8812,"AM":1024,"x":77.442,"y":5.993,"w":18.951,"h":0.833,"TU":"Sequence No. 44"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8813,"AM":1024,"x":6.214,"y":7.187,"w":70.178,"h":0.912},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":8814,"AM":0,"x":77.566,"y":7.495,"w":18.835,"h":0.833,"TU":"Employer identification number","MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":8821,"AM":0,"x":64.474,"y":26.258,"w":10.911,"h":0.833,"TU":"Line 1. Total cash wages subject to social security tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":8822,"AM":1024,"x":83.16,"y":27.686,"w":11.901,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":8823,"AM":0,"x":64.474,"y":29.258,"w":10.911,"h":0.833,"TU":"Line 3. Total cash wages subject to Medicare tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":8824,"AM":1024,"x":83.16,"y":30.605,"w":11.901,"h":0.88},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5AMED","EN":0},"TI":8825,"AM":0,"x":64.399,"y":32.265,"w":10.911,"h":0.833,"TU":"Line 5. Total cash wages subject to Additional Medicare Tax withholding."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6AMED","EN":0},"TI":8826,"AM":1024,"x":83.283,"y":33.631,"w":11.901,"h":0.88},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":8827,"AM":0,"x":83.098,"y":35.221,"w":12.024,"h":0.833,"TU":"Line 7. Federal income tax withheld, if any."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":8828,"AM":1024,"x":83.01,"y":36.545,"w":11.901,"h":0.88}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXA1","EN":0},"TI":8815,"AM":0,"x":9.882,"y":13.542,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXA2","EN":0},"TI":8816,"AM":0,"x":9.796,"y":14.3,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BXARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXB1","EN":0},"TI":8817,"AM":0,"x":9.839,"y":17.269,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXB2","EN":0},"TI":8818,"AM":0,"x":9.752,"y":18.027,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BXBRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXC1","EN":0},"TI":8819,"AM":0,"x":9.819,"y":21.754,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXC2","EN":0},"TI":8820,"AM":0,"x":9.732,"y":22.512,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BXCRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX91","EN":0},"TI":8829,"AM":0,"x":9.839,"y":40.505,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX92","EN":0},"TI":8830,"AM":0,"x":9.827,"y":42.788,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BX9RB","EN":0}}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.145,"y":3,"w":1.5,"l":87.949},{"oc":"#221f1f","x":94.007,"y":3,"w":1.5,"l":5.036},{"oc":"#221f1f","x":6.145,"y":3.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":91.532,"y":5.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":5.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.82,"y":5.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.82,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.575,"y":6,"w":0.75,"l":3.712},{"oc":"#221f1f","x":91.575,"y":5.25,"w":0.75,"l":3.712},{"oc":"#221f1f","x":95.245,"y":5.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.82,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.82,"y":6.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.575,"y":6.75,"w":0.75,"l":3.712},{"oc":"#221f1f","x":91.575,"y":6,"w":0.75,"l":3.712},{"oc":"#221f1f","x":95.245,"y":6,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":6.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.82,"y":6.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":87.82,"y":7.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":91.575,"y":7.5,"w":0.75,"l":3.712},{"oc":"#221f1f","x":91.575,"y":6.75,"w":0.75,"l":3.712},{"oc":"#221f1f","x":95.245,"y":6.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":7.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":9.75,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":10.5,"w":0.75,"l":92.899},{"dsh":1,"oc":"#221f1f","x":56.648,"y":11.25,"w":0.75,"l":21.357},{"oc":"#221f1f","x":79.157,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":10.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":10.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":13.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":13.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":14.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":14.25,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":14.25,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":14.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":14.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":15,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":15.75,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":16.5,"w":0.75,"l":17.411},{"oc":"#221f1f","x":6.145,"y":19.5,"w":0.75,"l":17.411},{"oc":"#221f1f","x":20.763,"y":16.547,"w":0.75,"l":13.698},{"oc":"#221f1f","x":23.47,"y":19.5,"w":0.75,"l":13.698},{"oc":"#221f1f","x":34.265,"y":16.5,"w":0.75,"l":15.258},{"oc":"#221f1f","x":34.709,"y":18.422,"w":0.75,"l":14.114},{"oc":"#221f1f","x":34.538,"y":19.5,"w":0.75,"l":8.783},{"oc":"#221f1f","x":41.582,"y":19.5,"w":0.75,"l":7.843},{"oc":"#221f1f","x":49.457,"y":16.5,"w":0.75,"l":7.511},{"oc":"#221f1f","x":49.457,"y":19.5,"w":0.75,"l":7.511},{"oc":"#221f1f","x":56.882,"y":16.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":56.882,"y":19.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.02,"y":16.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.02,"y":19.5,"w":0.75,"l":11.223},{"oc":"#221f1f","x":79.157,"y":16.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.157,"y":19.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.057,"y":16.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.057,"y":19.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":6.145,"y":19.5,"w":0.75,"l":17.411},{"oc":"#221f1f","x":6.145,"y":21,"w":0.75,"l":17.411},{"oc":"#221f1f","x":20.805,"y":21.047,"w":0.75,"l":13.613},{"oc":"#221f1f","x":20.805,"y":19.547,"w":0.75,"l":13.613},{"oc":"#221f1f","x":49.5,"y":21,"w":0.75,"l":7.425},{"oc":"#221f1f","x":49.5,"y":19.5,"w":0.75,"l":7.425},{"oc":"#221f1f","x":56.925,"y":21,"w":0.75,"l":11.138},{"oc":"#221f1f","x":56.925,"y":19.5,"w":0.75,"l":11.138},{"oc":"#221f1f","x":68.063,"y":21,"w":0.75,"l":11.138},{"oc":"#221f1f","x":68.063,"y":19.5,"w":0.75,"l":11.138},{"oc":"#221f1f","x":79.2,"y":21,"w":0.75,"l":9.9},{"oc":"#221f1f","x":79.2,"y":19.5,"w":0.75,"l":9.9},{"oc":"#221f1f","x":89.057,"y":19.5,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.057,"y":21,"w":0.75,"l":9.986},{"oc":"#221f1f","x":6.145,"y":21,"w":0.75,"l":17.411},{"oc":"#221f1f","x":6.145,"y":22.5,"w":1.125,"l":17.411},{"oc":"#221f1f","x":20.694,"y":21,"w":0.75,"l":16.362},{"oc":"#221f1f","x":20.694,"y":22.5,"w":1.125,"l":16.362},{"oc":"#221f1f","x":37.082,"y":21,"w":0.75,"l":6.273},{"oc":"#221f1f","x":37.082,"y":22.5,"w":1.125,"l":6.273},{"oc":"#221f1f","x":43.27,"y":21,"w":0.75,"l":6.273},{"oc":"#221f1f","x":43.27,"y":22.5,"w":1.125,"l":6.273},{"oc":"#221f1f","x":49.457,"y":21,"w":0.75,"l":7.511},{"oc":"#221f1f","x":49.457,"y":22.5,"w":1.125,"l":7.511},{"oc":"#221f1f","x":56.882,"y":21,"w":0.75,"l":11.223},{"oc":"#221f1f","x":56.882,"y":22.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":68.02,"y":21,"w":0.75,"l":11.223},{"oc":"#221f1f","x":68.02,"y":22.5,"w":1.125,"l":11.223},{"oc":"#221f1f","x":79.157,"y":21,"w":0.75,"l":9.986},{"oc":"#221f1f","x":79.157,"y":22.5,"w":1.125,"l":9.986},{"oc":"#221f1f","x":89.057,"y":21,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.057,"y":22.5,"w":1.125,"l":9.986},{"oc":"#221f1f","x":75.445,"y":22.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":75.445,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":22.5,"w":1.125,"l":9.986},{"oc":"#221f1f","x":89.057,"y":22.5,"w":1.125,"l":9.986},{"oc":"#221f1f","x":79.157,"y":24,"w":0.75,"l":9.986},{"oc":"#221f1f","x":89.057,"y":24,"w":0.75,"l":9.986},{"oc":"#221f1f","x":60.595,"y":24.75,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":24.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.488,"y":24.75,"w":0.75,"l":3.713},{"oc":"#221f1f","x":75.488,"y":24,"w":0.75,"l":3.713},{"oc":"#221f1f","x":79.157,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":24,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":24,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":25.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":25.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":25.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.913,"y":26.25,"w":0.75,"l":12.375},{"oc":"#221f1f","x":82.913,"y":25.5,"w":0.75,"l":12.375},{"oc":"#221f1f","x":95.245,"y":25.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":60.595,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":64.307,"y":27,"w":0.75,"l":11.223},{"oc":"#221f1f","x":75.445,"y":27,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":26.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":26.25,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":28.5,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":28.5,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":28.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":28.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":29.25,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":30,"w":0.75,"l":92.899},{"oc":"#221f1f","x":79.157,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.157,"y":30.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.87,"y":30,"w":0.75,"l":12.461},{"oc":"#221f1f","x":82.87,"y":30.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.245,"y":30,"w":0.75,"l":3.798},{"oc":"#221f1f","x":95.245,"y":30.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":30.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.157,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.87,"y":30.75,"w":1.125,"l":12.461},{"oc":"#221f1f","x":82.87,"y":31.5,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.245,"y":30.75,"w":1.125,"l":3.798},{"oc":"#221f1f","x":95.245,"y":31.5,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.145,"y":33.75,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.145,"y":34.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":34.5,"w":0.75,"l":70.624},{"oc":"#221f1f","x":6.145,"y":36,"w":0.75,"l":70.624},{"oc":"#221f1f","x":76.682,"y":34.5,"w":0.75,"l":22.361},{"oc":"#221f1f","x":76.682,"y":36,"w":0.75,"l":22.361},{"oc":"#221f1f","x":6.145,"y":36,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":37.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":37.5,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.145,"y":41.25,"w":0.75,"l":2.561},{"oc":"#221f1f","x":8.62,"y":40.5,"w":0.75,"l":53.299},{"oc":"#221f1f","x":68.02,"y":40.5,"w":0.75,"l":31.023},{"oc":"#221f1f","x":6.145,"y":41.25,"w":0.75,"l":8.748},{"oc":"#221f1f","x":6.145,"y":44.25,"w":0.75,"l":8.748},{"oc":"#221f1f","x":14.807,"y":41.25,"w":0.75,"l":26.073},{"oc":"#221f1f","x":14.807,"y":42.75,"w":0.75,"l":26.073},{"oc":"#221f1f","x":40.795,"y":41.25,"w":0.75,"l":26.073},{"oc":"#221f1f","x":40.795,"y":42.75,"w":0.75,"l":26.073},{"oc":"#221f1f","x":66.782,"y":41.25,"w":0.75,"l":11.223},{"oc":"#221f1f","x":66.782,"y":42.75,"w":0.75,"l":11.223},{"oc":"#221f1f","x":77.92,"y":41.25,"w":0.75,"l":8.748},{"oc":"#221f1f","x":77.92,"y":42.75,"w":0.75,"l":8.748},{"oc":"#221f1f","x":82.84,"y":42.094,"w":0.75,"l":1.375},{"oc":"#221f1f","x":82.84,"y":41.594,"w":0.75,"l":1.375},{"oc":"#221f1f","x":86.582,"y":41.25,"w":0.75,"l":12.461},{"oc":"#221f1f","x":86.582,"y":42.75,"w":0.75,"l":12.461},{"oc":"#221f1f","x":14.807,"y":43.5,"w":0.75,"l":59.486},{"oc":"#221f1f","x":14.807,"y":44.25,"w":0.75,"l":59.486},{"oc":"#221f1f","x":74.207,"y":43.5,"w":0.75,"l":24.836},{"oc":"#221f1f","x":74.207,"y":44.25,"w":0.75,"l":24.836},{"oc":"#221f1f","x":6.145,"y":44.25,"w":1.5,"l":92.899},{"oc":"#bfbfbf","x":-0.712,"y":49.5,"w":0.75,"l":1.425}],"VLines":[{"oc":"#221f1f","x":91.575,"y":3.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":3.734,"w":0.75,"l":1.531},{"oc":"#221f1f","x":87.863,"y":5.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":5.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":91.575,"y":5.25,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":5.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":87.863,"y":5.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":6,"w":0.75,"l":0.75},{"oc":"#221f1f","x":91.575,"y":6,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":5.984,"w":0.75,"l":0.781},{"oc":"#221f1f","x":87.863,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":6.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":91.575,"y":6.75,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":10.484,"w":0.75,"l":3.047},{"oc":"#221f1f","x":79.2,"y":10.484,"w":0.75,"l":3.047},{"oc":"#221f1f","x":95.288,"y":10.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":82.913,"y":10.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":95.288,"y":10.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":60.638,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":12.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":14.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":20.805,"y":16.531,"w":0.75,"l":3.031},{"oc":"#221f1f","x":34.418,"y":16.52,"w":0.75,"l":3.148},{"oc":"#221f1f","x":41.508,"y":18.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":49.5,"y":16.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":56.925,"y":16.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":68.063,"y":16.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":79.2,"y":16.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":89.1,"y":16.484,"w":0.75,"l":3.031},{"oc":"#221f1f","x":23.513,"y":19.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":34.418,"y":19.547,"w":0.75,"l":1.5},{"oc":"#221f1f","x":20.805,"y":19.547,"w":0.75,"l":1.5},{"oc":"#221f1f","x":56.925,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":49.5,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":68.063,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":56.925,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":79.2,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":68.063,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":89.1,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":79.2,"y":19.5,"w":0.75,"l":1.5},{"oc":"#221f1f","x":89.1,"y":19.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":23.513,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":20.805,"y":21.031,"w":0.75,"l":1.539},{"oc":"#221f1f","x":34.676,"y":20.887,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.5,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":41.508,"y":19.367,"w":0.75,"l":3.078},{"oc":"#221f1f","x":56.925,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":49.5,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":68.063,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":56.925,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":68.063,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":89.1,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.2,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":89.1,"y":20.984,"w":0.75,"l":1.539},{"oc":"#221f1f","x":75.488,"y":22.477,"w":0.75,"l":1.539},{"oc":"#221f1f","x":89.1,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":89.1,"y":22.477,"w":0.75,"l":0.789},{"oc":"#221f1f","x":89.1,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":89.1,"y":23.234,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":24,"w":0.75,"l":0.75},{"oc":"#221f1f","x":75.488,"y":24,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.913,"y":23.985,"w":0.75,"l":0.797},{"oc":"#221f1f","x":79.2,"y":23.985,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.288,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":24.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":24.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":24.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":24.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":25.484,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":25.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":82.913,"y":25.5,"w":0.75,"l":0.75},{"oc":"#221f1f","x":95.288,"y":25.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":60.638,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":64.35,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.488,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":26.235,"w":0.75,"l":1.547},{"oc":"#221f1f","x":79.2,"y":26.235,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.288,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.913,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.288,"y":26.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.2,"y":27.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":27.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":27.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":27.734,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.913,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.288,"y":28.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.2,"y":29.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":29.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":29.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":29.984,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.2,"y":30.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":30.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.913,"y":30.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.288,"y":30.727,"w":0.75,"l":0.789},{"oc":"#221f1f","x":76.725,"y":34.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":76.725,"y":34.484,"w":0.75,"l":1.531},{"oc":"#221f1f","x":14.85,"y":41.235,"w":0.75,"l":3.031},{"oc":"#221f1f","x":40.837,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":66.825,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.963,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.215,"y":41.594,"w":0.75,"l":0.5},{"oc":"#221f1f","x":82.84,"y":41.594,"w":0.75,"l":0.5},{"oc":"#221f1f","x":86.625,"y":41.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":74.25,"y":42.734,"w":0.75,"l":0.781},{"oc":"#221f1f","x":74.25,"y":43.484,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#fcfae1","x":5.801,"y":2.063,"w":92.813,"h":45,"clr":-1},{"oc":"#221f1f","x":6.188,"y":3,"w":6.324,"h":0.75,"clr":-1},{"x":87.863,"y":5.25,"w":3.713,"h":0.75,"clr":1},{"x":91.575,"y":5.25,"w":3.712,"h":0.75,"clr":1},{"x":95.288,"y":5.25,"w":3.712,"h":0.75,"clr":1},{"x":87.863,"y":6,"w":3.713,"h":0.75,"clr":1},{"x":91.575,"y":6,"w":3.712,"h":0.75,"clr":1},{"x":95.288,"y":6,"w":3.712,"h":0.75,"clr":1},{"x":87.863,"y":6.75,"w":3.713,"h":0.75,"clr":1},{"x":91.575,"y":6.75,"w":3.712,"h":0.75,"clr":1},{"x":95.288,"y":6.75,"w":3.712,"h":0.75,"clr":1},{"x":56.691,"y":10.563,"w":21.271,"h":0.687,"clr":1},{"oc":"#bebfc1","x":79.2,"y":10.5,"w":3.712,"h":3,"clr":-1},{"x":82.913,"y":10.5,"w":12.375,"h":3,"clr":1},{"x":95.288,"y":10.5,"w":3.712,"h":3,"clr":1},{"x":60.638,"y":12.75,"w":3.712,"h":0.75,"clr":1},{"x":64.35,"y":12.75,"w":11.138,"h":0.75,"clr":1},{"x":75.488,"y":12.75,"w":3.713,"h":0.75,"clr":1},{"x":79.2,"y":13.5,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":13.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":13.5,"w":3.712,"h":0.75,"clr":1},{"x":79.2,"y":14.25,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":14.25,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":14.25,"w":3.712,"h":0.75,"clr":1},{"x":6.22,"y":19.453,"w":14.63,"h":1.5,"clr":1},{"x":20.908,"y":19.453,"w":13.356,"h":1.5,"clr":1},{"x":49.5,"y":19.5,"w":7.425,"h":1.5,"clr":1},{"x":56.925,"y":19.5,"w":11.138,"h":1.5,"clr":1},{"x":68.063,"y":19.5,"w":11.138,"h":1.5,"clr":1},{"x":79.2,"y":19.5,"w":9.9,"h":1.5,"clr":1},{"x":89.1,"y":19.5,"w":9.9,"h":1.5,"clr":1},{"x":6.155,"y":21,"w":14.502,"h":1.5,"clr":1},{"x":20.805,"y":21.047,"w":13.613,"h":1.5,"clr":1},{"x":49.5,"y":21,"w":7.425,"h":1.5,"clr":1},{"x":56.925,"y":21,"w":11.138,"h":1.5,"clr":1},{"x":68.063,"y":21,"w":11.138,"h":1.5,"clr":1},{"x":79.2,"y":21,"w":9.9,"h":1.5,"clr":1},{"x":89.1,"y":21,"w":9.9,"h":1.5,"clr":1},{"x":75.488,"y":22.5,"w":3.713,"h":1.5,"clr":1},{"x":79.2,"y":22.5,"w":9.9,"h":0.75,"clr":1},{"x":89.1,"y":22.5,"w":9.9,"h":0.75,"clr":1},{"x":79.2,"y":23.25,"w":9.9,"h":0.75,"clr":1},{"x":89.1,"y":23.25,"w":9.9,"h":0.75,"clr":1},{"x":60.638,"y":24,"w":3.712,"h":0.75,"clr":1},{"x":64.35,"y":24,"w":11.138,"h":0.75,"clr":1},{"x":75.488,"y":24,"w":3.713,"h":0.75,"clr":1},{"oc":"#bebfc1","x":79.2,"y":24,"w":3.712,"h":0.75,"clr":-1},{"x":82.913,"y":24,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":24,"w":3.712,"h":0.75,"clr":1},{"x":79.2,"y":24.75,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":24.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":24.75,"w":3.712,"h":0.75,"clr":1},{"x":79.2,"y":25.5,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":25.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":25.5,"w":3.712,"h":0.75,"clr":1},{"x":60.638,"y":26.25,"w":3.712,"h":0.75,"clr":1},{"x":64.35,"y":26.25,"w":11.138,"h":0.75,"clr":1},{"x":75.488,"y":26.25,"w":3.713,"h":0.75,"clr":1},{"oc":"#bebfc1","x":79.2,"y":26.25,"w":3.712,"h":1.5,"clr":-1},{"x":82.913,"y":26.25,"w":12.375,"h":1.5,"clr":1},{"x":95.288,"y":26.25,"w":3.712,"h":1.5,"clr":1},{"x":79.2,"y":27.75,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":27.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":27.75,"w":3.712,"h":0.75,"clr":1},{"x":79.2,"y":28.5,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":28.5,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":28.5,"w":3.712,"h":0.75,"clr":1},{"oc":"#221f1f","x":6.188,"y":29.25,"w":6.188,"h":0.75,"clr":-1},{"x":79.2,"y":30,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":30,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":30,"w":3.712,"h":0.75,"clr":1},{"x":79.2,"y":30.75,"w":3.712,"h":0.75,"clr":1},{"x":82.913,"y":30.75,"w":12.375,"h":0.75,"clr":1},{"x":95.288,"y":30.75,"w":3.712,"h":0.75,"clr":1},{"oc":"#221f1f","x":6.188,"y":33.75,"w":6.188,"h":0.75,"clr":-1},{"x":6.188,"y":34.5,"w":70.538,"h":1.5,"clr":1},{"x":76.725,"y":34.5,"w":22.275,"h":1.5,"clr":1},{"x":6.188,"y":36,"w":92.813,"h":1.5,"clr":1},{"x":6.188,"y":37.5,"w":92.813,"h":3.75,"clr":1},{"x":34.699,"y":19.657,"w":6.657,"h":1.279,"clr":1},{"x":41.791,"y":19.61,"w":7.169,"h":1.279,"clr":1},{"x":34.699,"y":21.157,"w":6.657,"h":1.279,"clr":1},{"x":41.726,"y":21.11,"w":7.297,"h":1.279,"clr":1}],"Texts":[{"oc":"#221f1f","x":5.938,"y":1.9809999999999999,"w":13.320000000000007,"clr":-1,"A":"left","R":[{"T":"Schedule%20H%20(Form%201040)%202013","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.8,"y":2.04,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":96.897,"y":2.04,"w":1.112,"clr":-1,"A":"left","R":[{"T":"%202%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.65,"y":2.821,"w":3.128,"clr":1,"A":"left","R":[{"T":"Part%20II%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.156,"y":2.821,"w":16.867,"clr":-1,"A":"left","R":[{"T":"Federal%20Unemployment%20(FUTA)%20Tax%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":91.806,"y":3.652,"w":2.056,"clr":-1,"A":"left","R":[{"T":"Yes%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":95.848,"y":3.652,"w":1.63,"clr":-1,"A":"left","R":[{"T":"No%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.693,"y":4.401,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":4.401,"w":47.32799999999996,"clr":-1,"A":"left","R":[{"T":"Did%20you%20pay%20unemployment%20contributions%20to%20only%20one%20state%3F%20(If%20you%20paid%20contributions%20to%20a%20credit%20reduction","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":5.089,"w":17.967000000000006,"clr":-1,"A":"left","R":[{"T":"state%2C%20see%20instructions%20and%20check%20%E2%80%9CNo.%E2%80%9D)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":38.937,"y":5.089,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.609,"y":5.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":5.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":5.839,"w":50.105999999999966,"clr":-1,"A":"left","R":[{"T":"Did%20you%20pay%20all%20state%20unemployment%20contributions%20for%202013%20by%20April%2015%2C%202014%3F%20Fiscal%20year%20filers%20see%20instructions%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.609,"y":5.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":6.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":6.589,"w":41.687999999999995,"clr":-1,"A":"left","R":[{"T":"Were%20all%20wages%20that%20are%20taxable%20for%20FUTA%20tax%20also%20taxable%20for%20your%20state%E2%80%99s%20unemployment%20tax%3F","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.062,"y":6.589,"w":7.998,"clr":-1,"A":"left","R":[{"T":".....%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":88.609,"y":6.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.938,"y":8.152,"w":2.76,"clr":-1,"A":"left","R":[{"T":"Next%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.207,"y":8.152,"w":8.521000000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.388,"y":8.152,"w":2.704,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CYes%E2%80%9D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":27.571,"y":8.152,"w":3.6490000000000005,"clr":-1,"A":"left","R":[{"T":"%20box%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":33.215,"y":8.152,"w":1.368,"clr":-1,"A":"left","R":[{"T":"all%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.331,"y":8.152,"w":16.615000000000002,"clr":-1,"A":"left","R":[{"T":"%20the%20lines%20above%2C%20complete%20Section%20A.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.235,"y":8.839,"w":8.521000000000003,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":23.416,"y":8.839,"w":2.278,"clr":-1,"A":"left","R":[{"T":"%E2%80%9CNo%E2%80%9D","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.939,"y":8.839,"w":3.6490000000000005,"clr":-1,"A":"left","R":[{"T":"%20box%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.584,"y":8.839,"w":1.686,"clr":-1,"A":"left","R":[{"T":"any","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.192,"y":8.839,"w":26.747,"clr":-1,"A":"left","R":[{"T":"%20of%20the%20lines%20above%2C%20skip%20Section%20A%20and%20complete%20Section%20B.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.413,"y":9.54,"w":4.852,"clr":-1,"A":"left","R":[{"T":"Section%20A%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":10.389,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":10.412,"w":28.43400000000002,"clr":-1,"A":"left","R":[{"T":"Name%20of%20the%20state%20where%20you%20paid%20unemployment%20contributions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.633,"y":10.319,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":12.589,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":12.589,"w":23.916000000000007,"clr":-1,"A":"left","R":[{"T":"Contributions%20paid%20to%20your%20state%20unemployment%20fund%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.188,"y":12.589,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.384,"y":12.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":13.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":13.339,"w":17.241,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20wages%20subject%20to%20FUTA%20tax%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":13.339,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":13.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":14.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":14.089,"w":4.927,"clr":-1,"A":"left","R":[{"T":"FUTA%20tax.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.271,"y":14.089,"w":37.566999999999986,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2015%20by%20.6%25%20(.006).%20Enter%20the%20result%20here%2C%20skip%20Section%20B%2C%20and%20go%20to%20line%2025","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":14.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.397,"y":14.79,"w":4.871,"clr":-1,"A":"left","R":[{"T":"Section%20B%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":15.588999999999999,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":15.588999999999999,"w":36.52599999999998,"clr":-1,"A":"left","R":[{"T":"Complete%20all%20columns%20below%20that%20apply%20(if%20you%20need%20more%20space%2C%20see%20instructions)%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":13.899,"y":16.312,"w":1.1660000000000001,"clr":-1,"A":"left","R":[{"T":"(a)","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.656,"y":16.875,"w":6.835000000000001,"clr":-1,"A":"left","R":[{"T":"Name%20%20of%20state%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":26.638,"y":16.359,"w":2.037,"clr":-1,"A":"left","R":[{"T":"(b)%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":22.384,"y":16.922,"w":8.554,"clr":-1,"A":"left","R":[{"T":"Taxable%20wages%20(as%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":22.07,"y":17.484,"w":9.076,"clr":-1,"A":"left","R":[{"T":"defined%20in%20state%20act)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":42.361,"y":16.312,"w":2,"clr":-1,"A":"left","R":[{"T":"(c)%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":37.326,"y":16.875,"w":9.815000000000001,"clr":-1,"A":"left","R":[{"T":"State%20experience%20rate%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":41.347,"y":17.438,"w":3.13,"clr":-1,"A":"left","R":[{"T":"period%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":36.631,"y":18.047,"w":2.612,"clr":-1,"A":"left","R":[{"T":"From%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":44.304,"y":18.154,"w":1.4260000000000002,"clr":-1,"A":"left","R":[{"T":"To%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":52.239,"y":16.312,"w":3.705,"clr":-1,"A":"left","R":[{"T":"(d)%20%20%20%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.547,"y":16.875,"w":2.908,"clr":-1,"A":"left","R":[{"T":"State%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":50.011,"y":17.438,"w":5.1850000000000005,"clr":-1,"A":"left","R":[{"T":"experience%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":51.926,"y":18,"w":2,"clr":-1,"A":"left","R":[{"T":"rate%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":61.543,"y":16.312,"w":2,"clr":-1,"A":"left","R":[{"T":"(e)%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":58.167,"y":16.875,"w":7.057000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20col.%20(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":60.249,"y":17.438,"w":3.595,"clr":-1,"A":"left","R":[{"T":"by%20.054%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":72.825,"y":16.312,"w":1.7590000000000001,"clr":-1,"A":"left","R":[{"T":"(f)%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":69.303,"y":16.875,"w":7.057000000000002,"clr":-1,"A":"left","R":[{"T":"Multiply%20col.%20(b)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":70.752,"y":17.438,"w":4.649000000000001,"clr":-1,"A":"left","R":[{"T":"by%20col.%20(d)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":83.177,"y":16.25,"w":2.037,"clr":-1,"A":"left","R":[{"T":"(g)%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.801,"y":16.812,"w":7.093000000000002,"clr":-1,"A":"left","R":[{"T":"Subtract%20col.%20(f)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.057,"y":17.375,"w":6.667000000000002,"clr":-1,"A":"left","R":[{"T":"from%20col.%20(e).%20If%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.637,"y":17.938,"w":5.702,"clr":-1,"A":"left","R":[{"T":"zero%20or%20less%2C%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":81.392,"y":18.5,"w":4.4460000000000015,"clr":-1,"A":"left","R":[{"T":"enter%20-0-.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.087,"y":16.25,"w":2.019,"clr":-1,"A":"left","R":[{"T":"(h)%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.167,"y":16.812,"w":6.316000000000001,"clr":-1,"A":"left","R":[{"T":"Contributions%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.435,"y":17.375,"w":5.872,"clr":-1,"A":"left","R":[{"T":"paid%20to%20state%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":89.798,"y":17.938,"w":6.93,"clr":-1,"A":"left","R":[{"T":"unemployment%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":92.597,"y":18.5,"w":2.2790000000000004,"clr":-1,"A":"left","R":[{"T":"fund%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.692,"y":23.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":23.089,"w":3,"clr":-1,"A":"left","R":[{"T":"Totals%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.251,"y":23.089,"w":38.656999999999975,"clr":-1,"A":"left","R":[{"T":"............................%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.234,"y":23.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":23.827,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":23.839,"w":15.227000000000002,"clr":-1,"A":"left","R":[{"T":"Add%20columns%20(g)%20and%20(h)%20of%20line%2018%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":23.839,"w":15.996,"clr":-1,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.384,"y":23.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":24.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":24.589,"w":29.966000000000005,"clr":-1,"A":"left","R":[{"T":"Total%20cash%20wages%20subject%20to%20FUTA%20tax%20(see%20the%20line%2015%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":57.499,"y":24.589,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":24.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":25.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":25.339,"w":14.043000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2020%20by%206.0%25%20(.060)%20%20","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":32.75,"y":25.339,"w":29.94200000000001,"clr":-1,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11.82,0,0]}]},{"oc":"#221f1f","x":79.946,"y":25.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":26.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":26.089,"w":13.765000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2020%20by%205.4%25%20(.054)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.749,"y":26.089,"w":17.329,"clr":-1,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":61.384,"y":26.089,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":26.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":26.839,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":16.326,"y":26.839,"w":3.4960000000000004,"clr":-1,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":21.734,"y":26.839,"w":9.021000000000003,"clr":-1,"A":"left","R":[{"T":"%20of%20line%2019%20or%20line%2022%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.875,"y":26.839,"w":26.65999999999999,"clr":-1,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.641,"y":27.589,"w":40.91699999999997,"clr":-1,"A":"left","R":[{"T":"(Employers%20in%20a%20credit%20reduction%20state%20must%20use%20the%20worksheet%20on%20page%20H-7%20and%20check%20here)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":73.993,"y":27.589,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":27.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":28.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":28.339,"w":4.927,"clr":-1,"A":"left","R":[{"T":"FUTA%20tax.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":17.271,"y":28.339,"w":30.19400000000001,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2023%20from%20line%2021.%20Enter%20the%20result%20here%20and%20go%20to%20line%2025%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":65.751,"y":28.339,"w":7.998,"clr":-1,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":28.339,"w":1.112,"clr":-1,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"x":6.329,"y":29.071,"w":3.423,"clr":1,"A":"left","R":[{"T":"Part%20III%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.156,"y":29.071,"w":17.458000000000002,"clr":-1,"A":"left","R":[{"T":"Total%20Household%20Employment%20Taxes%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.692,"y":29.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":29.839,"w":39.71499999999998,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%208.%20If%20you%20checked%20the%20%E2%80%9CYes%E2%80%9D%20box%20on%20line%20C%20of%20page%201%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.941,"y":29.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.003,"y":29.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.065,"y":29.839,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":29.839,"w":1.112,"clr":-1,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":30.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":30.589,"w":15.672000000000008,"clr":-1,"A":"left","R":[{"T":"Add%20line%2016%20(or%20line%2024)%20and%20line%2025%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.813,"y":30.589,"w":27.992999999999988,"clr":-1,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.946,"y":30.589,"w":1.112,"clr":-1,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.692,"y":31.339,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"27%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":9.65,"y":31.339,"w":16.078000000000003,"clr":-1,"A":"left","R":[{"T":"Are%20you%20required%20to%20file%20Form%201040%3F%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":32.089,"w":5.1129999999999995,"clr":-1,"A":"left","R":[{"T":"Yes.%20Stop.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.034,"y":32.089,"w":28.271000000000008,"clr":-1,"A":"left","R":[{"T":"Include%20the%20amount%20from%20line%2026%20above%20on%20Form%201040%2C%20line%2059a.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":63.766000000000005,"y":32.089,"w":3.1859999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":68.694,"y":32.089,"w":10.945000000000002,"clr":-1,"A":"left","R":[{"T":"%20complete%20Part%20IV%20below.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.125,"y":32.777,"w":1.63,"clr":-1,"A":"left","R":[{"T":"No.","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":14.646,"y":32.777,"w":28.209000000000003,"clr":-1,"A":"left","R":[{"T":"%20You%20may%20have%20to%20complete%20Part%20IV.%20See%20instructions%20for%20details.","S":3,"TS":[0,12,0,0]}]},{"x":6.294,"y":33.571,"w":3.463,"clr":1,"A":"left","R":[{"T":"Part%20IV%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":13.156,"y":33.571,"w":12.149,"clr":-1,"A":"left","R":[{"T":"Address%20and%20Signature%E2%80%94%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":34.037,"y":33.571,"w":8.280000000000001,"clr":-1,"A":"left","R":[{"T":"Complete%20this%20part","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":48.269,"y":33.571,"w":2.537,"clr":-1,"A":"left","R":[{"T":"%20only%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":52.629,"y":33.571,"w":17.411000000000005,"clr":-1,"A":"left","R":[{"T":"if%20required.%20See%20the%20line%2027%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.938,"y":34.16,"w":36.211,"clr":-1,"A":"left","R":[{"T":"Address%20(number%20and%20street)%20or%20P.O.%20box%20if%20mail%20is%20not%20delivered%20to%20street%20address%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":77.163,"y":34.143,"w":10.559000000000003,"clr":-1,"A":"left","R":[{"T":"Apt.%2C%20room%2C%20or%20suite%20no.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":35.682,"w":20.298,"clr":-1,"A":"left","R":[{"T":"City%2C%20town%20or%20post%20office%2C%20state%2C%20and%20ZIP%20code%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":37.15,"w":56.84799999999996,"clr":-1,"A":"left","R":[{"T":"Under%20penalties%20of%20perjury%2C%20I%20declare%20that%20I%20have%20examined%20this%20schedule%2C%20including%20accompanying%20statements%2C%20and%20to%20the%20best%20of","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.471,"y":37.15,"w":15.818000000000001,"clr":-1,"A":"left","R":[{"T":"%20my%20knowledge%20and%20belief%2C%20it%20is%20true%2C","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.931,"y":37.65,"w":58.35099999999995,"clr":-1,"A":"left","R":[{"T":"correct%2C%20and%20complete.%20No%20part%20of%20any%20payment%20made%20to%20a%20state%20unemployment%20fund%20claimed%20as%20a%20credit%20was%2C%20or%20is%20to%20be%2C%20deducted%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.062,"y":37.65,"w":15.265000000000002,"clr":-1,"A":"left","R":[{"T":"from%20the%20payments%20to%20employees.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.935,"y":38.15,"w":49.392999999999965,"clr":-1,"A":"left","R":[{"T":"Declaration%20of%20preparer%20(other%20than%20taxpayer)%20is%20based%20on%20all%20information%20of%20which%20preparer%20has%20any%20knowledge.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":6.904,"y":39.165,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,23.9997,0,0],"RA":90}]},{"oc":"#221f1f","x":8.413,"y":40.312,"w":9.687000000000003,"clr":-1,"A":"left","R":[{"T":"Employer%E2%80%99s%20signature%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":65.067,"y":39.165,"w":0.892,"clr":-1,"A":"left","R":[{"T":"F","S":-1,"TS":[0,23.9997,0,0],"RA":90}]},{"oc":"#221f1f","x":67.813,"y":40.312,"w":2.371,"clr":-1,"A":"left","R":[{"T":"Date%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.938,"y":41.435,"w":2.3880000000000003,"clr":-1,"A":"left","R":[{"T":"Paid%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":5.938,"y":42.185,"w":4.445,"clr":-1,"A":"left","R":[{"T":"Preparer%20","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":5.938,"y":42.935,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Use%20Only","S":4,"TS":[0,14,0,0]}]},{"oc":"#221f1f","x":15.288,"y":40.938,"w":12.224000000000006,"clr":-1,"A":"left","R":[{"T":"Print%2FType%20preparer%E2%80%99s%20name","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":40.931,"y":40.938,"w":9.037000000000003,"clr":-1,"A":"left","R":[{"T":"Preparer's%20signature","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":67.263,"y":40.938,"w":2.093,"clr":-1,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.4,"y":41.338,"w":6.169000000000002,"clr":-1,"A":"left","R":[{"T":"Check%20%20%20%20%20%20%20%20%20if%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":78.4,"y":41.838,"w":6.353,"clr":-1,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.719,"y":40.938,"w":2.203,"clr":-1,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":15.288,"y":42.625,"w":7.189000000000002,"clr":-1,"A":"left","R":[{"T":"Firm%E2%80%99s%20name%20%20%20%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":23.937,"y":42.531,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":15.288,"y":43.375,"w":7.186999999999999,"clr":-1,"A":"left","R":[{"T":"Firm's%20address%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":23.934,"y":43.281,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":74.688,"y":42.625,"w":5.186,"clr":-1,"A":"left","R":[{"T":"Firm's%20EIN%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":80.927,"y":42.531,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":74.688,"y":43.375,"w":4.557,"clr":-1,"A":"left","R":[{"T":"Phone%20no.","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.126,"y":44.125,"w":14.096000000000005,"clr":-1,"A":"left","R":[{"T":"Schedule%20H%20(Form%201040)%202013%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":35.166,"y":18.576,"w":4.558,"clr":-1,"A":"left","R":[{"T":"mm%2Fdd%2Fyy","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":42.385,"y":18.623,"w":4.558,"clr":-1,"A":"left","R":[{"T":"mm%2Fdd%2Fyy","S":2,"TS":[0,10,0,0]}]},{"x":0.09399999999999997,"y":48.532,"w":14.675999999999998,"clr":0,"A":"left","R":[{"T":"AL","S":-1,"TS":[0,15,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":8831,"AM":1024,"x":22.718,"y":2.117,"w":44.901,"h":0.833,"TU":"For Privacy Act and Paperwork Reduction Act Notice, see the instructions"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":8832,"AM":1024,"x":76.931,"y":2.136,"w":16.686,"h":0.833,"TU":"Schedule H (Form 1040) 2013"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":8839,"AM":0,"x":56.62,"y":10.566,"w":20.65,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":8840,"AM":0,"x":64.56,"y":12.761,"w":10.883,"h":0.833,"TU":"Line 14. Contributions paid to your state unemployment fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":8841,"AM":0,"x":83.181,"y":13.462,"w":11.931,"h":0.833,"TU":"Line 15. Total cash wages subject to FUTA tax."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":8842,"AM":1024,"x":83.161,"y":14.244,"w":11.931,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A30_STNAME_1_","EN":0},"TI":8843,"AM":0,"x":6.442,"y":20.067,"w":13.091,"h":0.867,"PL":{"V":[null,"AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A30_TAXWAGES_1_","EN":0},"TI":8844,"AM":0,"x":21.115,"y":20.051,"w":13.122,"h":0.882,"TU":"Line 17(b). Taxable wages (as defined in state act)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATEFROM_1_","EN":0},"TI":8845,"AM":0,"x":34.933,"y":20.135,"w":6.396,"h":0.833,"TU":"Line 17(c). State experience rate period from.","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATETO_1_","EN":0},"TI":8846,"AM":0,"x":42.241,"y":20.159,"w":6.676,"h":0.833,"TU":"Line 17(c). State experience rate period to.","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A31_STEXPRT_1_","EN":0},"TI":8847,"AM":0,"x":49.686,"y":20.096,"w":7.074,"h":0.833,"TU":"Line 17(d). State experience rate.","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLE_1_","EN":0},"TI":8848,"AM":1024,"x":57.111,"y":20.096,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLF_1_","EN":0},"TI":8849,"AM":1024,"x":68.248,"y":20.123,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLG_1_","EN":0},"TI":8850,"AM":1024,"x":79.386,"y":20.096,"w":9.549,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_UNEMP_1_","EN":0},"TI":8851,"AM":0,"x":89.286,"y":20.123,"w":9.653,"h":0.833,"TU":"Line 17(h). Contributions paid to state unemployment fund."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A30_STNAME_2_","EN":0},"TI":8852,"AM":0,"x":6.372,"y":21.34,"w":13.231,"h":0.918,"PL":{"V":[null,"AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A30_TAXWAGES_2_","EN":0},"TI":8853,"AM":0,"x":20.866,"y":21.471,"w":13.262,"h":0.882,"TU":"Line 17(b). Taxable wages (as defined in state act)."},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATEFROM_2_","EN":0},"TI":8854,"AM":0,"x":34.963,"y":21.55,"w":6.256,"h":0.849,"TU":"Line 17(c). State experience rate period from.","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATETO_2_","EN":0},"TI":8855,"AM":0,"x":42.195,"y":21.506,"w":7.236,"h":0.909,"TU":"Line 17(c). State experience rate period to.","MV":"mm/dd/yy"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A31_STEXPRT_2_","EN":0},"TI":8856,"AM":0,"x":49.792,"y":21.66,"w":7.074,"h":0.833,"TU":"Line 17(d). State experience rate.","MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLE_2_","EN":0},"TI":8857,"AM":1024,"x":57.142,"y":21.66,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLF_2_","EN":0},"TI":8858,"AM":1024,"x":68.279,"y":21.687,"w":10.787,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLG_2_","EN":0},"TI":8859,"AM":1024,"x":79.417,"y":21.66,"w":9.549,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_UNEMP_2_","EN":0},"TI":8860,"AM":0,"x":89.317,"y":21.687,"w":9.652,"h":0.833,"TU":"Line 17(h). Contributions paid to state unemployment fund."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A","EN":0},"TI":8861,"AM":1024,"x":79.376,"y":23.184,"w":9.549,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B","EN":0},"TI":8862,"AM":1024,"x":89.396,"y":23.209,"w":9.549,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":8863,"AM":1024,"x":64.471,"y":23.988,"w":10.911,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":8864,"AM":0,"x":83.162,"y":24.725,"w":12.024,"h":0.833,"TU":"Line 20. Total cash wages subject to FUTA tax (see the line 15 instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":8865,"AM":1024,"x":83.016,"y":25.545,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":8866,"AM":1024,"x":64.474,"y":26.258,"w":10.911,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":8868,"AM":0,"x":83.119,"y":27.658,"w":11.983,"h":0.833,"TU":"Line 23. Enter the smaller of line 19 or line 22."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":8869,"AM":1024,"x":83.016,"y":28.545,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":8870,"AM":1024,"x":83.016,"y":30.038,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":8871,"AM":1024,"x":83.016,"y":30.795,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDRESS","EN":0},"TI":8874,"AM":0,"x":6.253,"y":35.131,"w":70.307,"h":0.833,"TU":"Address (number and street) or P.O. box if mail is not delivered to street address"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":8875,"AM":0,"x":77.364,"y":35.131,"w":9.199,"h":0.833,"TU":"Apt., room, or suite no."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":8876,"AM":0,"x":6.221,"y":36.635,"w":28.754,"h":0.85,"TU":"City, town or post office."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":8877,"AM":0,"x":52.887,"y":36.641,"w":12.78,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]}},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":8878,"AM":0,"x":84.522,"y":36.63,"w":14.53,"h":0.85,"TU":"Zip code."},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME","EN":0},"TI":8879,"AM":1024,"x":24.915,"y":42.788,"w":24.771,"h":0.833,"TU":"Firm’s name a"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B10Y","EN":0},"TI":8833,"AM":0,"x":92.697,"y":5.229,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B10N","EN":0},"TI":8834,"AM":0,"x":96.353,"y":5.224,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"B10RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B11Y","EN":0},"TI":8835,"AM":0,"x":92.642,"y":5.944,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B11N","EN":0},"TI":8836,"AM":0,"x":96.373,"y":5.939,"w":1.596,"h":0.833,"checked":false}],"id":{"Id":"B11RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B12Y","EN":0},"TI":8837,"AM":0,"x":92.622,"y":6.726,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B12N","EN":0},"TI":8838,"AM":0,"x":96.279,"y":6.722,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"B12RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EMPLRX","EN":0},"TI":8867,"AM":0,"x":75.797,"y":27.738,"w":1.444,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX28A","EN":0},"TI":8872,"AM":0,"x":9.727,"y":32.215,"w":1.671,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX28B","EN":0},"TI":8873,"AM":0,"x":9.789,"y":32.946,"w":1.671,"h":0.833,"checked":false}],"id":{"Id":"BX28RB","EN":0}}]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Household Employment Taxes","Creator":"Adobe Acrobat Pro 10.1.8","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131230083912-08'00'","ModDate":"D:20140130103036-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":5.25,"w":1.5,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":5.256,"w":1.5,"l":5.431,"oc":"#221f1f"},{"x":30.569,"y":3,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.569,"y":5.25,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.234,"y":5.25,"w":1.5,"l":25.681,"oc":"#221f1f"},{"x":2.234,"y":8.25,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":27.884,"y":5.25,"w":1.5,"l":8.131,"oc":"#221f1f"},{"x":27.884,"y":6.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.884,"y":6.75,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.884,"y":8.25,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":2.234,"y":24,"w":1.5,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":25.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":22.034,"y":27,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.384,"y":27,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.434,"y":27,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":25.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":28.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.384,"y":30,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.434,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":28.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":31.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":33,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.384,"y":33,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.434,"y":33,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":31.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":34.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":34.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":34.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":34.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":36,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":34.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":34.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":36,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":36,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":36,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":37.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":36,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":36,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":37.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":37.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":44.25,"w":1.5,"l":18.031,"oc":"#221f1f"},{"x":20.234,"y":44.25,"w":1.5,"l":9.481,"oc":"#221f1f"},{"x":29.684,"y":44.25,"w":1.5,"l":6.331,"oc":"#221f1f"}],"VLines":[{"x":7.65,"y":2.234,"w":1.5,"l":3.047,"oc":"#221f1f"},{"x":30.6,"y":2.234,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.6,"y":2.984,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":27.9,"y":5.219,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":27.9,"y":6.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.8,"y":7.5,"w":0.75,"l":0.731,"oc":"#181616"},{"x":29.704,"y":7.575,"w":0.75,"l":0.563,"oc":"#181616","dsh":1},{"x":30.608,"y":7.5,"w":0.75,"l":0.731,"oc":"#181616"},{"x":31.511,"y":7.5,"w":0.75,"l":0.731,"oc":"#181616"},{"x":32.415,"y":7.5,"w":0.75,"l":0.731,"oc":"#181616"},{"x":33.319,"y":7.5,"w":0.75,"l":0.731,"oc":"#181616"},{"x":34.176,"y":7.5,"w":0.75,"l":0.731,"oc":"#181616"},{"x":35.089,"y":7.5,"w":0.75,"l":0.731,"oc":"#181616"},{"x":23.4,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":25.485,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":28.8,"y":25.485,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.65,"y":25.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.15,"y":25.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.65,"y":25.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.15,"y":26.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.8,"y":26.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.15,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":27.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":29.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":28.485,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":28.8,"y":28.485,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.65,"y":28.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.15,"y":28.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.65,"y":28.485,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.15,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.8,"y":29.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.15,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":30.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":32.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":31.484,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":28.8,"y":31.484,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.65,"y":31.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.15,"y":31.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":34.65,"y":31.484,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":30.15,"y":32.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.8,"y":32.985,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":33.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":33.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":33.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":34.484,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.65,"y":34.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":34.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":34.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":35.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":35.234,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":35.976,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.65,"y":35.976,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":35.976,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":35.976,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":36.727,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":36.727,"w":0.75,"l":0.789,"oc":"#221f1f"}],"Fills":[{"x":2.25,"y":2.25,"w":33.75,"h":45,"oc":"#fcfae1"},{"x":2.25,"y":5.25,"w":25.65,"h":3,"clr":1},{"x":27.9,"y":5.25,"w":8.1,"h":1.5,"clr":1},{"x":27.9,"y":6.75,"w":8.1,"h":1.5,"clr":1},{"x":2.25,"y":24.375,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":23.4,"y":26.25,"w":4.05,"h":0.75,"clr":1},{"x":30.15,"y":25.5,"w":4.5,"h":2.25,"clr":1},{"x":34.65,"y":25.5,"w":1.35,"h":2.25,"clr":1},{"x":30.15,"y":27.75,"w":4.5,"h":0.75,"clr":1},{"x":23.4,"y":29.25,"w":4.05,"h":0.75,"clr":1},{"x":30.15,"y":28.5,"w":4.5,"h":2.25,"clr":1},{"x":34.65,"y":28.5,"w":1.35,"h":2.25,"clr":1},{"x":30.15,"y":30.75,"w":4.5,"h":0.75,"clr":1},{"x":23.4,"y":32.25,"w":4.05,"h":0.75,"clr":1},{"x":30.15,"y":31.5,"w":4.5,"h":2.25,"clr":1},{"x":34.65,"y":31.5,"w":1.35,"h":2.25,"clr":1},{"x":30.15,"y":33.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":34.5,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":35.25,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":36,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":36.75,"w":4.5,"h":0.75,"clr":1}],"Texts":[{"x":2,"y":2.009,"w":7.077,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"SCHEDULE H ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":2.696,"w":5.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Form 1040) ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":3.819,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":2,"y":4.319,"w":13.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99) ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":13.004,"y":2.1,"w":14.02,"oc":"#221f1f","sw":0.390625,"A":"left","R":[{"T":"Household Employment Taxes ","S":-1,"TS":[2,17,0,0]}]},{"x":8.638,"y":2.794,"w":40.95,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(For Social Security, Medicare, Withheld Income, and Federal Unemployment (FUTA) Taxes)","S":-1,"TS":[0,11,0,0]}]},{"x":12.948,"y":3.4770000000000003,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":13.323,"y":3.4779999999999998,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":13.445,"y":3.5709999999999997,"w":22.714,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attach to Form 1040, 1040NR, 1040-SS, or 1041.","S":-1,"TS":[0,11,0,0]}]},{"x":24.802,"y":3.5709999999999997,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":8.192,"y":4.149,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":8.567,"y":4.242,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":8.706,"y":4.242,"w":30.681,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Information about Schedule H and its separate instructions is at ","S":-1,"TS":[0,11,0,0]}]},{"x":24.046,"y":4.242,"w":11.023,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"www.irs.gov/form1040.","S":-1,"TS":[0,11,0,0]}]},{"x":31.019,"y":1.972,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-1971","S":2,"TS":[0,10,0,0]}]},{"x":31.425,"y":3.33,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":33.005,"y":3.33,"w":1.336,"oc":"#221f1f","sw":0.43490625,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"x":31.1,"y":3.9189999999999996,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.1,"y":4.365,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":34.001,"y":4.365,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"44","S":-1,"TS":[0,13,0,0]}]},{"x":34.696,"y":4.365,"w":0.334,"oc":"#221f1f","sw":0.43490625,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":5,"w":8.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name of employer ","S":2,"TS":[0,10,0,0]}]},{"x":27.9,"y":5,"w":11.22,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Social security number ","S":2,"TS":[0,10,0,0]}]},{"x":27.9,"y":6.5,"w":14.937,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Employer identification number","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":8.839,"w":48.791,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Calendar year taxpayers having no household employees in 2013 do not have to complete this form for 2013.","S":3,"TS":[0,12,0,0]}]},{"x":2.515,"y":10.452,"w":0.963,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"A ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":10.464,"w":5.613,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you pay ","S":3,"TS":[0,12,0,0]}]},{"x":6.766,"y":10.464,"w":3.742,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"any one","S":3,"TS":[0,12,0,0]}]},{"x":9.043,"y":10.464,"w":44.659,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" household employee cash wages of $1,800 or more in 2013? (If any household employee was your ","S":3,"TS":[0,12,0,0]}]},{"x":3.348,"y":11.152,"w":53.641,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"spouse, your child under age 21, your parent, or anyone under age 18, see the line A instructions before you answer this","S":3,"TS":[0,12,0,0]}]},{"x":3.343,"y":11.839,"w":4.668,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"question.) ","S":3,"TS":[0,12,0,0]}]},{"x":4.278,"y":13.339,"w":2.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"x":5.435,"y":13.339,"w":16.264,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Skip lines B and C and go to line 1.","S":3,"TS":[0,12,0,0]}]},{"x":4.279,"y":14.089,"w":2.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No. ","S":3,"TS":[0,12,0,0]}]},{"x":5.665,"y":14.089,"w":5.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Go to line B.","S":3,"TS":[0,12,0,0]}]},{"x":2.504,"y":15.588999999999999,"w":0.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"B ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":15.588999999999999,"w":35.416,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you withhold federal income tax during 2013 for any household employee? ","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":17.089,"w":2.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"x":5.407,"y":17.089,"w":12.837,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Skip line C and go to line 7.","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":17.839,"w":2.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No. ","S":3,"TS":[0,12,0,0]}]},{"x":5.636,"y":17.839,"w":5.593,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Go to line C.","S":3,"TS":[0,12,0,0]}]},{"x":2.483,"y":19.386,"w":1.019,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"C ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":19.402,"w":5.613,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you pay ","S":3,"TS":[0,12,0,0]}]},{"x":6.683,"y":19.402,"w":2.147,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"total","S":3,"TS":[0,12,0,0]}]},{"x":7.949,"y":19.402,"w":15.17,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" cash wages of $1,000 or more in ","S":3,"TS":[0,12,0,0]}]},{"x":16.891,"y":19.402,"w":1.686,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"any","S":3,"TS":[0,12,0,0]}]},{"x":17.898,"y":19.402,"w":4.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" calendar ","S":3,"TS":[0,12,0,0]}]},{"x":20.436,"y":19.402,"w":3.482,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"quarter","S":3,"TS":[0,12,0,0]}]},{"x":22.453,"y":19.402,"w":8.782,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of 2012 or 2013 to ","S":3,"TS":[0,12,0,0]}]},{"x":27.686,"y":19.402,"w":1.09,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"all","S":3,"TS":[0,12,0,0]}]},{"x":28.358,"y":19.402,"w":10.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" household employees? ","S":3,"TS":[0,12,0,0]}]},{"x":3.347,"y":20.089,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"x":3.493,"y":20.089,"w":3.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not ","S":3,"TS":[0,12,0,0]}]},{"x":5.441,"y":20.089,"w":43.308,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"count cash wages paid in 2012 or 2013 to your spouse, your child under age 21, or your parent.) ","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":21.589,"w":5.243,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No. Stop. ","S":3,"TS":[0,12,0,0]}]},{"x":7.199,"y":21.589,"w":11.299,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not file this schedule. ","S":3,"TS":[0,12,0,0]}]},{"x":4.246,"y":22.339,"w":2.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes. ","S":3,"TS":[0,12,0,0]}]},{"x":5.559,"y":22.339,"w":14.394,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Skip lines 1-9 and go to line 10. ","S":3,"TS":[0,12,0,0]}]},{"x":2.327,"y":24.196,"w":2.833,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I ","S":-1,"TS":[0,13,0,0]}]},{"x":4.625,"y":24.196,"w":25.532,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Social Security, Medicare, and Federal Income Taxes ","S":-1,"TS":[0,13,0,0]}]},{"x":2.587,"y":26.099,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":26.089,"w":20.815,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total cash wages subject to social security tax","S":3,"TS":[0,12,0,0]}]},{"x":15.5,"y":26.089,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........ ","S":3,"TS":[0,12,0,0]}]},{"x":22.319,"y":26.089,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":27.589,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":27.589,"w":22.209,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Social security tax. Multiply line 1 by 12.4% (.124)","S":3,"TS":[0,12,0,0]}]},{"x":16.25,"y":27.589,"w":21.328,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":27.589,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":29.089,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":29.089,"w":18.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total cash wages subject to Medicare tax ","S":3,"TS":[0,12,0,0]}]},{"x":14,"y":29.089,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......... ","S":3,"TS":[0,12,0,0]}]},{"x":22.319,"y":29.089,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":30.589,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":30.589,"w":19.302,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Medicare tax. Multiply line 3 by 2.9% (.029)","S":3,"TS":[0,12,0,0]}]},{"x":14.75,"y":30.589,"w":23.994,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..................","S":3,"TS":[0,12,0,0]}]},{"x":28.052,"y":30.589,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":30.589,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":32.089,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":32.089,"w":29.613,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total cash wages subject to Additional Medicare Tax withholding .","S":3,"TS":[0,12,0,0]}]},{"x":20.601,"y":32.089,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":22.319,"y":32.089,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":33.589,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":33.589,"w":30.025,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Additional Medicare Tax withholding. Multiply line 5 by 0.9% (.009) ","S":3,"TS":[0,12,0,0]}]},{"x":20.75,"y":33.589,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":33.589,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":35.089,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":35.089,"w":15.52,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Federal income tax withheld, if any","S":3,"TS":[0,12,0,0]}]},{"x":12.5,"y":35.089,"w":27.993,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"x":28.051,"y":35.089,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":35.089,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":36.589,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":36.589,"w":27.714,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total social security, Medicare, and federal income taxes. ","S":3,"TS":[0,12,0,0]}]},{"x":18.939,"y":36.589,"w":10.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 2, 4, 6, and 7","S":3,"TS":[0,12,0,0]}]},{"x":25.25,"y":36.589,"w":5.332,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....","S":3,"TS":[0,12,0,0]}]},{"x":28.054,"y":36.589,"w":1.333,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":36.589,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8","S":3,"TS":[0,12,0,0]}]},{"x":2.587,"y":38.155,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":38.152,"w":5.613,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you pay ","S":3,"TS":[0,12,0,0]}]},{"x":6.619,"y":38.152,"w":2.147,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"total","S":3,"TS":[0,12,0,0]}]},{"x":7.864000000000001,"y":38.152,"w":15.17,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" cash wages of $1,000 or more in ","S":3,"TS":[0,12,0,0]}]},{"x":16.657,"y":38.152,"w":1.686,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"any","S":3,"TS":[0,12,0,0]}]},{"x":17.642,"y":38.152,"w":4.408,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" calendar ","S":3,"TS":[0,12,0,0]}]},{"x":20.159,"y":38.152,"w":3.482,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"quarter","S":3,"TS":[0,12,0,0]}]},{"x":22.154,"y":38.152,"w":8.782,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of 2012 or 2013 to ","S":3,"TS":[0,12,0,0]}]},{"x":27.28,"y":38.152,"w":1.09,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"all","S":3,"TS":[0,12,0,0]}]},{"x":27.93,"y":38.152,"w":10.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" household employees? ","S":3,"TS":[0,12,0,0]}]},{"x":3.348,"y":38.839,"w":0.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(","S":3,"TS":[0,12,0,0]}]},{"x":3.494,"y":38.839,"w":3.186,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not","S":3,"TS":[0,12,0,0]}]},{"x":5.286,"y":38.839,"w":43.586,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" count cash wages paid in 2012 or 2013 to your spouse, your child under age 21, or your parent.) ","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":40.339,"w":4.965,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No. Stop. ","S":3,"TS":[0,12,0,0]}]},{"x":7.112,"y":40.339,"w":33.586,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Include the amount from line 8 above on Form 1040, line 59a. If you are not","S":3,"TS":[0,12,0,0]}]},{"x":26.35,"y":40.339,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":26.53,"y":40.339,"w":15.356,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"required to file Form 1040, see the","S":3,"TS":[0,12,0,0]}]},{"x":5.693,"y":41.026,"w":8.391,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 9 instructions. ","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":42.589,"w":2.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes.","S":3,"TS":[0,12,0,0]}]},{"x":5.407,"y":42.589,"w":6.539,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Go to line 10.","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":44.144,"w":35.76,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"For Privacy Act and Paperwork Reduction Act Notice, see the instructions. ","S":-1,"TS":[0,11,0,0]}]},{"x":23.1,"y":44.125,"w":7.707,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 12187K ","S":2,"TS":[0,10,0,0]}]},{"x":29.705,"y":44.125,"w":14.096,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule H (Form 1040) 2013 ","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1329,"AM":1024,"TU":"Sequence No. 44","x":28.161,"y":5.993,"w":6.891,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1330,"AM":1024,"x":2.26,"y":7.187,"w":25.519,"h":0.912},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"EIN","EN":0},"TI":1331,"AM":0,"TU":"Employer identification number","x":28.206,"y":7.495,"w":6.849,"h":0.833,"MV":"99-9999999"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":1338,"AM":0,"TU":"Line 1. Total cash wages subject to social security tax.","x":23.445,"y":26.258,"w":3.968,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":1339,"AM":1024,"x":30.24,"y":27.686,"w":4.328,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1340,"AM":0,"TU":"Line 3. Total cash wages subject to Medicare tax.","x":23.445,"y":29.258,"w":3.968,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":1341,"AM":1024,"x":30.24,"y":30.605,"w":4.328,"h":0.88},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5AMED","EN":0},"TI":1342,"AM":0,"TU":"Line 5. Total cash wages subject to Additional Medicare Tax withholding.","x":23.418,"y":32.265,"w":3.967,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6AMED","EN":0},"TI":1343,"AM":1024,"x":30.285,"y":33.631,"w":4.328,"h":0.88},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":1344,"AM":0,"TU":"Line 7. Federal income tax withheld, if any.","x":30.218,"y":35.221,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":1345,"AM":1024,"x":30.186,"y":36.545,"w":4.328,"h":0.88}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXA1","EN":0},"TI":1332,"AM":0,"TU":"Line A. Checkboxes.","x":3.594,"y":13.542,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXA2","EN":0},"TI":1333,"AM":0,"TU":"Line A. Checkboxes.","x":3.562,"y":14.3,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BXARB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXB1","EN":0},"TI":1334,"AM":0,"TU":"Line B. Checkboxes.","x":3.578,"y":17.269,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXB2","EN":0},"TI":1335,"AM":0,"TU":"Line B. Checkboxes.","x":3.546,"y":18.027,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BXBRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXC1","EN":0},"TI":1336,"AM":0,"TU":"Line C. Checkboxes.","x":3.571,"y":21.754,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BXC2","EN":0},"TI":1337,"AM":0,"TU":"Line C. Checkboxes.","x":3.539,"y":22.512,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BXCRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX91","EN":0},"TI":1346,"AM":0,"TU":"Line 9. Checkboxes.","x":3.578,"y":40.505,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX92","EN":0},"TI":1347,"AM":0,"TU":"Line 9. Checkboxes.","x":3.573,"y":42.788,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BX9RB","EN":0}}]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.234,"y":3,"w":1.5,"l":31.981,"oc":"#221f1f"},{"x":34.184,"y":3,"w":1.5,"l":1.831,"oc":"#221f1f"},{"x":2.234,"y":3.75,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":33.284,"y":5.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":5.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.934,"y":5.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.934,"y":6,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":33.3,"y":6,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":33.3,"y":5.25,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":34.634,"y":5.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":6,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.934,"y":6,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.934,"y":6.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":33.3,"y":6.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":33.3,"y":6,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":34.634,"y":6,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":6.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.934,"y":6.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":31.934,"y":7.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":33.3,"y":7.5,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":33.3,"y":6.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":34.634,"y":6.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":7.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":9.75,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":10.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":20.599,"y":11.25,"w":0.75,"l":7.766,"oc":"#221f1f","dsh":1},{"x":28.784,"y":10.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":10.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":10.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":13.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.384,"y":13.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.434,"y":13.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":14.25,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":14.25,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":14.25,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":14.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":14.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":14.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":15,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":15.75,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":16.5,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":2.234,"y":19.5,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":7.55,"y":16.547,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":8.534,"y":19.5,"w":0.75,"l":4.981,"oc":"#221f1f"},{"x":12.46,"y":16.5,"w":0.75,"l":5.548,"oc":"#221f1f"},{"x":12.621,"y":18.422,"w":0.75,"l":5.132,"oc":"#221f1f"},{"x":12.559,"y":19.5,"w":0.75,"l":3.194,"oc":"#221f1f"},{"x":15.121,"y":19.5,"w":0.75,"l":2.852,"oc":"#221f1f"},{"x":17.984,"y":16.5,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":17.984,"y":19.5,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":20.684,"y":16.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":20.684,"y":19.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":24.734,"y":16.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":24.734,"y":19.5,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":28.784,"y":16.5,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.784,"y":19.5,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":32.384,"y":16.5,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":32.384,"y":19.5,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":2.234,"y":19.5,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":2.234,"y":21,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":7.566,"y":21.047,"w":0.75,"l":4.95,"oc":"#221f1f"},{"x":7.566,"y":19.547,"w":0.75,"l":4.95,"oc":"#221f1f"},{"x":18,"y":21,"w":0.75,"l":2.7,"oc":"#221f1f"},{"x":18,"y":19.5,"w":0.75,"l":2.7,"oc":"#221f1f"},{"x":20.7,"y":21,"w":0.75,"l":4.05,"oc":"#221f1f"},{"x":20.7,"y":19.5,"w":0.75,"l":4.05,"oc":"#221f1f"},{"x":24.75,"y":21,"w":0.75,"l":4.05,"oc":"#221f1f"},{"x":24.75,"y":19.5,"w":0.75,"l":4.05,"oc":"#221f1f"},{"x":28.8,"y":21,"w":0.75,"l":3.6,"oc":"#221f1f"},{"x":28.8,"y":19.5,"w":0.75,"l":3.6,"oc":"#221f1f"},{"x":32.384,"y":19.5,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":32.384,"y":21,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":2.234,"y":21,"w":0.75,"l":6.331,"oc":"#221f1f"},{"x":2.234,"y":22.5,"w":1.125,"l":6.331,"oc":"#221f1f"},{"x":7.525,"y":21,"w":0.75,"l":5.95,"oc":"#221f1f"},{"x":7.525,"y":22.5,"w":1.125,"l":5.95,"oc":"#221f1f"},{"x":13.484,"y":21,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":13.484,"y":22.5,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":15.734,"y":21,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":15.734,"y":22.5,"w":1.125,"l":2.281,"oc":"#221f1f"},{"x":17.984,"y":21,"w":0.75,"l":2.731,"oc":"#221f1f"},{"x":17.984,"y":22.5,"w":1.125,"l":2.731,"oc":"#221f1f"},{"x":20.684,"y":21,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":20.684,"y":22.5,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":24.734,"y":21,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":24.734,"y":22.5,"w":1.125,"l":4.081,"oc":"#221f1f"},{"x":28.784,"y":21,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":28.784,"y":22.5,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":32.384,"y":21,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":32.384,"y":22.5,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":27.434,"y":22.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":27.434,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":22.5,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":32.384,"y":22.5,"w":1.125,"l":3.631,"oc":"#221f1f"},{"x":28.784,"y":24,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":32.384,"y":24,"w":0.75,"l":3.631,"oc":"#221f1f"},{"x":22.034,"y":24.75,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.384,"y":24.75,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.45,"y":24.75,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":27.45,"y":24,"w":0.75,"l":1.35,"oc":"#221f1f"},{"x":28.784,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":24,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":24,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":25.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":25.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":25.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.15,"y":26.25,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":30.15,"y":25.5,"w":0.75,"l":4.5,"oc":"#221f1f"},{"x":34.634,"y":25.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.034,"y":27,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.384,"y":27,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":27.434,"y":27,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":26.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":26.25,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":28.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":28.5,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":28.5,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":28.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":28.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":29.25,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":30,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":28.784,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":30.75,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":30,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":30.75,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":30,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":30.75,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":30.75,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.784,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.134,"y":30.75,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":30.134,"y":31.5,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.634,"y":30.75,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":34.634,"y":31.5,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.234,"y":33.75,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":34.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":34.5,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":2.234,"y":36,"w":0.75,"l":25.681,"oc":"#221f1f"},{"x":27.884,"y":34.5,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":27.884,"y":36,"w":0.75,"l":8.131,"oc":"#221f1f"},{"x":2.234,"y":36,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":37.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":37.5,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.234,"y":41.25,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":3.134,"y":40.5,"w":0.75,"l":19.381,"oc":"#221f1f"},{"x":24.734,"y":40.5,"w":0.75,"l":11.281,"oc":"#221f1f"},{"x":2.234,"y":41.25,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":2.234,"y":44.25,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":5.384,"y":41.25,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":5.384,"y":42.75,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":14.834,"y":41.25,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":14.834,"y":42.75,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":24.284,"y":41.25,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":24.284,"y":42.75,"w":0.75,"l":4.081,"oc":"#221f1f"},{"x":28.334,"y":41.25,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":28.334,"y":42.75,"w":0.75,"l":3.181,"oc":"#221f1f"},{"x":30.124,"y":42.094,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":30.124,"y":41.594,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":31.484,"y":41.25,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":31.484,"y":42.75,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":5.384,"y":43.5,"w":0.75,"l":21.631,"oc":"#221f1f"},{"x":5.384,"y":44.25,"w":0.75,"l":21.631,"oc":"#221f1f"},{"x":26.984,"y":43.5,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":26.984,"y":44.25,"w":0.75,"l":9.031,"oc":"#221f1f"},{"x":2.234,"y":44.25,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":33.3,"y":3.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":3.734,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":31.95,"y":5.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":5.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":33.3,"y":5.25,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.65,"y":5.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.95,"y":5.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":6,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":33.3,"y":6,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.65,"y":5.984,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":31.95,"y":6.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":6.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":33.3,"y":6.75,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.65,"y":6.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":10.484,"w":0.75,"l":3.047,"oc":"#221f1f"},{"x":28.8,"y":10.484,"w":0.75,"l":3.047,"oc":"#221f1f"},{"x":34.65,"y":10.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":30.15,"y":10.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":34.65,"y":10.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":22.05,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":12.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":13.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":13.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":13.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":13.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":14.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":14.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":14.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":14.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":7.566,"y":16.531,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":12.516,"y":16.52,"w":0.75,"l":3.148,"oc":"#221f1f"},{"x":15.094,"y":18.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":18,"y":16.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":20.7,"y":16.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":24.75,"y":16.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":28.8,"y":16.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":32.4,"y":16.484,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":8.55,"y":19.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":12.516,"y":19.547,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":7.566,"y":19.547,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":20.7,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":18,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":24.75,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":20.7,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":28.8,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":24.75,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":32.4,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":28.8,"y":19.5,"w":0.75,"l":1.5,"oc":"#221f1f"},{"x":32.4,"y":19.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":8.55,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":7.566,"y":21.031,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":12.609,"y":20.887,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":18,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":15.094,"y":19.367,"w":0.75,"l":3.078,"oc":"#221f1f"},{"x":20.7,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":18,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":24.75,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":20.7,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.8,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":24.75,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":32.4,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.8,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":32.4,"y":20.984,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":27.45,"y":22.477,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":32.4,"y":22.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":22.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":32.4,"y":22.477,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":32.4,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":32.4,"y":23.234,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":24,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":27.45,"y":24,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":30.15,"y":23.985,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":28.8,"y":23.985,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":34.65,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":24.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":24.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":24.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":24.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":25.484,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":25.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":30.15,"y":25.5,"w":0.75,"l":0.75,"oc":"#221f1f"},{"x":34.65,"y":25.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.05,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.4,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.45,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":26.235,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":28.8,"y":26.235,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.65,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.15,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.65,"y":26.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.8,"y":27.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":27.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":27.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":27.734,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.15,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.65,"y":28.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.8,"y":29.984,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":29.984,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":29.984,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":29.984,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.8,"y":30.727,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":30.727,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.15,"y":30.727,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.65,"y":30.727,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":27.9,"y":34.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.9,"y":34.484,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":5.4,"y":41.235,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":14.85,"y":41.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":24.3,"y":41.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.35,"y":41.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.624,"y":41.594,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":30.124,"y":41.594,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":31.5,"y":41.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27,"y":42.734,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27,"y":43.484,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.109,"y":2.063,"w":33.75,"h":45,"oc":"#fcfae1"},{"x":2.25,"y":3,"w":2.3,"h":0.75,"oc":"#221f1f"},{"x":20.615,"y":10.563,"w":7.735,"h":0.687,"clr":1},{"x":28.8,"y":10.5,"w":1.35,"h":3,"oc":"#bebfc1"},{"x":30.15,"y":10.5,"w":4.5,"h":3,"clr":1},{"x":34.65,"y":10.5,"w":1.35,"h":3,"clr":1},{"x":23.4,"y":12.75,"w":4.05,"h":0.75,"clr":1},{"x":30.15,"y":13.5,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":14.25,"w":4.5,"h":0.75,"clr":1},{"x":2.262,"y":19.453,"w":5.32,"h":1.5,"clr":1},{"x":7.603,"y":19.453,"w":4.857,"h":1.5,"clr":1},{"x":18,"y":19.5,"w":2.7,"h":1.5,"clr":1},{"x":20.7,"y":19.5,"w":4.05,"h":1.5,"clr":1},{"x":24.75,"y":19.5,"w":4.05,"h":1.5,"clr":1},{"x":28.8,"y":19.5,"w":3.6,"h":1.5,"clr":1},{"x":32.4,"y":19.5,"w":3.6,"h":1.5,"clr":1},{"x":2.238,"y":21,"w":5.273,"h":1.5,"clr":1},{"x":7.566,"y":21.047,"w":4.95,"h":1.5,"clr":1},{"x":18,"y":21,"w":2.7,"h":1.5,"clr":1},{"x":20.7,"y":21,"w":4.05,"h":1.5,"clr":1},{"x":24.75,"y":21,"w":4.05,"h":1.5,"clr":1},{"x":28.8,"y":21,"w":3.6,"h":1.5,"clr":1},{"x":32.4,"y":21,"w":3.6,"h":1.5,"clr":1},{"x":28.8,"y":22.5,"w":3.6,"h":0.75,"clr":1},{"x":32.4,"y":22.5,"w":3.6,"h":0.75,"clr":1},{"x":28.8,"y":23.25,"w":3.6,"h":0.75,"clr":1},{"x":32.4,"y":23.25,"w":3.6,"h":0.75,"clr":1},{"x":23.4,"y":24,"w":4.05,"h":0.75,"clr":1},{"x":30.15,"y":24,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":24.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":25.5,"w":4.5,"h":0.75,"clr":1},{"x":23.4,"y":26.25,"w":4.05,"h":0.75,"clr":1},{"x":30.15,"y":26.25,"w":4.5,"h":1.5,"clr":1},{"x":30.15,"y":27.75,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":28.5,"w":4.5,"h":0.75,"clr":1},{"x":2.25,"y":29.25,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":30.15,"y":30,"w":4.5,"h":0.75,"clr":1},{"x":30.15,"y":30.75,"w":4.5,"h":0.75,"clr":1},{"x":2.25,"y":33.75,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.25,"y":34.5,"w":25.65,"h":1.5,"clr":1},{"x":27.9,"y":34.5,"w":8.1,"h":1.5,"clr":1},{"x":2.25,"y":36,"w":33.75,"h":1.5,"clr":1},{"x":2.25,"y":37.5,"w":33.75,"h":3.75,"clr":1},{"x":12.618,"y":19.657,"w":2.421,"h":1.279,"clr":1},{"x":15.197,"y":19.61,"w":2.607,"h":1.279,"clr":1},{"x":12.618,"y":21.157,"w":2.421,"h":1.279,"clr":1},{"x":15.173,"y":21.11,"w":2.653,"h":1.279,"clr":1}],"Texts":[{"x":2,"y":1.9809999999999999,"w":13.32,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule H (Form 1040) 2013","S":2,"TS":[0,10,0,0]}]},{"x":33.95,"y":2.04,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.076,"y":2.04,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" 2 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.259,"y":2.821,"w":3.128,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II ","S":-1,"TS":[0,13,0,0]}]},{"x":4.625,"y":2.821,"w":16.867,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Federal Unemployment (FUTA) Tax ","S":-1,"TS":[0,13,0,0]}]},{"x":33.225,"y":3.652,"w":2.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes ","S":3,"TS":[0,12,0,0]}]},{"x":34.695,"y":3.652,"w":1.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":4.401,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":4.401,"w":47.328,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you pay unemployment contributions to only one state? (If you paid contributions to a credit reduction","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":5.089,"w":17.967,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"state, see instructions and check “No.”) ","S":3,"TS":[0,12,0,0]}]},{"x":14,"y":5.089,"w":30.659,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"x":32.062,"y":5.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":5.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":5.839,"w":50.106,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you pay all state unemployment contributions for 2013 by April 15, 2014? Fiscal year filers see instructions ","S":3,"TS":[0,12,0,0]}]},{"x":32.062,"y":5.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":6.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":6.589,"w":41.688,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Were all wages that are taxable for FUTA tax also taxable for your state’s unemployment tax?","S":3,"TS":[0,12,0,0]}]},{"x":27.5,"y":6.589,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..... ","S":3,"TS":[0,12,0,0]}]},{"x":32.062,"y":6.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12","S":3,"TS":[0,12,0,0]}]},{"x":2,"y":8.152,"w":2.76,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Next: ","S":3,"TS":[0,12,0,0]}]},{"x":3.553,"y":8.152,"w":8.521,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you checked the ","S":3,"TS":[0,12,0,0]}]},{"x":8.346,"y":8.152,"w":2.704,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"“Yes”","S":3,"TS":[0,12,0,0]}]},{"x":9.867,"y":8.152,"w":3.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" box on ","S":3,"TS":[0,12,0,0]}]},{"x":11.919,"y":8.152,"w":1.368,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"all ","S":3,"TS":[0,12,0,0]}]},{"x":12.689,"y":8.152,"w":16.615,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" the lines above, complete Section A.","S":3,"TS":[0,12,0,0]}]},{"x":22.035,"y":8.152,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.563,"y":8.839,"w":8.521,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you checked the ","S":3,"TS":[0,12,0,0]}]},{"x":8.356,"y":8.839,"w":2.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"“No”","S":3,"TS":[0,12,0,0]}]},{"x":9.637,"y":8.839,"w":3.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" box on ","S":3,"TS":[0,12,0,0]}]},{"x":11.69,"y":8.839,"w":1.686,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"any","S":3,"TS":[0,12,0,0]}]},{"x":12.638,"y":8.839,"w":26.747,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of the lines above, skip Section A and complete Section B. ","S":3,"TS":[0,12,0,0]}]},{"x":17.446,"y":9.54,"w":4.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Section A ","S":-1,"TS":[0,13,0,0]}]},{"x":2.275,"y":10.389,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":10.412,"w":28.434,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name of the state where you paid unemployment contributions ","S":3,"TS":[0,12,0,0]}]},{"x":19.344,"y":10.319,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":2.275,"y":12.589,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":12.589,"w":23.916,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Contributions paid to your state unemployment fund ","S":3,"TS":[0,12,0,0]}]},{"x":17,"y":12.589,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":22.162,"y":12.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":13.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":13.339,"w":17.241,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total cash wages subject to FUTA tax ","S":3,"TS":[0,12,0,0]}]},{"x":13.25,"y":13.339,"w":26.66,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"x":28.912,"y":13.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":14.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":14.089,"w":4.927,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"FUTA tax. ","S":3,"TS":[0,12,0,0]}]},{"x":6.121,"y":14.089,"w":37.567,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 15 by .6% (.006). Enter the result here, skip Section B, and go to line 25","S":3,"TS":[0,12,0,0]}]},{"x":28.912,"y":14.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16","S":3,"TS":[0,12,0,0]}]},{"x":17.44,"y":14.79,"w":4.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Section B ","S":-1,"TS":[0,13,0,0]}]},{"x":2.275,"y":15.588999999999999,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":15.588999999999999,"w":36.526,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete all columns below that apply (if you need more space, see instructions):","S":3,"TS":[0,12,0,0]}]},{"x":4.895,"y":16.312,"w":1.166,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(a)","S":2,"TS":[0,10,0,0]}]},{"x":5.405,"y":16.312,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":3.716,"y":16.875,"w":6.835,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name of state ","S":2,"TS":[0,10,0,0]}]},{"x":9.528,"y":16.359,"w":2.037,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(b) ","S":2,"TS":[0,10,0,0]}]},{"x":7.981,"y":16.922,"w":8.554,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Taxable wages (as ","S":2,"TS":[0,10,0,0]}]},{"x":12.707,"y":16.875,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":7.866,"y":17.484,"w":9.076,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"defined in state act) ","S":2,"TS":[0,10,0,0]}]},{"x":15.245,"y":16.312,"w":2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(c) ","S":2,"TS":[0,10,0,0]}]},{"x":13.414,"y":16.875,"w":9.815,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"State experience rate ","S":2,"TS":[0,10,0,0]}]},{"x":17.708,"y":16.875,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":14.876,"y":17.438,"w":3.13,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"period ","S":2,"TS":[0,10,0,0]}]},{"x":13.161,"y":18.047,"w":2.612,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"From ","S":2,"TS":[0,10,0,0]}]},{"x":15.952000000000002,"y":18.154,"w":1.426,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"To ","S":2,"TS":[0,10,0,0]}]},{"x":18.837,"y":16.312,"w":3.705,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(d) ","S":2,"TS":[0,10,0,0]}]},{"x":18.585,"y":16.875,"w":2.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"State ","S":2,"TS":[0,10,0,0]}]},{"x":18.027,"y":17.438,"w":5.185,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"experience ","S":2,"TS":[0,10,0,0]}]},{"x":18.723,"y":18,"w":2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"rate ","S":2,"TS":[0,10,0,0]}]},{"x":22.22,"y":16.312,"w":2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(e) ","S":2,"TS":[0,10,0,0]}]},{"x":20.992,"y":16.875,"w":7.057,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply col. (b) ","S":2,"TS":[0,10,0,0]}]},{"x":24.08,"y":16.875,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":21.75,"y":17.438,"w":3.595,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"by .054 ","S":2,"TS":[0,10,0,0]}]},{"x":26.323,"y":16.312,"w":1.759,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(f) ","S":2,"TS":[0,10,0,0]}]},{"x":25.042,"y":16.875,"w":7.057,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply col. (b) ","S":2,"TS":[0,10,0,0]}]},{"x":28.13,"y":16.875,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":25.569,"y":17.438,"w":4.649,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"by col. (d) ","S":2,"TS":[0,10,0,0]}]},{"x":30.087,"y":16.25,"w":2.037,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(g) ","S":2,"TS":[0,10,0,0]}]},{"x":28.859,"y":16.812,"w":7.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract col. (f) ","S":2,"TS":[0,10,0,0]}]},{"x":31.963,"y":16.812,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":28.953,"y":17.375,"w":6.667,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from col. (e). If ","S":2,"TS":[0,10,0,0]}]},{"x":31.869,"y":17.375,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":29.163,"y":17.938,"w":5.702,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"zero or less, ","S":2,"TS":[0,10,0,0]}]},{"x":31.658,"y":17.938,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":29.438,"y":18.5,"w":4.446,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"enter -0-. ","S":2,"TS":[0,10,0,0]}]},{"x":33.691,"y":16.25,"w":2.019,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(h) ","S":2,"TS":[0,10,0,0]}]},{"x":32.629,"y":16.812,"w":6.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Contributions ","S":2,"TS":[0,10,0,0]}]},{"x":35.392,"y":16.812,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":32.726,"y":17.375,"w":5.872,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"paid to state ","S":2,"TS":[0,10,0,0]}]},{"x":35.295,"y":17.375,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":32.495,"y":17.938,"w":6.93,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"unemployment ","S":2,"TS":[0,10,0,0]}]},{"x":35.527,"y":17.938,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":2,"TS":[0,10,0,0]}]},{"x":33.512,"y":18.5,"w":2.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"fund ","S":2,"TS":[0,10,0,0]}]},{"x":1.948,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":8.248,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":13.198,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":15.448,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":17.698,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":20.398,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":24.448,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":28.498,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":32.098,"y":18.294,"w":1.112,"oc":"#2b2b79","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":2.275,"y":23.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":23.089,"w":3,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Totals ","S":3,"TS":[0,12,0,0]}]},{"x":5.75,"y":23.089,"w":38.657,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............................ ","S":3,"TS":[0,12,0,0]}]},{"x":27.562,"y":23.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":23.827,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":23.839,"w":15.227,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add columns (g) and (h) of line 18 ","S":3,"TS":[0,12,0,0]}]},{"x":12.5,"y":23.839,"w":15.996,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":3,"TS":[0,12,0,0]}]},{"x":22.162,"y":23.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":24.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":24.589,"w":29.966,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total cash wages subject to FUTA tax (see the line 15 instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":20.75,"y":24.589,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":28.912,"y":24.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":25.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":25.339,"w":14.043,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 20 by 6.0% (.060) ","S":-1,"TS":[0,11.82,0,0]}]},{"x":11.75,"y":25.339,"w":29.942,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......................","S":-1,"TS":[0,11.82,0,0]}]},{"x":28.912,"y":25.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":26.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":26.089,"w":13.765,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 20 by 5.4% (.054) ","S":3,"TS":[0,12,0,0]}]},{"x":11.75,"y":26.089,"w":17.329,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":3,"TS":[0,12,0,0]}]},{"x":22.162,"y":26.089,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":26.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":26.839,"w":4.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the ","S":3,"TS":[0,12,0,0]}]},{"x":5.778,"y":26.839,"w":3.496,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"smaller","S":3,"TS":[0,12,0,0]}]},{"x":7.744,"y":26.839,"w":9.021,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" of line 19 or line 22 ","S":3,"TS":[0,12,0,0]}]},{"x":13.25,"y":26.839,"w":26.66,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................","S":3,"TS":[0,12,0,0]}]},{"x":3.347,"y":27.589,"w":40.917,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Employers in a credit reduction state must use the worksheet on page H-7 and check here)","S":3,"TS":[0,12,0,0]}]},{"x":26.748,"y":27.589,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":28.912,"y":27.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":28.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":28.339,"w":4.927,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"FUTA tax. ","S":3,"TS":[0,12,0,0]}]},{"x":6.121,"y":28.339,"w":30.194,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 23 from line 21. Enter the result here and go to line 25 ","S":3,"TS":[0,12,0,0]}]},{"x":23.75,"y":28.339,"w":7.998,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":3,"TS":[0,12,0,0]}]},{"x":28.912,"y":28.339,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"24","S":3,"TS":[0,12,0,0]}]},{"x":2.142,"y":29.071,"w":3.423,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III ","S":-1,"TS":[0,13,0,0]}]},{"x":4.625,"y":29.071,"w":17.458,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Total Household Employment Taxes ","S":-1,"TS":[0,13,0,0]}]},{"x":2.275,"y":29.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":29.839,"w":39.715,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount from line 8. If you checked the “Yes” box on line C of page 1, enter -0- ","S":3,"TS":[0,12,0,0]}]},{"x":26.001,"y":29.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":26.751,"y":29.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":27.501,"y":29.839,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":28.912,"y":29.839,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"25","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":30.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":30.589,"w":15.672,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add line 16 (or line 24) and line 25 ","S":3,"TS":[0,12,0,0]}]},{"x":12.5,"y":30.589,"w":27.993,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....................","S":3,"TS":[0,12,0,0]}]},{"x":28.912,"y":30.589,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"26","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":31.339,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"27 ","S":3,"TS":[0,12,0,0]}]},{"x":3.35,"y":31.339,"w":16.078,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Are you required to file Form 1040? ","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":32.089,"w":5.113,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes. Stop. ","S":3,"TS":[0,12,0,0]}]},{"x":7.126,"y":32.089,"w":28.271,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Include the amount from line 26 above on Form 1040, line 59a. ","S":3,"TS":[0,12,0,0]}]},{"x":23.029,"y":32.089,"w":3.186,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not","S":3,"TS":[0,12,0,0]}]},{"x":24.821,"y":32.089,"w":10.945,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" complete Part IV below.","S":3,"TS":[0,12,0,0]}]},{"x":4.25,"y":32.777,"w":1.63,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No.","S":3,"TS":[0,12,0,0]}]},{"x":5.167,"y":32.777,"w":28.209,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" You may have to complete Part IV. See instructions for details.","S":3,"TS":[0,12,0,0]}]},{"x":2.13,"y":33.571,"w":3.463,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part IV ","S":-1,"TS":[0,13,0,0]}]},{"x":4.625,"y":33.571,"w":12.149,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Address and Signature— ","S":-1,"TS":[0,13,0,0]}]},{"x":12.218,"y":33.571,"w":8.28,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete this part","S":-1,"TS":[0,13,0,0]}]},{"x":17.393,"y":33.571,"w":2.537,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" only ","S":-1,"TS":[0,13,0,0]}]},{"x":18.979,"y":33.571,"w":17.411,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"if required. See the line 27 instructions.","S":-1,"TS":[0,13,0,0]}]},{"x":2,"y":34.16,"w":36.211,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Address (number and street) or P.O. box if mail is not delivered to street address ","S":2,"TS":[0,10,0,0]}]},{"x":27.9,"y":34.143,"w":10.559,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Apt., room, or suite no. ","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":35.682,"w":20.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"City, town or post office, state, and ZIP code ","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":37.15,"w":56.848,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Under penalties of perjury, I declare that I have examined this schedule, including accompanying statements, and to the best of","S":2,"TS":[0,10,0,0]}]},{"x":28.376,"y":37.15,"w":15.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" my knowledge and belief, it is true,","S":2,"TS":[0,10,0,0]}]},{"x":1.9980000000000002,"y":37.65,"w":58.351,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"correct, and complete. No part of any payment made to a state unemployment fund claimed as a credit was, or is to be, deducted ","S":2,"TS":[0,10,0,0]}]},{"x":28.954,"y":37.65,"w":15.265,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from the payments to employees. ","S":2,"TS":[0,10,0,0]}]},{"x":1.999,"y":38.15,"w":49.393,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Declaration of preparer (other than taxpayer) is based on all information of which preparer has any knowledge. ","S":2,"TS":[0,10,0,0]}]},{"x":2.352,"y":39.165,"w":0.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"F","S":-1,"TS":[0,23.9997,0,0],"RA":90}]},{"x":2.9,"y":40.312,"w":9.687,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Employer’s signature ","S":2,"TS":[0,10,0,0]}]},{"x":23.502,"y":39.165,"w":0.892,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"F","S":-1,"TS":[0,23.9997,0,0],"RA":90}]},{"x":24.5,"y":40.312,"w":2.371,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date ","S":2,"TS":[0,10,0,0]}]},{"x":2,"y":41.435,"w":2.388,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Paid ","S":4,"TS":[0,14,0,0]}]},{"x":2,"y":42.185,"w":4.445,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Preparer ","S":4,"TS":[0,14,0,0]}]},{"x":2,"y":42.935,"w":4.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Use Only","S":4,"TS":[0,14,0,0]}]},{"x":5.4,"y":40.938,"w":12.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Print/Type preparer’s name","S":2,"TS":[0,10,0,0]}]},{"x":14.725,"y":40.938,"w":9.037,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Preparer's signature","S":2,"TS":[0,10,0,0]}]},{"x":24.3,"y":40.938,"w":2.093,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Date","S":2,"TS":[0,10,0,0]}]},{"x":28.35,"y":41.338,"w":6.169,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check if ","S":2,"TS":[0,10,0,0]}]},{"x":28.35,"y":41.838,"w":6.353,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"self-employed","S":2,"TS":[0,10,0,0]}]},{"x":31.375,"y":40.938,"w":2.203,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"PTIN","S":2,"TS":[0,10,0,0]}]},{"x":5.4,"y":42.625,"w":7.189,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm’s name ","S":2,"TS":[0,10,0,0]}]},{"x":8.545,"y":42.531,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":5.4,"y":43.375,"w":7.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm's address ","S":2,"TS":[0,10,0,0]}]},{"x":8.544,"y":43.281,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":27,"y":42.625,"w":5.186,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Firm's EIN ","S":2,"TS":[0,10,0,0]}]},{"x":29.269,"y":42.531,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":1,"TS":[0,8,0,0]}]},{"x":27,"y":43.375,"w":4.557,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Phone no.","S":2,"TS":[0,10,0,0]}]},{"x":29.705,"y":44.125,"w":14.096,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule H (Form 1040) 2013 ","S":2,"TS":[0,10,0,0]}]},{"x":12.629,"y":18.576,"w":4.558,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"mm/dd/yy","S":2,"TS":[0,10,0,0]}]},{"x":15.254,"y":18.623,"w":4.558,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"mm/dd/yy","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME2","EN":0},"TI":2281,"AM":1024,"TU":"For Privacy Act and Paperwork Reduction Act Notice, see the instructions","x":8.261,"y":2.117,"w":16.328,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2282,"AM":1024,"TU":"Schedule H (Form 1040) 2013","x":27.975,"y":2.136,"w":6.067,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":2289,"AM":0,"TU":"Line 13. State where you paid unemployment contributions.","x":20.589,"y":10.566,"w":7.191,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"AL"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":2290,"AM":0,"TU":"Line 14. Contributions paid to your state unemployment fund.","x":23.476,"y":12.761,"w":3.957,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":2291,"AM":0,"TU":"Line 15. Total cash wages subject to FUTA tax.","x":30.248,"y":13.462,"w":4.338,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":2292,"AM":1024,"x":30.241,"y":14.244,"w":4.338,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A30_STNAME_1_","EN":0},"TI":2293,"AM":0,"TU":"Line 17(a) Name of state.","x":2.343,"y":20.067,"w":4.442,"h":0.867,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":" "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A30_TAXWAGES_1_","EN":0},"TI":2294,"AM":0,"TU":"Line 17(b). Taxable wages (as defined in state act).","x":7.678,"y":20.051,"w":4.772,"h":0.882},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATEFROM_1_","EN":0},"TI":2295,"AM":0,"TU":"Line 17(c). State experience rate period from.","x":12.703,"y":20.135,"w":2.326,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATETO_1_","EN":0},"TI":2296,"AM":0,"TU":"Line 17(c). State experience rate period to.","x":15.36,"y":20.159,"w":2.428,"h":0.833,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A31_STEXPRT_1_","EN":0},"TI":2297,"AM":0,"TU":"Line 17(d). State experience rate.","x":18.067,"y":20.096,"w":2.573,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLE_1_","EN":0},"TI":2298,"AM":1024,"x":20.767,"y":20.096,"w":3.923,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLF_1_","EN":0},"TI":2299,"AM":1024,"x":24.817,"y":20.123,"w":3.922,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLG_1_","EN":0},"TI":2300,"AM":1024,"x":28.867,"y":20.096,"w":3.473,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_UNEMP_1_","EN":0},"TI":2301,"AM":0,"TU":"Line 17(h). Contributions paid to state unemployment fund.","x":32.468,"y":20.123,"w":3.51,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"A30_STNAME_2_","EN":0},"TI":2302,"AM":0,"TU":"Line 17(a) Name of state.","x":2.317,"y":21.34,"w":4.493,"h":0.918,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":" "},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A30_TAXWAGES_2_","EN":0},"TI":2303,"AM":0,"TU":"Line 17(b). Taxable wages (as defined in state act).","x":7.588,"y":21.471,"w":4.823,"h":0.882},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATEFROM_2_","EN":0},"TI":2304,"AM":0,"TU":"Line 17(c). State experience rate period from.","x":12.714,"y":21.55,"w":2.275,"h":0.849,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"date","TypeInfo":{}},"id":{"Id":"A30_RATETO_2_","EN":0},"TI":2305,"AM":0,"TU":"Line 17(c). State experience rate period to.","x":15.344,"y":21.506,"w":2.631,"h":0.909,"MV":"mm/dd/yy"},{"style":48,"T":{"Name":"mask","TypeInfo":{}},"id":{"Id":"A31_STEXPRT_2_","EN":0},"TI":2306,"AM":0,"TU":"Line 17(d). State experience rate.","x":18.106,"y":21.66,"w":2.573,"h":0.833,"MV":"d"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLE_2_","EN":0},"TI":2307,"AM":1024,"x":20.779,"y":21.66,"w":3.922,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLF_2_","EN":0},"TI":2308,"AM":1024,"x":24.829,"y":21.687,"w":3.922,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_COLG_2_","EN":0},"TI":2309,"AM":1024,"x":28.879,"y":21.66,"w":3.472,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"A31_UNEMP_2_","EN":0},"TI":2310,"AM":0,"TU":"Line 17(h). Contributions paid to state unemployment fund.","x":32.479,"y":21.687,"w":3.51,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19A","EN":0},"TI":2311,"AM":1024,"x":28.864,"y":23.184,"w":3.473,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19B","EN":0},"TI":2312,"AM":1024,"x":32.508,"y":23.209,"w":3.472,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":2313,"AM":1024,"x":23.444,"y":23.988,"w":3.968,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":2314,"AM":0,"TU":"Line 20. Total cash wages subject to FUTA tax (see the line 15 instructions).","x":30.241,"y":24.725,"w":4.372,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":2315,"AM":1024,"x":30.188,"y":25.545,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L23","EN":0},"TI":2316,"AM":1024,"x":23.445,"y":26.258,"w":3.968,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L24","EN":0},"TI":2318,"AM":0,"TU":"Line 23. Enter the smaller of line 19 or line 22.","x":30.225,"y":27.658,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L25","EN":0},"TI":2319,"AM":1024,"x":30.188,"y":28.545,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L26","EN":0},"TI":2320,"AM":1024,"x":30.188,"y":30.038,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L27","EN":0},"TI":2321,"AM":1024,"x":30.188,"y":30.795,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"ADDRESS","EN":0},"TI":2324,"AM":0,"TU":"Address (number and street) or P.O. box if mail is not delivered to street address","x":2.274,"y":35.131,"w":25.566,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"APT","EN":0},"TI":2325,"AM":0,"TU":"Apt., room, or suite no.","x":28.133,"y":35.131,"w":3.345,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CITY","EN":0},"TI":2326,"AM":0,"TU":"City, town or post office.","x":2.262,"y":36.635,"w":10.456,"h":0.85},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"STATE","EN":0},"TI":2327,"AM":0,"TU":"State","x":19.232,"y":36.641,"w":4.329,"h":0.833,"PL":{"V":[" ","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"],"D":["no entry","AL","AK","AS","AZ","AR","CA","CO","MP","CT","DE","DC","FM","FL","GA","GU","HI","ID","IL","IN","IA","KS","KY","LA","ME","MH","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PW","PA","PR","RI","SC","SD","TN","TX","UT","VT","VI","VA","WA","WV","WI","WY","AA","AE","AP"]},"V":"no entry"},{"style":48,"T":{"Name":"zip","TypeInfo":{}},"id":{"Id":"ZIP","EN":0},"TI":2328,"AM":0,"TU":"Zip code.","x":30.735,"y":36.63,"w":5.284,"h":0.85},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"FNAME","EN":0},"TI":2329,"AM":1024,"TU":"Firm’s name a","x":9.06,"y":42.788,"w":9.008,"h":0.833}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B10Y","EN":0},"TI":2283,"AM":0,"TU":"Line 10. Checkboxes.","x":33.708,"y":5.229,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B10N","EN":0},"TI":2284,"AM":0,"TU":"Line 10. Checkboxes.","x":35.038,"y":5.224,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"B10RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B11Y","EN":0},"TI":2285,"AM":0,"TU":"Line 11. Checkboxes.","x":33.688,"y":5.944,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B11N","EN":0},"TI":2286,"AM":0,"TU":"Line 11. Checkboxes.","x":35.045,"y":5.939,"w":0.581,"h":0.833,"checked":false}],"id":{"Id":"B11RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B12Y","EN":0},"TI":2287,"AM":0,"TU":"Line 12. Checkboxes.","x":33.681,"y":6.726,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"B12N","EN":0},"TI":2288,"AM":0,"TU":"Line 12. Checkboxes.","x":35.01,"y":6.722,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"B12RB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"EMPLRX","EN":0},"TI":2317,"AM":0,"TU":"Employers in a credit reduction state must use the worksheet on page H-7 and check here.)","x":27.563,"y":27.738,"w":0.525,"h":0.833}]},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX28A","EN":0},"TI":2322,"AM":0,"x":3.537,"y":32.215,"w":0.608,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"BX28B","EN":0},"TI":2323,"AM":0,"x":3.56,"y":32.946,"w":0.608,"h":0.833,"checked":false}],"id":{"Id":"BX28RB","EN":0}}]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHJ.json b/test/data/fd/form/FSCHJ.json index 876ebe8e..93bf3eba 100755 --- a/test/data/fd/form/FSCHJ.json +++ b/test/data/fd/form/FSCHJ.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"2013 Schedule J (Form 1040)","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":5.251,"w":1.5,"l":14.979},{"oc":"#221f1f","x":20.997,"y":5.251,"w":1.5,"l":63.199},{"oc":"#221f1f","x":84.066,"y":3.001,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":5.251,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":6.751,"w":0.75,"l":69.386},{"oc":"#221f1f","x":75.447,"y":6.751,"w":0.75,"l":23.598},{"oc":"#221f1f","x":79.159,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":7.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":7.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":9.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":9.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":9.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":9.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":14.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":14.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":14.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":15.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":15.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":17.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":21.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":17.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":21.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":24.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":24.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":24.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":26.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":26.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":27.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":30.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":27.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":30.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":33.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":59.359,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":35.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":35.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":82.872,"y":36.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":40.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":40.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":36.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":42.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":42.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":43.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":43.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":45.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":45.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":45.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":46.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":46.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":46.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":6.147,"y":46.501,"w":1.5,"l":47.111},{"oc":"#221f1f","x":53.172,"y":46.501,"w":1.5,"l":28.548},{"oc":"#221f1f","x":81.634,"y":46.501,"w":1.5,"l":17.411}],"VLines":[{"oc":"#221f1f","x":21.04,"y":2.235,"w":1.5,"l":3.047},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.152,"y":2.985,"w":1.5,"l":2.281},{"oc":"#221f1f","x":75.49,"y":5.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":82.915,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":6.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":7.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":7.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":8.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":8.985,"w":0.75,"l":6.031},{"oc":"#221f1f","x":79.202,"y":8.985,"w":0.75,"l":6.031},{"oc":"#221f1f","x":95.29,"y":8.985,"w":0.75,"l":6.031},{"oc":"#221f1f","x":63.115,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":13.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":14.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":79.202,"y":15.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":95.29,"y":15.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":16.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":18.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":20.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":17.236,"w":0.75,"l":9.781},{"oc":"#221f1f","x":79.202,"y":17.236,"w":0.75,"l":9.781},{"oc":"#221f1f","x":95.29,"y":17.236,"w":0.75,"l":9.781},{"oc":"#221f1f","x":63.115,"y":20.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":59.402,"y":20.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":75.49,"y":20.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":63.115,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":23.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.115,"y":25.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":25.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":25.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":26.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":29.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":27.735,"w":0.75,"l":8.281},{"oc":"#221f1f","x":79.202,"y":27.735,"w":0.75,"l":8.281},{"oc":"#221f1f","x":95.29,"y":27.735,"w":0.75,"l":8.281},{"oc":"#221f1f","x":63.115,"y":30.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":59.402,"y":30.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":75.49,"y":30.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":63.115,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":63.115,"y":34.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":34.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":34.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":35.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":75.49,"y":38.235,"w":0.75,"l":1.531},{"oc":"#221f1f","x":63.115,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":39.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":36.735,"w":0.75,"l":6.781},{"oc":"#221f1f","x":79.202,"y":36.735,"w":0.75,"l":6.781},{"oc":"#221f1f","x":95.29,"y":36.735,"w":0.75,"l":7.531},{"oc":"#221f1f","x":63.115,"y":41.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":41.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":41.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":42.735,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":43.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":43.485,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":44.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":44.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":79.202,"y":44.985,"w":0.75,"l":1.539},{"oc":"#221f1f","x":95.29,"y":44.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":45.735,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bfc0c4","x":79.202,"y":9.001,"w":3.713,"h":6,"clr":-1},{"oc":"#bfc0c4","x":59.402,"y":18.751,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":17.251,"w":3.713,"h":9.75,"clr":-1},{"oc":"#bfc0c4","x":59.402,"y":21.001,"w":3.713,"h":3,"clr":-1},{"oc":"#bfc0c4","x":59.402,"y":28.501,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":27.751,"w":3.713,"h":8.25,"clr":-1},{"oc":"#bfc0c4","x":59.402,"y":30.751,"w":3.713,"h":2.25,"clr":-1},{"oc":"#bfc0c4","x":59.402,"y":38.251,"w":3.713,"h":1.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":36.751,"w":3.713,"h":6.75,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.01,"w":6.8919999999999995,"clr":-1,"A":"left","R":[{"T":"SCHEDULE%20J%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":2.697,"w":5.871,"clr":-1,"A":"left","R":[{"T":"(Form%201040)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.985,"y":3.8200000000000003,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.985,"y":4.32,"w":13.279000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":40.892,"y":2.101,"w":9.82,"clr":-1,"A":"left","R":[{"T":"Income%20Averaging%20for%20","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":39.761,"y":2.976,"w":10.459999999999997,"clr":-1,"A":"left","R":[{"T":"Farmers%20and%20Fishermen","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":39.372,"y":3.6559999999999997,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":40.642,"y":3.7489999999999997,"w":17.948000000000004,"clr":-1,"A":"left","R":[{"T":"Attach%20to%20Form%201040%20or%20Form%201040NR.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.092,"y":4.216,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.362,"y":4.31,"w":30.496,"clr":-1,"A":"left","R":[{"T":"Information%20about%20Schedule%20J%20and%20its%20separate%20instructions%20is%20at%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":66.293,"y":4.31,"w":11.132000000000003,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fschedulej.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9729999999999999,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.858,"y":3.393,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.203,"y":3.393,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.965,"y":3.9189999999999996,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":4.366,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.943,"y":4.366,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.001,"w":11.483000000000002,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20return%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":75.927,"y":5.001,"w":14.129000000000003,"clr":-1,"A":"left","R":[{"T":"Social%20security%20number%20(SSN)%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":7.555,"y":6.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":6.59,"w":15.985000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20taxable%20income%20from%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.616,"y":6.59,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":39.057,"y":6.59,"w":20.34200000000001,"clr":-1,"A":"left","R":[{"T":"%20Form%201040%2C%20line%2043%2C%20or%20Form%201040NR%2C%20line%2041%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":71.941,"y":6.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":74.003,"y":6.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":76.065,"y":6.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":6.59,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"1%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":8.09,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"2a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":8.09,"w":4.871,"clr":-1,"A":"left","R":[{"T":"Enter%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":18.424,"y":8.09,"w":10.069,"clr":-1,"A":"left","R":[{"T":"elected%20farm%20income%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34,"y":8.09,"w":8.112000000000002,"clr":-1,"A":"left","R":[{"T":"(see%20instructions).%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":46.548,"y":8.09,"w":3.4639999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.907,"y":8.09,"w":16.785000000000004,"clr":-1,"A":"left","R":[{"T":"enter%20more%20than%20the%20amount%20on%20line%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.934,"y":8.09,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"2a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.59,"w":15.161000000000005,"clr":-1,"A":"left","R":[{"T":"Capital%20gain%20included%20on%20line%202a%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":11.153,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.165,"w":28.468000000000004,"clr":-1,"A":"left","R":[{"T":"Excess%2C%20if%20any%2C%20of%20net%20long-term%20capital%20gain%20over%20net%20short-term%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.84,"w":5.3149999999999995,"clr":-1,"A":"left","R":[{"T":"capital%20loss%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":20.377,"y":11.84,"w":22.660999999999994,"clr":-1,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.106,"y":11.84,"w":1.167,"clr":-1,"A":"left","R":[{"T":"2b","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.415,"y":13.34,"w":0.5740000000000001,"clr":-1,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.34,"w":14.337000000000003,"clr":-1,"A":"left","R":[{"T":"Unrecaptured%20section%201250%20gain","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":34.815,"y":13.34,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.134,"y":13.34,"w":1.1300000000000001,"clr":-1,"A":"left","R":[{"T":"2c","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.84,"w":12.281000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%202a%20from%20line%201%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":14.84,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":14.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"3%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":16.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.34,"w":21.599999999999998,"clr":-1,"A":"left","R":[{"T":"Figure%20the%20tax%20on%20the%20amount%20on%20line%203%20using%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.302,"y":16.34,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2013","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":47.742,"y":16.34,"w":12.260000000000003,"clr":-1,"A":"left","R":[{"T":"%20tax%20rates%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.815,"y":16.34,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":16.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"4%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":17.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.84,"w":20.076999999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20used%20Schedule%20J%20to%20figure%20your%20tax%20for%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.671,"w":27.567999999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%202012%2C%20enter%20the%20amount%20from%20your%202012%20Schedule%20J%2C%20line%2011.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.422,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.093,"y":19.421,"w":32.479,"clr":-1,"A":"left","R":[{"T":"2011%20but%20not%202012%2C%20enter%20the%20amount%20from%20your%202011%20Schedule%20J%2C%20line%2015.","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.078,"w":28.200000000000014,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%202010%20but%20not%202011%20or%202012%2C%20enter%20the%20amount%20from%20your%202010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.09,"y":20.672,"w":8.466000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20J%2C%20line%203.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.34,"w":20.985000000000007,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20the%20taxable%20income%20from%20your%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":41.627,"y":21.34,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2010","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":44.893,"y":21.34,"w":7.485000000000003,"clr":-1,"A":"left","R":[{"T":"%20Form%201040%2C%20line%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":10.887,"y":22.028,"w":29.34600000000001,"clr":-1,"A":"left","R":[{"T":"43%3B%20Form%201040A%2C%20line%2027%3B%20Form%201040EZ%2C%20line%206%3B%20Form%201040NR%2C%20line%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":10.891,"y":22.715,"w":28.875,"clr":-1,"A":"left","R":[{"T":"41%3B%20or%20Form%201040NR-EZ%2C%20line%2014.%20If%20zero%20or%20less%2C%20see%20instructions.%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":56.351,"y":21.28,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,18,0,0]}]},{"oc":"#221f1f","x":60.578,"y":20.09,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"5%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":23.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.84,"w":9.819,"clr":-1,"A":"left","R":[{"T":"Divide%20the%20amount%20on%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":26.078,"y":23.84,"w":3.369,"clr":-1,"A":"left","R":[{"T":"line%202a%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.29,"y":23.84,"w":3.039,"clr":-1,"A":"left","R":[{"T":"by%203.0%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.877,"y":23.84,"w":11.997,"clr":-1,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":23.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"6%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":25.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":25.34,"w":21.262999999999998,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%205%20and%206.%20If%20zero%20or%20less%2C%20enter%20-0-%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.127,"y":25.34,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.578,"y":25.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"7%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":26.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.84,"w":21.599999999999998,"clr":-1,"A":"left","R":[{"T":"Figure%20the%20tax%20on%20the%20amount%20on%20line%207%20using%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":44.302,"y":26.84,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":48.172,"y":26.84,"w":11.982000000000001,"clr":-1,"A":"left","R":[{"T":"tax%20rates%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.815,"y":26.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":80.378,"y":26.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"8%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":7.555,"y":28.34,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.34,"w":20.076999999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20used%20Schedule%20J%20to%20figure%20your%20tax%20for%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.09,"w":27.567999999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%202012%2C%20enter%20the%20amount%20from%20your%202012%20Schedule%20J%2C%20line%2015.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.84,"w":0.778,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.093,"y":29.84,"w":32.201,"clr":-1,"A":"left","R":[{"T":"2011%20but%20not%202012%2C%20enter%20the%20amount%20from%20your%202011%20Schedule%20J%2C%20line%203.%20","S":-1,"TS":[0,10.83,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.528,"w":20.985000000000007,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20the%20taxable%20income%20from%20your%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":41.627,"y":30.528,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2011","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":44.893,"y":30.528,"w":7.485000000000003,"clr":-1,"A":"left","R":[{"T":"%20Form%201040%2C%20line%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":10.887,"y":31.122,"w":29.34600000000001,"clr":-1,"A":"left","R":[{"T":"43%3B%20Form%201040A%2C%20line%2027%3B%20Form%201040EZ%2C%20line%206%3B%20Form%201040NR%2C%20line%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":10.891,"y":31.716,"w":28.875,"clr":-1,"A":"left","R":[{"T":"41%3B%20or%20Form%201040NR-EZ%2C%20line%2014.%20If%20zero%20or%20less%2C%20see%20instructions.%20","S":-1,"TS":[0,11.46,0,0]}]},{"oc":"#221f1f","x":56.351,"y":31.081,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,21,0,0]}]},{"oc":"#221f1f","x":60.578,"y":29.84,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"9%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":32.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.84,"w":12.968000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":32.84,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":32.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"10%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":34.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.34,"w":31.118999999999996,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%209%20and%2010.%20If%20less%20than%20zero%2C%20enter%20as%20a%20negative%20amount%20","S":-1,"TS":[0,11.37,0,0]}]},{"oc":"#221f1f","x":60.148,"y":34.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"11%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.84,"w":22.156,"clr":-1,"A":"left","R":[{"T":"Figure%20the%20tax%20on%20the%20amount%20on%20line%2011%20using%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.162,"y":35.84,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.032,"y":35.84,"w":11.704,"clr":-1,"A":"left","R":[{"T":"tax%20rates%20(see%20instructions)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.815,"y":35.84,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":35.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":36.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.84,"w":26.820999999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20used%20Schedule%20J%20to%20figure%20your%20tax%20for%202012%2C%20enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":37.528,"w":28.528,"clr":-1,"A":"left","R":[{"T":"amount%20from%20your%202012%20Schedule%20J%2C%20line%203.%20Otherwise%2C%20enter%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":38.215,"w":11.669,"clr":-1,"A":"left","R":[{"T":"taxable%20income%20from%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":31.29,"y":38.215,"w":2.224,"clr":-1,"A":"left","R":[{"T":"2012","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":35.318,"y":38.215,"w":11.765000000000006,"clr":-1,"A":"left","R":[{"T":"%20Form%201040%2C%20line%2043%3B%20Form%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.888,"y":38.902,"w":27.919000000000008,"clr":-1,"A":"left","R":[{"T":"1040A%2C%20line%2027%3B%20Form%201040EZ%2C%20line%206%3B%20Form%201040NR%2C%20line%2041%3B%20or%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.882,"y":39.59,"w":25.744000000000007,"clr":-1,"A":"left","R":[{"T":"Form%201040NR-EZ%2C%20line%2014.%20If%20zero%20or%20less%2C%20see%20instructions%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.308,"y":39.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":53.37,"y":39.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":39.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.09,"w":12.968000000000002,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%206%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":32.752,"y":41.09,"w":14.663,"clr":-1,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":60.148,"y":41.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":42.59,"w":31.674999999999997,"clr":-1,"A":"left","R":[{"T":"Combine%20lines%2013%20and%2014.%20If%20less%20than%20zero%2C%20enter%20as%20a%20negative%20amount%20","S":-1,"TS":[0,11.19,0,0]}]},{"oc":"#221f1f","x":60.148,"y":42.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"15%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":44.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":44.09,"w":22.156,"clr":-1,"A":"left","R":[{"T":"Figure%20the%20tax%20on%20the%20amount%20on%20line%2015%20using%20the%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":45.162,"y":44.09,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2012%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":49.032,"y":44.09,"w":11.982000000000001,"clr":-1,"A":"left","R":[{"T":"tax%20rates%20(see%20instructions)%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":67.815,"y":44.09,"w":6.665,"clr":-1,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":44.09,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":45.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"17%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":45.59,"w":11.673000000000004,"clr":-1,"A":"left","R":[{"T":"Add%20lines%204%2C%208%2C%2012%2C%20and%2016%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":30.69,"y":45.59,"w":30.658999999999985,"clr":-1,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":45.59,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":46.358,"w":33.538,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":62.738,"y":46.376,"w":7.688000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2025513Y%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":82.35,"y":46.376,"w":13.911000000000007,"clr":-1,"A":"left","R":[{"T":"Schedule%20J%20(Form%201040)%202013%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8880,"AM":1024,"x":6.229,"y":5.752,"w":68.889,"h":0.893,"TU":"Name(s) shown on return"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8881,"AM":1024,"x":76.247,"y":5.836,"w":18.989,"h":0.854,"TU":"Social security number (SSN)"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":8882,"AM":1024,"x":83.016,"y":6.788,"w":12.189,"h":0.833,"TU":"Income from Line 43"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":8883,"AM":0,"x":83.087,"y":8.03,"w":12.099,"h":0.893,"TU":"Line 2a. Enter your elected farm income (see instructions). Do not entere more than the amount on line 1."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2BX","EN":0},"TI":8884,"AM":0,"x":63.236,"y":12.008,"w":12.148,"h":0.833,"TU":"Line 2b. Excess, if any, of net long-term capital gain over net short-term capital loss."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2CX","EN":0},"TI":8885,"AM":0,"x":63.236,"y":13.508,"w":12.148,"h":0.833,"TU":"Line 2c. Unrecaptured section 1250 gain."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":8886,"AM":1024,"x":82.935,"y":14.869,"w":12.2,"h":0.866},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":8887,"AM":0,"x":83.023,"y":16.362,"w":12.099,"h":0.873,"TU":"Line 4. Figure the tax on the amount on line 3 using the 2013 tax rates (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":8888,"AM":0,"x":63.394,"y":20.083,"w":12.058,"h":0.902,"TU":"Line 5. If you used Schedule J to figure your tax:"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":8889,"AM":1024,"x":63.285,"y":23.869,"w":12.05,"h":0.859},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":8890,"AM":1024,"x":63.236,"y":25.508,"w":12.148,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":8891,"AM":0,"x":83.16,"y":26.897,"w":11.901,"h":0.838,"TU":"Line 8. Figure the tax on the amount on line 7, using the 2010 tax rates (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":8892,"AM":0,"x":63.319,"y":29.915,"w":12.058,"h":0.833,"TU":"Line 9. If you used Schedule J to figure your tax for:"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":8893,"AM":1024,"x":63.36,"y":32.882,"w":12.05,"h":0.846},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":8894,"AM":1024,"x":63.236,"y":34.508,"w":12.148,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":8895,"AM":0,"x":83.01,"y":35.844,"w":12.05,"h":0.891,"TU":"Line 12. Figure the tax on the amount on line 11 using the 2011 tax rates (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":8896,"AM":0,"x":63.319,"y":39.612,"w":12.058,"h":0.873,"TU":"Line 13. If you used Schedule J to figure your tax for 2012, enter the amount from your 2012 Schedule J, line 3. Otherwise, enter the taxable income from your 2012 Form 1040, line 43; Form 1040A, line 27; Form 1040EZ line 6; Form 1040NR, line 41; or Form 1040NR-EZ, line 14. If zero or less, see instructions."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":8897,"AM":1024,"x":63.161,"y":41.23,"w":12.148,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":8898,"AM":1024,"x":63.236,"y":42.758,"w":12.148,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":8899,"AM":0,"x":83.085,"y":44.191,"w":11.976,"h":0.833,"TU":"Line 16. Figure the tax on the amount on line 15 using the 2012 tax rates (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":8900,"AM":1024,"x":83.098,"y":45.619,"w":12.024,"h":0.851}],"Boxsets":[]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":75.574},{"oc":"#221f1f","x":81.634,"y":3.001,"w":1.5,"l":17.411},{"oc":"#221f1f","x":82.872,"y":3.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":95.247,"y":3.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":8.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":79.159,"y":3.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":8.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":63.072,"y":14.251,"w":0.75,"l":12.461},{"oc":"#221f1f","x":75.447,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":14.251,"w":0.75,"l":3.798},{"oc":"#221f1f","x":59.359,"y":19.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":63.072,"y":19.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":75.447,"y":19.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":82.872,"y":23.251,"w":1.125,"l":12.461},{"oc":"#221f1f","x":95.247,"y":23.251,"w":1.125,"l":3.798},{"oc":"#221f1f","x":79.159,"y":24.751,"w":0.75,"l":19.886},{"oc":"#221f1f","x":79.159,"y":27.751,"w":1.5,"l":19.886},{"oc":"#221f1f","x":6.147,"y":27.751,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":82.915,"y":2.985,"w":0.75,"l":0.797},{"oc":"#221f1f","x":79.202,"y":2.985,"w":0.75,"l":0.797},{"oc":"#221f1f","x":95.29,"y":2.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":4.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":59.402,"y":4.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":75.49,"y":4.485,"w":0.75,"l":3.031},{"oc":"#221f1f","x":63.115,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":7.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":82.915,"y":3.735,"w":0.75,"l":18.781},{"oc":"#221f1f","x":79.202,"y":3.735,"w":0.75,"l":18.781},{"oc":"#221f1f","x":95.29,"y":3.735,"w":0.75,"l":18.781},{"oc":"#221f1f","x":63.115,"y":8.235,"w":0.75,"l":5.281},{"oc":"#221f1f","x":59.402,"y":8.235,"w":0.75,"l":5.281},{"oc":"#221f1f","x":75.49,"y":8.235,"w":0.75,"l":5.281},{"oc":"#221f1f","x":63.115,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":75.49,"y":13.485,"w":0.75,"l":0.781},{"oc":"#221f1f","x":63.115,"y":14.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":59.402,"y":14.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":75.49,"y":14.235,"w":0.75,"l":4.531},{"oc":"#221f1f","x":63.115,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":75.49,"y":18.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":79.202,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":95.29,"y":22.485,"w":0.75,"l":0.789},{"oc":"#221f1f","x":82.915,"y":23.235,"w":0.75,"l":1.547},{"oc":"#221f1f","x":79.202,"y":23.235,"w":0.75,"l":1.547},{"oc":"#221f1f","x":95.29,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":95.29,"y":23.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":79.202,"y":24.735,"w":0.75,"l":3.047}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#bfc0c4","x":59.402,"y":4.501,"w":3.713,"h":3,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":3.751,"w":3.713,"h":18.75,"clr":-1},{"oc":"#bfc0c4","x":59.402,"y":8.251,"w":3.713,"h":5.25,"clr":-1},{"oc":"#bfc0c4","x":59.402,"y":14.251,"w":3.713,"h":4.5,"clr":-1},{"oc":"#bfc0c4","x":79.202,"y":24.751,"w":19.8,"h":3,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":2.001,"w":13.117000000000008,"clr":-1,"A":"left","R":[{"T":"Schedule%20J%20(Form%201040)%202013","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.7,"y":1.947,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.797,"y":1.947,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.694,"y":2.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":2.84,"w":9.041000000000004,"clr":-1,"A":"left","R":[{"T":"Amount%20from%20line%2017","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":24.502,"y":2.84,"w":38.50600000000002,"clr":-1,"A":"left","R":[{"T":"..........................","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":79.948,"y":2.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":4.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":4.34,"w":20.076999999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20used%20Schedule%20J%20to%20figure%20your%20tax%20for%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":5.09,"w":27.567999999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%202012%2C%20enter%20the%20amount%20from%20your%202012%20Schedule%20J%2C%20line%2012.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":5.903,"w":30.052,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%202011%20but%20not%202012%2C%20enter%20the%20amount%20from%20your%202011%20Schedule%20J%2C%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":12.09,"y":6.59,"w":3.483,"clr":-1,"A":"left","R":[{"T":"line%2016.%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.89,"y":7.4030000000000005,"w":28.200000000000014,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%202010%20but%20not%202011%20or%202012%2C%20enter%20the%20amount%20from%20your%202010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.09,"y":8.09,"w":8.466000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20J%2C%20line%204.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":8.813,"w":15.539000000000005,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20the%20tax%20from%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.603,"y":8.813,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2010%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.754,"y":8.813,"w":9.227000000000004,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2044%3B*%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":9.501,"w":28.58600000000001,"clr":-1,"A":"left","R":[{"T":"Form%201040A%2C%20line%2028%3B*%20Form%201040EZ%2C%20line%2011%3B%20Form%201040NR%2C%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.883,"y":10.188,"w":15.098000000000006,"clr":-1,"A":"left","R":[{"T":"42%3B*%20or%20Form%201040NR-EZ%2C%20line%2015.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.677,"y":9.016,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,21.8,0,0]}]},{"oc":"#221f1f","x":60.148,"y":7.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":11.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.09,"w":20.076999999999998,"clr":-1,"A":"left","R":[{"T":"If%20you%20used%20Schedule%20J%20to%20figure%20your%20tax%20for%3A%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":11.84,"w":27.567999999999998,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%202012%2C%20enter%20the%20amount%20from%20your%202012%20Schedule%20J%2C%20line%2016.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":12.653,"w":25.347,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%202011%20but%20not%202012%2C%20enter%20the%20amount%20from%20your%202011%20%20%20%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.093,"y":13.34,"w":8.466000000000003,"clr":-1,"A":"left","R":[{"T":"Schedule%20J%2C%20line%204.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":13.975,"w":15.539000000000005,"clr":-1,"A":"left","R":[{"T":"Otherwise%2C%20enter%20the%20tax%20from%20your%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":36.606,"y":13.975,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2011%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.757,"y":13.975,"w":9.227000000000004,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2044%3B*%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":14.662,"w":28.58600000000001,"clr":-1,"A":"left","R":[{"T":"Form%201040A%2C%20line%2028%3B*%20Form%201040EZ%2C%20line%2010%3B%20Form%201040NR%2C%20line%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.886,"y":15.349,"w":15.098000000000006,"clr":-1,"A":"left","R":[{"T":"42%3B*%20or%20Form%201040NR-EZ%2C%20line%2015.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":56.677,"y":14.538,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,24,0,0]}]},{"oc":"#221f1f","x":60.148,"y":13.34,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":16.528,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.528,"w":30.490000000000002,"clr":-1,"A":"left","R":[{"T":"If%20you%20used%20Schedule%20J%20to%20figure%20your%20tax%20for%202012%2C%20enter%20the%20amount%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.215,"w":28.841,"clr":-1,"A":"left","R":[{"T":"from%20your%202012%20Schedule%20J%2C%20line%204.%20Otherwise%2C%20enter%20the%20tax%20from%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.884,"y":17.902,"w":2.241,"clr":-1,"A":"left","R":[{"T":"your%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":14.195,"y":17.902,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"2012%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":17.889,"y":17.902,"w":25.716000000000008,"clr":-1,"A":"left","R":[{"T":"Form%201040%2C%20line%2044%3B*%20Form%201040A%2C%20line%2028%3B*%20Form%201040EZ%2C%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":10.879,"y":18.59,"w":26.91700000000001,"clr":-1,"A":"left","R":[{"T":"line%2010%3B%20Form%201040NR%2C%20line%2042%3B*%20or%20Form%201040NR-EZ%2C%20line%2015%20","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":51.304,"y":18.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":53.367,"y":18.59,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"oc":"#221f1f","x":60.148,"y":18.59,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"21%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.153,"w":2.833,"clr":-1,"A":"left","R":[{"T":"*Only%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":15.031,"y":20.153,"w":42.63899999999999,"clr":-1,"A":"left","R":[{"T":"include%20tax%20reported%20on%20this%20line%20that%20is%20imposed%20by%20section%201%20of%20the%20Internal%20Revenue%20Code%20(see%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":10.891,"y":20.84,"w":6.001000000000001,"clr":-1,"A":"left","R":[{"T":"instructions).%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":18.874,"y":20.84,"w":3.4639999999999995,"clr":-1,"A":"left","R":[{"T":"Do%20not%20","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":23.482,"y":20.84,"w":22.527000000000005,"clr":-1,"A":"left","R":[{"T":"include%20alternative%20minimum%20tax%20from%20Form%201040A.","S":-1,"TS":[0,10.74,0,0]}]},{"oc":"#221f1f","x":6.694,"y":22.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":22.34,"w":10.949,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2019%20through%2021%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":28.628,"y":22.34,"w":31.991999999999983,"clr":-1,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":79.948,"y":22.34,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.694,"y":23.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":10.89,"y":23.84,"w":2.278,"clr":-1,"A":"left","R":[{"T":"Tax.%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":14.061,"y":23.84,"w":45.86899999999998,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2022%20from%20line%2018.%20Also%20include%20this%20amount%20on%20Form%201040%2C%20line%2044%3B%20or%20Form%201040NR%2C%20line%2042%20","S":-1,"TS":[0,11.1,0,0]}]},{"oc":"#221f1f","x":79.948,"y":23.84,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"23%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":25.403,"w":4.278,"clr":-1,"A":"left","R":[{"T":"Caution.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":12.673,"y":25.403,"w":41.11999999999998,"clr":-1,"A":"left","R":[{"T":"Your%20tax%20may%20be%20less%20if%20you%20figure%20it%20using%20the%202013%20Tax%20Table%2C%20Tax%20Computation%20Worksheet%2C%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.932,"y":26.09,"w":46.267999999999965,"clr":-1,"A":"left","R":[{"T":"Qualified%20Dividends%20and%20Capital%20Gain%20Tax%20Worksheet%2C%20or%20Schedule%20D%20Tax%20Worksheet.%20Attach%20Schedule%20J%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.926,"y":26.777,"w":18.150000000000002,"clr":-1,"A":"left","R":[{"T":"only%20if%20you%20are%20using%20it%20to%20figure%20your%20tax.%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":82.35,"y":27.626,"w":13.911000000000007,"clr":-1,"A":"left","R":[{"T":"Schedule%20J%20(Form%201040)%202013%20","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":8901,"AM":1024,"x":24.856,"y":2.015,"w":38.289,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":8902,"AM":1024,"x":64.081,"y":2.015,"w":15.155,"h":0.85},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N18","EN":0},"TI":8903,"AM":1024,"x":83.016,"y":3.052,"w":12.189,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":8904,"AM":0,"x":63.285,"y":7.411,"w":12.125,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":8905,"AM":0,"x":63.36,"y":13.377,"w":12.05,"h":0.858},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":8906,"AM":0,"x":63.36,"y":18.587,"w":12.05,"h":0.891},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":8907,"AM":1024,"x":83.01,"y":22.325,"w":12.2,"h":0.902},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":8908,"AM":1024,"x":83.098,"y":23.897,"w":12.174,"h":0.838}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Title":"2013 Schedule J (Form 1040)","Author":"SE:W:CAR:MP","Subject":"Income Averaging for Farmers and Fishermen","Keywords":"Fillable","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131008172105-07'00'","ModDate":"D:20140106135453-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":5.251,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":7.635,"y":5.251,"w":1.5,"l":22.981,"oc":"#221f1f"},{"x":30.57,"y":3.001,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.57,"y":5.251,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.235,"y":6.751,"w":0.75,"l":25.231,"oc":"#221f1f"},{"x":27.435,"y":6.751,"w":0.75,"l":8.581,"oc":"#221f1f"},{"x":28.785,"y":7.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":7.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":7.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":9.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":9.001,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":9.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":9.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":12.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":12.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":12.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":14.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":14.251,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":14.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":15.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":15.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":15.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":17.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":21.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":17.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":21.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":24.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":24.751,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":24.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":26.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":26.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":26.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":27.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":27.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":30.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":30.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":27.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":30.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":33.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":33.751,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":33.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":35.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":35.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":35.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":36.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":36.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":40.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":40.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":40.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":36.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":42.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":42.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":42.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":43.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":43.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":43.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":45.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":45.001,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":45.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":46.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":46.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":46.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":2.235,"y":46.501,"w":1.5,"l":17.131,"oc":"#221f1f"},{"x":19.335,"y":46.501,"w":1.5,"l":10.381,"oc":"#221f1f"},{"x":29.685,"y":46.501,"w":1.5,"l":6.331,"oc":"#221f1f"}],"VLines":[{"x":7.651,"y":2.235,"w":1.5,"l":3.047,"oc":"#221f1f"},{"x":30.601,"y":2.235,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":2.985,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":27.451,"y":5.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.151,"y":6.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":6.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":6.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":7.485,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":7.485,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.651,"y":7.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":8.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":8.985,"w":0.75,"l":6.031,"oc":"#221f1f"},{"x":28.801,"y":8.985,"w":0.75,"l":6.031,"oc":"#221f1f"},{"x":34.651,"y":8.985,"w":0.75,"l":6.031,"oc":"#221f1f"},{"x":22.951,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":13.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":21.601,"y":13.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":27.451,"y":13.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":14.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.801,"y":15.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":34.651,"y":15.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":16.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":18.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.951,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":20.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":17.236,"w":0.75,"l":9.781,"oc":"#221f1f"},{"x":28.801,"y":17.236,"w":0.75,"l":9.781,"oc":"#221f1f"},{"x":34.651,"y":17.236,"w":0.75,"l":9.781,"oc":"#221f1f"},{"x":22.951,"y":20.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":21.601,"y":20.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":27.451,"y":20.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":22.951,"y":23.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":21.601,"y":23.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":27.451,"y":23.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":22.951,"y":25.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":25.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":25.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":26.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.951,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":29.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":27.735,"w":0.75,"l":8.281,"oc":"#221f1f"},{"x":28.801,"y":27.735,"w":0.75,"l":8.281,"oc":"#221f1f"},{"x":34.651,"y":27.735,"w":0.75,"l":8.281,"oc":"#221f1f"},{"x":22.951,"y":30.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":21.601,"y":30.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":27.451,"y":30.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.951,"y":32.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":21.601,"y":32.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":27.451,"y":32.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":22.951,"y":34.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":34.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":34.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":35.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":35.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":35.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":27.451,"y":38.235,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.951,"y":39.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":39.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":39.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":36.735,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":28.801,"y":36.735,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":34.651,"y":36.735,"w":0.75,"l":7.531,"oc":"#221f1f"},{"x":22.951,"y":41.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":41.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":41.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":42.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":42.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":42.735,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":43.485,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":43.485,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.651,"y":44.236,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":44.985,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":28.801,"y":44.985,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":34.651,"y":44.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":45.735,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":28.801,"y":9.001,"w":1.35,"h":6,"oc":"#bfc0c4"},{"x":28.801,"y":17.251,"w":1.35,"h":9.75,"oc":"#bfc0c4"},{"x":21.601,"y":21.001,"w":1.35,"h":3,"oc":"#bfc0c4"},{"x":28.801,"y":27.751,"w":1.35,"h":8.25,"oc":"#bfc0c4"},{"x":21.601,"y":30.751,"w":1.35,"h":2.25,"oc":"#bfc0c4"},{"x":28.801,"y":36.751,"w":1.35,"h":6.75,"oc":"#bfc0c4"}],"Texts":[{"x":2.001,"y":2.01,"w":6.892,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"SCHEDULE J ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":2.697,"w":5.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Form 1040) ","S":-1,"TS":[0,13,0,0]}]},{"x":2.017,"y":3.8200000000000003,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":2.017,"y":4.32,"w":13.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99) ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":14.711,"y":2.101,"w":9.82,"oc":"#221f1f","sw":0.390625,"A":"left","R":[{"T":"Income Averaging for ","S":-1,"TS":[2,17,0,0]}]},{"x":14.3,"y":2.976,"w":10.46,"oc":"#221f1f","sw":0.390625,"A":"left","R":[{"T":"Farmers and Fishermen","S":-1,"TS":[2,17,0,0]}]},{"x":14.158,"y":3.6559999999999997,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":14.533,"y":3.7489999999999997,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":1,"TS":[0,8,0,0]}]},{"x":14.62,"y":3.7489999999999997,"w":17.948,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attach to Form 1040 or Form 1040NR.","S":-1,"TS":[0,11,0,0]}]},{"x":23.594,"y":3.7489999999999997,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":23.767,"y":3.6559999999999997,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,9,0,0]}]},{"x":8.238,"y":4.216,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":8.613,"y":4.31,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":1,"TS":[0,8,0,0]}]},{"x":8.7,"y":4.31,"w":30.496,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Information about Schedule J and its separate instructions is at ","S":-1,"TS":[0,11,0,0]}]},{"x":23.947,"y":4.31,"w":11.132,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"www.irs.gov/schedulej.","S":-1,"TS":[0,11,0,0]}]},{"x":31.02,"y":1.9729999999999999,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.426,"y":3.393,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":33.006,"y":3.393,"w":1.336,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"x":31.101,"y":3.9189999999999996,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.101,"y":4.366,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":34.002,"y":4.366,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":5.001,"w":11.483,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name(s) shown on return ","S":2,"TS":[0,10,0,0]}]},{"x":27.451,"y":5.001,"w":14.129,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Social security number (SSN) ","S":2,"TS":[0,10,0,0]}]},{"x":2.588,"y":6.59,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":6.59,"w":15.985,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the taxable income from your ","S":3,"TS":[0,12,0,0]}]},{"x":12.792,"y":6.59,"w":2.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2013","S":3,"TS":[0,12,0,0]}]},{"x":14.043,"y":6.59,"w":20.342,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Form 1040, line 43, or Form 1040NR, line 41 ","S":3,"TS":[0,12,0,0]}]},{"x":26.001,"y":6.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":26.751,"y":6.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":27.501,"y":6.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":28.101,"y":6.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":6.59,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":8.09,"w":1.13,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2a","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":8.09,"w":4.871,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter your ","S":3,"TS":[0,12,0,0]}]},{"x":6.541,"y":8.09,"w":10.069,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"elected farm income ","S":3,"TS":[0,12,0,0]}]},{"x":12.205,"y":8.09,"w":8.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(see instructions). ","S":3,"TS":[0,12,0,0]}]},{"x":16.768,"y":8.09,"w":3.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not ","S":3,"TS":[0,12,0,0]}]},{"x":18.716,"y":8.09,"w":16.785,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"enter more than the amount on line 1 ","S":3,"TS":[0,12,0,0]}]},{"x":28.908,"y":8.09,"w":1.13,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2a","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":9.59,"w":15.161,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Capital gain included on line 2a:","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":11.153,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"b ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":11.84,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":11.165,"w":28.468,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Excess, if any, of net long-term capital gain over net short-term ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":11.84,"w":5.315,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"capital loss ","S":3,"TS":[0,12,0,0]}]},{"x":7.251,"y":11.84,"w":22.661,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................","S":3,"TS":[0,12,0,0]}]},{"x":21.698,"y":11.84,"w":1.167,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2b","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":13.34,"w":0.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"c","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":13.34,"w":14.337,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Unrecaptured section 1250 gain","S":3,"TS":[0,12,0,0]}]},{"x":12.501,"y":13.34,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":21.708,"y":13.34,"w":1.13,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2c","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":14.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":14.84,"w":12.281,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 2a from line 1 ","S":3,"TS":[0,12,0,0]}]},{"x":11.001,"y":14.84,"w":30.659,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":14.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":16.34,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":16.34,"w":21.6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Figure the tax on the amount on line 3 using the ","S":3,"TS":[0,12,0,0]}]},{"x":15.951,"y":16.34,"w":2.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2013","S":3,"TS":[0,12,0,0]}]},{"x":17.202,"y":16.34,"w":12.26,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" tax rates (see instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":24.501,"y":16.34,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":16.34,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"4 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":17.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":17.84,"w":20.077,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you used Schedule J to figure your tax for: ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":18.671,"w":27.568,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• 2012, enter the amount from your 2012 Schedule J, line 11. ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":19.422,"w":0.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• ","S":3,"TS":[0,12,0,0]}]},{"x":4.238,"y":19.421,"w":32.479,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2011 but not 2012, enter the amount from your 2011 Schedule J, line 15.","S":-1,"TS":[0,10.74,0,0]}]},{"x":19.95,"y":19.421,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,10.92,0,0]}]},{"x":3.801,"y":20.078,"w":28.2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• 2010 but not 2011 or 2012, enter the amount from your 2010 ","S":3,"TS":[0,12,0,0]}]},{"x":4.237,"y":20.672,"w":8.466,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule J, line 3. ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":21.34,"w":20.985,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Otherwise, enter the taxable income from your ","S":-1,"TS":[0,11.46,0,0]}]},{"x":14.978,"y":21.34,"w":2.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2010","S":-1,"TS":[0,11.46,0,0]}]},{"x":16.166,"y":21.34,"w":7.485,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Form 1040, line ","S":-1,"TS":[0,11.46,0,0]}]},{"x":3.8,"y":22.028,"w":29.346,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"43; Form 1040A, line 27; Form 1040EZ, line 6; Form 1040NR, line ","S":-1,"TS":[0,11.46,0,0]}]},{"x":3.801,"y":22.715,"w":28.875,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"41; or Form 1040NR-EZ, line 14. If zero or less, see instructions. ","S":-1,"TS":[0,11.46,0,0]}]},{"x":20.332,"y":21.28,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[3,18,0,0]}]},{"x":21.869,"y":20.09,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":23.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":23.84,"w":9.819,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Divide the amount on ","S":3,"TS":[0,12,0,0]}]},{"x":9.324,"y":23.84,"w":3.369,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 2a ","S":3,"TS":[0,12,0,0]}]},{"x":11.219,"y":23.84,"w":3.039,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"by 3.0 ","S":3,"TS":[0,12,0,0]}]},{"x":13.251,"y":23.84,"w":11.997,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":23.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":25.34,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":25.34,"w":21.263,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine lines 5 and 6. If zero or less, enter -0- ","S":3,"TS":[0,12,0,0]}]},{"x":16.251,"y":25.34,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":21.869,"y":25.34,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":26.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":26.84,"w":21.6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Figure the tax on the amount on line 7 using the ","S":3,"TS":[0,12,0,0]}]},{"x":15.951,"y":26.84,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2010 ","S":3,"TS":[0,12,0,0]}]},{"x":17.358,"y":26.84,"w":11.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"tax rates (see instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":24.501,"y":26.84,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":29.069,"y":26.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8 ","S":3,"TS":[0,12,0,0]}]},{"x":2.588,"y":28.34,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":28.34,"w":20.077,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you used Schedule J to figure your tax for: ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":29.09,"w":27.568,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• 2012, enter the amount from your 2012 Schedule J, line 15. ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":29.84,"w":0.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• ","S":3,"TS":[0,12,0,0]}]},{"x":4.238,"y":29.84,"w":32.201,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2011 but not 2012, enter the amount from your 2011 Schedule J, line 3. ","S":-1,"TS":[0,10.83,0,0]}]},{"x":3.801,"y":30.528,"w":20.985,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Otherwise, enter the taxable income from your ","S":-1,"TS":[0,11.46,0,0]}]},{"x":14.978,"y":30.528,"w":2.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2011","S":-1,"TS":[0,11.46,0,0]}]},{"x":16.166,"y":30.528,"w":7.485,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Form 1040, line ","S":-1,"TS":[0,11.46,0,0]}]},{"x":3.8,"y":31.122,"w":29.346,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"43; Form 1040A, line 27; Form 1040EZ, line 6; Form 1040NR, line ","S":-1,"TS":[0,11.46,0,0]}]},{"x":3.801,"y":31.716,"w":28.875,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"41; or Form 1040NR-EZ, line 14. If zero or less, see instructions. ","S":-1,"TS":[0,11.46,0,0]}]},{"x":20.332,"y":31.081,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[3,21,0,0]}]},{"x":21.869,"y":29.84,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":32.84,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":32.84,"w":12.968,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount from line 6 ","S":3,"TS":[0,12,0,0]}]},{"x":11.751,"y":32.84,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":21.713,"y":32.84,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":34.34,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":34.34,"w":31.119,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine lines 9 and 10. If less than zero, enter as a negative amount ","S":-1,"TS":[0,11.37,0,0]}]},{"x":21.713,"y":34.34,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":35.84,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":35.84,"w":22.156,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Figure the tax on the amount on line 11 using the ","S":3,"TS":[0,12,0,0]}]},{"x":16.264,"y":35.84,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2011 ","S":3,"TS":[0,12,0,0]}]},{"x":17.671,"y":35.84,"w":11.704,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"tax rates (see instructions)","S":3,"TS":[0,12,0,0]}]},{"x":24.501,"y":35.84,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":35.84,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":36.84,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":36.84,"w":26.821,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you used Schedule J to figure your tax for 2012, enter the ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":37.528,"w":28.528,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"amount from your 2012 Schedule J, line 3. Otherwise, enter the ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":38.215,"w":11.669,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"taxable income from your ","S":3,"TS":[0,12,0,0]}]},{"x":11.219,"y":38.215,"w":2.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2012","S":3,"TS":[0,12,0,0]}]},{"x":12.684,"y":38.215,"w":11.765,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Form 1040, line 43; Form ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":38.902,"w":27.919,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1040A, line 27; Form 1040EZ, line 6; Form 1040NR, line 41; or ","S":3,"TS":[0,12,0,0]}]},{"x":3.798,"y":39.59,"w":25.744,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040NR-EZ, line 14. If zero or less, see instructions ","S":3,"TS":[0,12,0,0]}]},{"x":18.498,"y":39.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":19.248,"y":39.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":3,"TS":[0,12,0,0]}]},{"x":21.713,"y":39.59,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":41.09,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":41.09,"w":12.968,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount from line 6 ","S":3,"TS":[0,12,0,0]}]},{"x":11.751,"y":41.09,"w":14.663,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...........","S":3,"TS":[0,12,0,0]}]},{"x":21.713,"y":41.09,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":42.59,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":42.59,"w":31.675,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Combine lines 13 and 14. If less than zero, enter as a negative amount ","S":-1,"TS":[0,11.19,0,0]}]},{"x":21.713,"y":42.59,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":44.09,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":44.09,"w":22.156,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Figure the tax on the amount on line 15 using the ","S":3,"TS":[0,12,0,0]}]},{"x":16.264,"y":44.09,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2012 ","S":3,"TS":[0,12,0,0]}]},{"x":17.671,"y":44.09,"w":11.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"tax rates (see instructions) ","S":3,"TS":[0,12,0,0]}]},{"x":24.501,"y":44.09,"w":6.665,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":44.09,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":45.59,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":45.59,"w":11.673,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 4, 8, 12, and 16 ","S":3,"TS":[0,12,0,0]}]},{"x":11.001,"y":45.59,"w":30.659,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......................","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":45.59,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":46.358,"w":33.538,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see your tax return instructions. ","S":-1,"TS":[0,11,0,0]}]},{"x":22.655,"y":46.376,"w":7.688,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 25513Y ","S":2,"TS":[0,10,0,0]}]},{"x":29.786,"y":46.376,"w":13.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule J (Form 1040) 2013 ","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1139,"AM":1024,"TU":"Name(s) shown on return","x":2.265,"y":5.752,"w":25.05,"h":0.893},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1140,"AM":1024,"TU":"Social security number (SSN)","x":27.726,"y":5.836,"w":6.905,"h":0.854},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L1","EN":0},"TI":1141,"AM":1024,"TU":"Income from Line 43","x":30.188,"y":6.788,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2","EN":0},"TI":1142,"AM":0,"TU":"Line 2a. Enter your elected farm income (see instructions). Do not entere more than the amount on line 1.","x":30.214,"y":8.03,"w":4.4,"h":0.893},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2BX","EN":0},"TI":1143,"AM":0,"TU":"Line 2b. Excess, if any, of net long-term capital gain over net short-term capital loss.","x":22.995,"y":12.008,"w":4.418,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L2CX","EN":0},"TI":1144,"AM":0,"TU":"Line 2c. Unrecaptured section 1250 gain.","x":22.995,"y":13.508,"w":4.418,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L3","EN":0},"TI":1145,"AM":1024,"x":30.158,"y":14.869,"w":4.436,"h":0.866},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L4","EN":0},"TI":1146,"AM":0,"TU":"Line 4. Figure the tax on the amount on line 3 using the 2013 tax rates (see instructions).","x":30.19,"y":16.362,"w":4.4,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L5","EN":0},"TI":1147,"AM":0,"TU":"Line 5. If you used Schedule J to figure your tax:","x":23.052,"y":20.083,"w":4.385,"h":0.902},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L6","EN":0},"TI":1148,"AM":1024,"x":23.013,"y":23.869,"w":4.382,"h":0.859},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L7","EN":0},"TI":1149,"AM":1024,"x":22.995,"y":25.508,"w":4.418,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L8","EN":0},"TI":1150,"AM":0,"TU":"Line 8. Figure the tax on the amount on line 7, using the 2010 tax rates (see instructions).","x":30.24,"y":26.897,"w":4.328,"h":0.838},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L9","EN":0},"TI":1151,"AM":0,"TU":"Line 9. If you used Schedule J to figure your tax for:","x":23.025,"y":29.915,"w":4.385,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":1152,"AM":1024,"x":23.04,"y":32.882,"w":4.382,"h":0.846},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":1153,"AM":1024,"x":22.995,"y":34.508,"w":4.418,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":1154,"AM":0,"TU":"Line 12. Figure the tax on the amount on line 11 using the 2011 tax rates (see instructions).","x":30.186,"y":35.844,"w":4.382,"h":0.891},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13","EN":0},"TI":1155,"AM":0,"TU":"Line 13. If you used Schedule J to figure your tax for 2012, enter the amount from your 2012 Schedule J, line 3. Otherwise, enter the taxable income from your 2012 Form 1040, line 43; Form 1040A, line 27; Form 1040EZ line 6; Form 1040NR, line 41; or Form 1040NR-EZ, line 14. If zero or less, see instructions.","x":23.025,"y":39.612,"w":4.385,"h":0.873},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":1156,"AM":1024,"x":22.968,"y":41.23,"w":4.417,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":1157,"AM":1024,"x":22.995,"y":42.758,"w":4.418,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":1158,"AM":0,"TU":"Line 16. Figure the tax on the amount on line 15 using the 2012 tax rates (see instructions).","x":30.213,"y":44.191,"w":4.355,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":1159,"AM":1024,"x":30.218,"y":45.619,"w":4.373,"h":0.851}],"Boxsets":[]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":3.001,"w":1.5,"l":27.481,"oc":"#221f1f"},{"x":29.685,"y":3.001,"w":1.5,"l":6.331,"oc":"#221f1f"},{"x":30.135,"y":3.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":3.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":8.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":8.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":3.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":8.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":14.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":14.251,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":14.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":14.251,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":21.585,"y":19.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":22.935,"y":19.501,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":27.435,"y":19.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":23.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.135,"y":23.251,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":34.635,"y":23.251,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":28.785,"y":24.751,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":28.785,"y":27.751,"w":1.5,"l":7.231,"oc":"#221f1f"},{"x":2.235,"y":27.751,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":30.151,"y":2.985,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":28.801,"y":2.985,"w":0.75,"l":0.797,"oc":"#221f1f"},{"x":34.651,"y":2.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":4.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":21.601,"y":4.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":27.451,"y":4.485,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":22.951,"y":7.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":7.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":7.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.151,"y":3.735,"w":0.75,"l":18.781,"oc":"#221f1f"},{"x":28.801,"y":3.735,"w":0.75,"l":18.781,"oc":"#221f1f"},{"x":34.651,"y":3.735,"w":0.75,"l":18.781,"oc":"#221f1f"},{"x":22.951,"y":8.235,"w":0.75,"l":5.281,"oc":"#221f1f"},{"x":21.601,"y":8.235,"w":0.75,"l":5.281,"oc":"#221f1f"},{"x":27.451,"y":8.235,"w":0.75,"l":5.281,"oc":"#221f1f"},{"x":22.951,"y":13.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":13.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":27.451,"y":13.485,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.951,"y":14.235,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.601,"y":14.235,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":27.451,"y":14.235,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":22.951,"y":18.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":21.601,"y":18.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":27.451,"y":18.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":22.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.801,"y":22.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":34.651,"y":22.485,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.151,"y":23.235,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":28.801,"y":23.235,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":34.651,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":34.651,"y":23.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.801,"y":24.735,"w":0.75,"l":3.047,"oc":"#221f1f"}],"Fills":[{"x":21.601,"y":4.501,"w":1.35,"h":3,"oc":"#bfc0c4"},{"x":28.801,"y":3.751,"w":1.35,"h":18.75,"oc":"#bfc0c4"},{"x":21.601,"y":8.251,"w":1.35,"h":5.25,"oc":"#bfc0c4"},{"x":21.601,"y":14.251,"w":1.35,"h":4.5,"oc":"#bfc0c4"},{"x":28.801,"y":24.751,"w":7.2,"h":3,"oc":"#bfc0c4"}],"Texts":[{"x":2.001,"y":2.001,"w":13.117,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule J (Form 1040) 2013","S":2,"TS":[0,10,0,0]}]},{"x":34.277,"y":1.947,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":1.947,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"x":2.275,"y":2.84,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":2.84,"w":9.041,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Amount from line 17","S":-1,"TS":[0,11.1,0,0]}]},{"x":8.751,"y":2.84,"w":38.506,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........................","S":-1,"TS":[0,11.1,0,0]}]},{"x":28.913,"y":2.84,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":4.34,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":4.34,"w":20.077,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you used Schedule J to figure your tax for: ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":5.09,"w":27.568,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• 2012, enter the amount from your 2012 Schedule J, line 12. ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":5.903,"w":30.052,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• 2011 but not 2012, enter the amount from your 2011 Schedule J, ","S":-1,"TS":[0,11.55,0,0]}]},{"x":4.237,"y":6.59,"w":3.483,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 16. ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.801,"y":7.4030000000000005,"w":28.2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• 2010 but not 2011 or 2012, enter the amount from your 2010 ","S":3,"TS":[0,12,0,0]}]},{"x":4.237,"y":8.09,"w":8.466,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule J, line 4. ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":8.813,"w":15.539,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Otherwise, enter the tax from your ","S":3,"TS":[0,12,0,0]}]},{"x":13.151,"y":8.813,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2010 ","S":3,"TS":[0,12,0,0]}]},{"x":14.66,"y":8.813,"w":9.227,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040, line 44;* ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":9.501,"w":28.586,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040A, line 28;* Form 1040EZ, line 11; Form 1040NR, line ","S":3,"TS":[0,12,0,0]}]},{"x":3.7990000000000004,"y":10.188,"w":15.098,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"42;* or Form 1040NR-EZ, line 15. ","S":3,"TS":[0,12,0,0]}]},{"x":20.451,"y":9.016,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[3,21.8,0,0]}]},{"x":21.713,"y":7.34,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":11.09,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":11.09,"w":20.077,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you used Schedule J to figure your tax for: ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":11.84,"w":27.568,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• 2012, enter the amount from your 2012 Schedule J, line 16. ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":12.653,"w":25.347,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• 2011 but not 2012, enter the amount from your 2011 ","S":3,"TS":[0,12,0,0]}]},{"x":4.238,"y":13.34,"w":8.466,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule J, line 4. ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":13.975,"w":15.539,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Otherwise, enter the tax from your ","S":3,"TS":[0,12,0,0]}]},{"x":13.152,"y":13.975,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2011 ","S":3,"TS":[0,12,0,0]}]},{"x":14.662,"y":13.975,"w":9.227,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040, line 44;* ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":14.662,"w":28.586,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040A, line 28;* Form 1040EZ, line 10; Form 1040NR, line ","S":3,"TS":[0,12,0,0]}]},{"x":3.8,"y":15.349,"w":15.098,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"42;* or Form 1040NR-EZ, line 15. ","S":3,"TS":[0,12,0,0]}]},{"x":20.451,"y":14.538,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[3,24,0,0]}]},{"x":21.713,"y":13.34,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":16.528,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21 ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":17.215,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":17.902,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":2.901,"y":18.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":16.528,"w":30.49,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you used Schedule J to figure your tax for 2012, enter the amount ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.801,"y":17.215,"w":28.841,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"from your 2012 Schedule J, line 4. Otherwise, enter the tax from ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.7990000000000004,"y":17.902,"w":2.241,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"your ","S":-1,"TS":[0,11.55,0,0]}]},{"x":5.003,"y":17.902,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2012 ","S":-1,"TS":[0,11.55,0,0]}]},{"x":6.346,"y":17.902,"w":25.716,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Form 1040, line 44;* Form 1040A, line 28;* Form 1040EZ, ","S":-1,"TS":[0,11.55,0,0]}]},{"x":3.7969999999999997,"y":18.59,"w":26.917,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"line 10; Form 1040NR, line 42;* or Form 1040NR-EZ, line 15 ","S":-1,"TS":[0,11.55,0,0]}]},{"x":18.497,"y":18.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":19.247,"y":18.59,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,11.55,0,0]}]},{"x":21.713,"y":18.59,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":20.153,"w":2.833,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"*Only ","S":-1,"TS":[0,10.74,0,0]}]},{"x":5.307,"y":20.153,"w":42.639,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"include tax reported on this line that is imposed by section 1 of the Internal Revenue Code (see ","S":-1,"TS":[0,10.74,0,0]}]},{"x":3.801,"y":20.84,"w":6.001,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions). ","S":-1,"TS":[0,10.74,0,0]}]},{"x":6.704,"y":20.84,"w":3.464,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Do not ","S":-1,"TS":[0,10.74,0,0]}]},{"x":8.38,"y":20.84,"w":22.527,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"include alternative minimum tax from Form 1040A.","S":-1,"TS":[0,10.74,0,0]}]},{"x":2.275,"y":22.34,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":22.34,"w":10.949,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 19 through 21 ","S":3,"TS":[0,12,0,0]}]},{"x":10.251,"y":22.34,"w":31.992,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"........................","S":3,"TS":[0,12,0,0]}]},{"x":28.913,"y":22.34,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22 ","S":3,"TS":[0,12,0,0]}]},{"x":2.275,"y":23.84,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23 ","S":3,"TS":[0,12,0,0]}]},{"x":3.801,"y":23.84,"w":2.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Tax. ","S":-1,"TS":[0,11.1,0,0]}]},{"x":4.954,"y":23.84,"w":45.869,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 22 from line 18. Also include this amount on Form 1040, line 44; or Form 1040NR, line 42 ","S":-1,"TS":[0,11.1,0,0]}]},{"x":28.913,"y":23.84,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"23 ","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":25.403,"w":4.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Caution. ","S":3,"TS":[0,12,0,0]}]},{"x":4.449,"y":25.403,"w":41.12,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your tax may be less if you figure it using the 2013 Tax Table, Tax Computation Worksheet, ","S":3,"TS":[0,12,0,0]}]},{"x":1.9980000000000002,"y":26.09,"w":46.268,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Qualified Dividends and Capital Gain Tax Worksheet, or Schedule D Tax Worksheet. Attach Schedule J ","S":3,"TS":[0,12,0,0]}]},{"x":1.996,"y":26.777,"w":18.15,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"only if you are using it to figure your tax. ","S":3,"TS":[0,12,0,0]}]},{"x":29.786,"y":27.626,"w":13.911,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule J (Form 1040) 2013 ","S":2,"TS":[0,10,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":2207,"AM":1024,"x":9.039,"y":2.015,"w":13.923,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2208,"AM":1024,"x":23.302,"y":2.015,"w":5.511,"h":0.85},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"N18","EN":0},"TI":2209,"AM":1024,"x":30.188,"y":3.052,"w":4.432,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":2210,"AM":0,"x":23.013,"y":7.411,"w":4.409,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":2211,"AM":0,"x":23.04,"y":13.377,"w":4.382,"h":0.858},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L20","EN":0},"TI":2212,"AM":0,"x":23.04,"y":18.587,"w":4.382,"h":0.891},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":2213,"AM":1024,"x":30.186,"y":22.325,"w":4.436,"h":0.902},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L22","EN":0},"TI":2214,"AM":1024,"x":30.218,"y":23.897,"w":4.427,"h":0.838}],"Boxsets":[]}]}} \ No newline at end of file diff --git a/test/data/fd/form/FSCHR.json b/test/data/fd/form/FSCHR.json index d66f0059..09713fb8 100755 --- a/test/data/fd/form/FSCHR.json +++ b/test/data/fd/form/FSCHR.json @@ -1 +1 @@ -{"formImage":{"Transcoder":"pdf2json@0.6.8","Agency":"","Id":{"AgencyId":"unknown","Name":"unknown","MC":false,"Max":-1,"Parent":-1},"Pages":[{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":6.001,"w":1.5,"l":14.936},{"oc":"#221f1f","x":20.997,"y":6.001,"w":1.5,"l":48.349},{"oc":"#221f1f","x":69.259,"y":6.001,"w":1.5,"l":14.936},{"oc":"#9a9d9f","x":76.474,"y":3.104,"w":6,"l":3.231},{"oc":"#848587","x":74.298,"y":5.896,"w":3,"l":5.156},{"oc":"#848587","x":74.47,"y":3.646,"w":3,"l":3.438},{"oc":"#848587","x":77.907,"y":4.209,"w":3,"l":1.547},{"oc":"#221f1f","x":69.313,"y":4.655,"w":3,"l":5.156},{"oc":"#221f1f","x":69.313,"y":2.405,"w":3,"l":3.609},{"oc":"#221f1f","x":72.923,"y":2.967,"w":3,"l":1.547},{"oc":"#221f1f","x":84.066,"y":3.001,"w":0.75,"l":14.979},{"oc":"#221f1f","x":84.066,"y":6.001,"w":1.5,"l":14.979},{"oc":"#221f1f","x":6.147,"y":7.501,"w":0.75,"l":73.099},{"oc":"#221f1f","x":79.159,"y":7.501,"w":0.75,"l":19.886},{"oc":"#221f1f","x":6.447,"y":11.751,"w":0.75,"l":2.578},{"oc":"#221f1f","x":6.447,"y":10.626,"w":0.75,"l":2.578},{"oc":"#221f1f","x":6.147,"y":12.001,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":12.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":13.501,"w":0.75,"l":26.073},{"oc":"#221f1f","x":32.134,"y":13.501,"w":0.75,"l":48.349},{"oc":"#221f1f","x":80.397,"y":13.501,"w":0.75,"l":18.648},{"oc":"#221f1f","x":6.147,"y":17.251,"w":0.75,"l":92.899},{"oc":"#221f1f","x":94.602,"y":16.376,"w":0.75,"l":1.375},{"oc":"#221f1f","x":94.602,"y":15.876,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.147,"y":28.509,"w":0.75,"l":92.899},{"oc":"#221f1f","x":94.617,"y":27.634,"w":0.75,"l":1.375},{"oc":"#221f1f","x":94.617,"y":27.134,"w":0.75,"l":1.375},{"oc":"#221f1f","x":6.147,"y":32.989,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.19,"y":35.953,"w":1.5,"l":12.375},{"oc":"#221f1f","x":6.19,"y":33.751,"w":1.5,"l":12.375},{"oc":"#221f1f","x":18.565,"y":34.126,"w":1.5,"l":9.125},{"oc":"#221f1f","x":32.099,"y":34.126,"w":1.5,"l":5.689},{"oc":"#221f1f","x":18.662,"y":35.251,"w":1.5,"l":9.125},{"oc":"#221f1f","x":31.841,"y":35.248,"w":1.5,"l":5.689},{"oc":"#221f1f","x":6.147,"y":36.751,"w":1.125,"l":92.899},{"oc":"#221f1f","x":6.147,"y":37.501,"w":0.75,"l":92.899},{"oc":"#221f1f","x":6.147,"y":45.751,"w":1.5,"l":49.586},{"oc":"#221f1f","x":55.647,"y":45.751,"w":1.5,"l":21.123},{"oc":"#221f1f","x":76.684,"y":45.751,"w":1.5,"l":22.361}],"VLines":[{"oc":"#221f1f","x":21.124,"y":2.235,"w":1.5,"l":3.797},{"oc":"#848587","x":79.454,"y":4.209,"w":3,"l":1.688},{"oc":"#848587","x":74.298,"y":4.624,"w":3,"l":1.312},{"oc":"#848587","x":77.907,"y":3.646,"w":3,"l":0.563},{"oc":"#221f1f","x":74.47,"y":2.967,"w":3,"l":1.688},{"oc":"#221f1f","x":69.313,"y":2.405,"w":3,"l":2.25},{"oc":"#221f1f","x":72.923,"y":2.405,"w":3,"l":0.563},{"oc":"#221f1f","x":84.152,"y":2.235,"w":1.5,"l":0.781},{"oc":"#221f1f","x":84.152,"y":2.985,"w":1.5,"l":1.531},{"oc":"#221f1f","x":84.152,"y":4.485,"w":1.5,"l":1.547},{"oc":"#221f1f","x":79.202,"y":5.97,"w":0.75,"l":1.547},{"oc":"#221f1f","x":6.19,"y":10.72,"w":0.75,"l":0.938},{"oc":"#221f1f","x":9.283,"y":10.72,"w":0.75,"l":0.938},{"oc":"#221f1f","x":95.977,"y":15.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":94.602,"y":15.876,"w":0.75,"l":0.5},{"oc":"#221f1f","x":95.992,"y":27.134,"w":0.75,"l":0.5},{"oc":"#221f1f","x":94.617,"y":27.134,"w":0.75,"l":0.5},{"oc":"#221f1f","x":18.565,"y":33.751,"w":1.5,"l":2.202},{"oc":"#221f1f","x":6.19,"y":33.751,"w":1.5,"l":2.202}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":10.626,"w":3.094,"h":1.125,"clr":-1},{"x":6.361,"y":10.688,"w":2.75,"h":1,"clr":1},{"oc":"#221f1f","x":6.19,"y":12.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#221f1f","x":6.19,"y":36.751,"w":6.188,"h":0.75,"clr":-1},{"x":0.172,"y":49.052,"w":0.983,"h":0.385,"clr":0}],"Texts":[{"oc":"#221f1f","x":6.024,"y":2.01,"w":5.982000000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20R%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.024,"y":2.697,"w":6.260000000000002,"clr":-1,"A":"left","R":[{"T":"(Form%201040A%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.024,"y":3.385,"w":4.0760000000000005,"clr":-1,"A":"left","R":[{"T":"or%201040)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":4.526,"w":12.818000000000003,"clr":-1,"A":"left","R":[{"T":"Department%20of%20the%20Treasury%20%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.026,"w":13.279000000000005,"clr":-1,"A":"left","R":[{"T":"Internal%20Revenue%20Service%20(99)%20","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"oc":"#221f1f","x":25.262,"y":2.47,"w":16.340000000000003,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20the%20Elderly%20or%20the%20Disabled","S":-1,"TS":[2,17,0,0]}]},{"oc":"#221f1f","x":30.268,"y":3.6159999999999997,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":31.681,"y":3.71,"w":20.286000000000005,"clr":-1,"A":"left","R":[{"T":"Complete%20and%20attach%20to%20Form%201040A%20or%201040.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":23.326,"y":4.179,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":24.357,"y":4.272,"w":30.661999999999995,"clr":-1,"A":"left","R":[{"T":"%20Information%20about%20Schedule%20R%20and%20its%20separate%20instructions%20is%20at","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":37.178,"y":4.814,"w":11.262000000000002,"clr":-1,"A":"left","R":[{"T":"www.irs.gov%2Fscheduler.","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.595,"y":2.751,"w":3.1870000000000003,"clr":-1,"A":"left","R":[{"T":"1040A%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":69.052,"y":3.027,"w":5.560000000000002,"clr":-1,"A":"left","R":[{"T":".%20.%20.%20.%20.%20.%20.%20.%20.%20.%20","S":1,"TS":[0,8,0,0]}]},{"oc":"#221f1f","x":70.036,"y":3.676,"w":2.5020000000000002,"clr":-1,"A":"left","R":[{"T":"1040%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#848587","x":75.802,"y":4.408,"w":0.722,"clr":-1,"A":"left","R":[{"T":"R","S":-1,"TS":[0,15,0,0]}]},{"oc":"#9a9d9f","x":74.541,"y":2.493,"w":1,"clr":-1,"A":"left","R":[{"T":"%60","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":85.743,"y":1.9729999999999999,"w":9.283000000000001,"clr":-1,"A":"left","R":[{"T":"OMB%20No.%201545-0074","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":86.859,"y":3.518,"w":1.264,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":91.204,"y":3.518,"w":1.336,"clr":-1,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"oc":"#221f1f","x":85.965,"y":4.438,"w":6.003000000000002,"clr":-1,"A":"left","R":[{"T":"Attachment%20%20%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":85.965,"y":5.01,"w":6.631,"clr":-1,"A":"left","R":[{"T":"Sequence%20No.%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":93.942,"y":5.01,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":5.679,"w":17.74600000000001,"clr":-1,"A":"left","R":[{"T":"Name(s)%20shown%20on%20Form%201040A%20or%201040","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":79.64,"y":5.687,"w":13.368000000000002,"clr":-1,"A":"left","R":[{"T":"Your%20social%20security%20number","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":5.94,"y":7.385,"w":34.52899999999998,"clr":-1,"A":"left","R":[{"T":"You%20may%20be%20able%20to%20take%20this%20credit%20and%20reduce%20your%20tax%20if%20by%20the%20end%20of%202013%3A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":8.197,"w":13.983000000000006,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20were%20age%2065%20or%20older%20%20%20%20%20%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.973,"y":8.197,"w":1,"clr":-1,"A":"left","R":[{"T":"or","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":36.877,"y":8.197,"w":18.188000000000002,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20You%20were%20under%20age%2065%2C%20you%20retired%20on%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":68.138,"y":8.197,"w":9.925000000000002,"clr":-1,"A":"left","R":[{"T":"permanent%20and%20total%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":85.196,"y":8.197,"w":8.114000000000003,"clr":-1,"A":"left","R":[{"T":"disability%2C%20and%20%20%20%20%20%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":38.424,"y":8.885,"w":17.279999999999998,"clr":-1,"A":"left","R":[{"T":"you%20received%20taxable%20disability%20income.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":9.572,"w":23.65500000000001,"clr":-1,"A":"left","R":[{"T":"But%20you%20must%20also%20meet%20other%20tests.%20See%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.607,"y":10.581,"w":1.705,"clr":-1,"A":"left","R":[{"T":"TIP","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.64,"w":30.672,"clr":-1,"A":"left","R":[{"T":"In%20most%20cases%2C%20the%20IRS%20can%20figure%20the%20credit%20for%20you.%20See%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"x":6.838,"y":11.822,"w":2.555,"clr":1,"A":"left","R":[{"T":"Part%20I","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":11.822,"w":21.519999999999996,"clr":-1,"A":"left","R":[{"T":"Check%20the%20Box%20for%20Your%20Filing%20Status%20and%20Age","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":12.541,"w":10.181000000000001,"clr":-1,"A":"left","R":[{"T":"If%20your%20filing%20status%20is%3A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":31.927,"y":12.541,"w":11.152000000000003,"clr":-1,"A":"left","R":[{"T":"And%20by%20the%20end%20of%202013%3A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":82.105,"y":12.541,"w":9.686000000000002,"clr":-1,"A":"left","R":[{"T":"Check%20only%20one%20box%3A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":14.015,"w":3.315,"clr":-1,"A":"left","R":[{"T":"Single%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":14.765,"w":10.224000000000002,"clr":-1,"A":"left","R":[{"T":"Head%20of%20household%2C%20or%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":15.515,"w":9.016000000000002,"clr":-1,"A":"left","R":[{"T":"Qualifying%20widow(er)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":27.259,"y":14.134,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.452,"y":14.134,"w":9.889000000000003,"clr":-1,"A":"left","R":[{"T":"You%20were%2065%20or%20older%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":47.19,"y":14.134,"w":23.999999999999993,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.231,"y":14.072,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":27.259,"y":15.635000000000002,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.452,"y":15.635000000000002,"w":30.95200000000001,"clr":-1,"A":"left","R":[{"T":"You%20were%20under%2065%20and%20you%20retired%20on%20permanent%20and%20total%20disability%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":84.313,"y":15.635000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":86.376,"y":15.635000000000002,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.231,"y":15.572,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":21.924,"w":6.074,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":22.611,"w":2.611,"clr":-1,"A":"left","R":[{"T":"jointly","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":27.274,"y":17.893,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.468,"y":17.893,"w":13.723000000000003,"clr":-1,"A":"left","R":[{"T":"Both%20spouses%20were%2065%20or%20older","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":53.377,"y":17.893,"w":21.599999999999994,"clr":-1,"A":"left","R":[{"T":".................%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.246,"y":17.83,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.467,"y":19.455,"w":34.37999999999999,"clr":-1,"A":"left","R":[{"T":"Both%20spouses%20were%20under%2065%2C%20but%20only%20one%20spouse%20retired%20on%20permanent%20and%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.464,"y":20.143,"w":6.445000000000002,"clr":-1,"A":"left","R":[{"T":"total%20disability%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":40.998,"y":20.143,"w":28.79999999999999,"clr":-1,"A":"left","R":[{"T":".......................%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":27.274,"y":21.705,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.467,"y":21.705,"w":31.546000000000003,"clr":-1,"A":"left","R":[{"T":"Both%20spouses%20were%20under%2065%2C%20and%20both%20retired%20on%20permanent%20and%20total%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.465,"y":22.393,"w":3.9259999999999997,"clr":-1,"A":"left","R":[{"T":"disability","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":36.875,"y":22.393,"w":29.99999999999999,"clr":-1,"A":"left","R":[{"T":".........................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.244,"y":22.33,"w":0.556,"clr":-1,"A":"left","R":[{"T":"5","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":27.274,"y":23.955,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.467,"y":23.955,"w":34.34099999999999,"clr":-1,"A":"left","R":[{"T":"One%20spouse%20was%2065%20or%20older%2C%20and%20the%20other%20spouse%20was%20under%2065%20and%20retired%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.471,"y":24.643,"w":14.911999999999999,"clr":-1,"A":"left","R":[{"T":"on%20permanent%20and%20total%20disability%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":55.443,"y":24.643,"w":20.399999999999995,"clr":-1,"A":"left","R":[{"T":"................%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.249,"y":24.58,"w":0.556,"clr":-1,"A":"left","R":[{"T":"6","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":27.274,"y":26.205,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.467,"y":26.205,"w":31.192999999999998,"clr":-1,"A":"left","R":[{"T":"One%20spouse%20was%2065%20or%20older%2C%20and%20the%20other%20spouse%20was%20under%2065%20and%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":82.833,"y":26.252,"w":1.834,"clr":-1,"A":"left","R":[{"T":"not%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.459,"y":26.893,"w":17.782000000000007,"clr":-1,"A":"left","R":[{"T":"retired%20on%20permanent%20and%20total%20disability","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":61.618,"y":26.893,"w":16.799999999999997,"clr":-1,"A":"left","R":[{"T":".............%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.237,"y":26.83,"w":0.556,"clr":-1,"A":"left","R":[{"T":"7","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":29.81,"w":6.074,"clr":-1,"A":"left","R":[{"T":"Married%20filing%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":30.498,"w":4.611,"clr":-1,"A":"left","R":[{"T":"separately","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":27.259,"y":29.123,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.452,"y":29.123,"w":33.208999999999996,"clr":-1,"A":"left","R":[{"T":"You%20were%2065%20or%20older%20and%20you%20lived%20apart%20from%20your%20spouse%20for%20all%20of%202013%20.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.231,"y":29.06,"w":0.556,"clr":-1,"A":"left","R":[{"T":"8","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":27.259,"y":30.685,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.452,"y":30.685,"w":33.138000000000005,"clr":-1,"A":"left","R":[{"T":"You%20were%20under%2065%2C%20you%20retired%20on%20permanent%20and%20total%20disability%2C%20and%20you%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.459,"y":31.372999999999998,"w":19.448,"clr":-1,"A":"left","R":[{"T":"lived%20apart%20from%20your%20spouse%20for%20all%20of%202013%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":63.696,"y":31.372999999999998,"w":14.399999999999999,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":90.237,"y":31.310000000000002,"w":0.556,"clr":-1,"A":"left","R":[{"T":"9","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.283,"y":33.58,"w":7.055999999999999,"clr":-1,"A":"left","R":[{"T":"Did%20you%20check%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.283,"y":34.267,"w":6.651000000000002,"clr":-1,"A":"left","R":[{"T":"box%201%2C%203%2C%207%2C%20or%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.283,"y":34.955,"w":1.112,"clr":-1,"A":"left","R":[{"T":"8%3F","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":28.215,"y":33.635,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":37.393,"y":33.567,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.59,"y":33.635,"w":20.301,"clr":-1,"A":"left","R":[{"T":"Skip%20Part%20II%20and%20complete%20Part%20III%20on%20the%20back.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":28.215,"y":34.616,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":37.221,"y":34.646,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":40.59,"y":34.76,"w":11.057000000000006,"clr":-1,"A":"left","R":[{"T":"Complete%20Parts%20II%20and%20III.","S":-1,"TS":[0,13,0,0]}]},{"x":6.584,"y":36.572,"w":2.85,"clr":1,"A":"left","R":[{"T":"Part%20II","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":36.572,"w":21.031999999999996,"clr":-1,"A":"left","R":[{"T":"Statement%20of%20Permanent%20and%20Total%20Disability","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":51.112,"y":36.572,"w":4.890000000000001,"clr":-1,"A":"left","R":[{"T":"(Complete%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":58.676,"y":36.572,"w":2.259,"clr":-1,"A":"left","R":[{"T":"only%20","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":62.17,"y":36.572,"w":18.506000000000007,"clr":-1,"A":"left","R":[{"T":"if%20you%20checked%20box%202%2C%204%2C%205%2C%206%2C%20or%209%20above.)","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":5.94,"y":37.402,"w":0.906,"clr":-1,"A":"left","R":[{"T":"If%3A","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":8.696,"y":37.385,"w":0.556,"clr":-1,"A":"left","R":[{"T":"1","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.447,"w":43.57999999999998,"clr":-1,"A":"left","R":[{"T":"You%20filed%20a%20physician%E2%80%99s%20statement%20for%20this%20disability%20for%201983%20or%20an%20earlier%20year%2C%20or%20you%20filed%20or%20got%20a%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":38.135,"w":38.49199999999999,"clr":-1,"A":"left","R":[{"T":"statement%20for%20tax%20years%20after%201983%20and%20your%20physician%20signed%20line%20B%20on%20the%20statement%2C%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":73.779,"y":38.188,"w":1.778,"clr":-1,"A":"left","R":[{"T":"and","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":8.696,"y":39.628,"w":0.556,"clr":-1,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":39.697,"w":46.10199999999998,"clr":-1,"A":"left","R":[{"T":"Due%20to%20your%20continued%20disabled%20condition%2C%20you%20were%20unable%20to%20engage%20in%20any%20substantial%20gainful%20activity%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.891,"y":40.385,"w":10.634000000000002,"clr":-1,"A":"left","R":[{"T":"in%202013%2C%20check%20this%20box%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":30.691,"y":40.385,"w":36,"clr":-1,"A":"left","R":[{"T":".............................%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":91.038,"y":40.291,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":10.89,"y":41.885,"w":34.769999999999996,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%20If%20you%20checked%20this%20box%2C%20you%20do%20not%20have%20to%20get%20another%20statement%20for%202013.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":43.447,"w":3.5189999999999997,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20If%20you%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":17.046,"y":43.447,"w":3.5919999999999996,"clr":-1,"A":"left","R":[{"T":"did%20not%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":23.292,"y":43.447,"w":37.641,"clr":-1,"A":"left","R":[{"T":"check%20this%20box%2C%20have%20your%20physician%20complete%20the%20statement%20in%20the%20instructions.%20You%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":84.847,"y":43.4,"w":2.388,"clr":-1,"A":"left","R":[{"T":"must","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":12.433,"y":44.135,"w":16.300000000000004,"clr":-1,"A":"left","R":[{"T":"keep%20the%20statement%20for%20your%20records.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":5.94,"y":45.608,"w":33.538,"clr":-1,"A":"left","R":[{"T":"For%20Paperwork%20Reduction%20Act%20Notice%2C%20see%20your%20tax%20return%20instructions.%20","S":-1,"TS":[0,11,0,0]}]},{"oc":"#221f1f","x":61.49,"y":45.626,"w":7.707000000000001,"clr":-1,"A":"left","R":[{"T":"Cat.%20No.%2011359K%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":76.779,"y":45.626,"w":18.26400000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20R%20(Form%201040A%20or%201040)%202013","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":90.246,"y":17.83,"w":0.556,"clr":-1,"A":"left","R":[{"T":"3","S":-1,"TS":[0,13,0,0]}]},{"x":27.336,"y":19.438,"w":5.5600000000000005,"clr":0,"A":"left","R":[{"T":"4","S":10,"TS":[0,14,1,0]}]},{"x":90.138,"y":20.052,"w":5.5600000000000005,"clr":0,"A":"left","R":[{"T":"4","S":10,"TS":[0,14,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":8909,"AM":1024,"x":6.229,"y":6.616,"w":72.848,"h":0.869,"TU":"Name(s) shown on Form 1040A or 1040"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":8910,"AM":1024,"x":79.42,"y":6.623,"w":19.635,"h":0.862,"TU":"Your social security number"}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":8911,"AM":0,"x":94.631,"y":14.208,"w":1.499,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":8912,"AM":0,"x":94.565,"y":15.731,"w":1.499,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS3","EN":0},"TI":8913,"AM":0,"x":94.581,"y":18.002,"w":1.499,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS4","EN":0},"TI":8914,"AM":0,"x":94.521,"y":20.244,"w":1.499,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS5","EN":0},"TI":8915,"AM":0,"x":94.537,"y":22.459,"w":1.499,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS6","EN":0},"TI":8916,"AM":0,"x":94.629,"y":24.73,"w":1.499,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS7","EN":0},"TI":8917,"AM":0,"x":94.493,"y":27,"w":1.499,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS8","EN":0},"TI":8918,"AM":0,"x":94.585,"y":29.215,"w":1.499,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS9","EN":0},"TI":8919,"AM":0,"x":94.616,"y":31.464,"w":1.499,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STX","EN":0},"TI":8920,"AM":0,"x":94.555,"y":40.5,"w":1.803,"h":0.833}]}]},{"Height":49.5,"HLines":[{"oc":"#221f1f","x":6.147,"y":3.001,"w":1.5,"l":86.711},{"oc":"#221f1f","x":92.772,"y":3.001,"w":1.5,"l":6.273},{"oc":"#221f1f","x":6.147,"y":3.751,"w":0.75,"l":92.899},{"oc":"#221f1f","x":80.397,"y":3.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":6.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":6.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":11.14,"y":9.429,"w":1.5,"l":13.613},{"oc":"#221f1f","x":11.14,"y":7.179,"w":1.5,"l":13.613},{"oc":"#221f1f","x":24.752,"y":7.92,"w":1.5,"l":10.313},{"oc":"#221f1f","x":40.167,"y":7.92,"w":1.5,"l":8.767},{"oc":"#221f1f","x":24.752,"y":9.026,"w":1.5,"l":10.313},{"oc":"#221f1f","x":40.122,"y":9.026,"w":1.5,"l":8.767},{"oc":"#221f1f","x":80.397,"y":6.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":12.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":12.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.447,"y":16.126,"w":0.75,"l":2.578},{"oc":"#221f1f","x":6.447,"y":15.001,"w":0.75,"l":2.578},{"oc":"#221f1f","x":80.397,"y":12.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":18.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":18.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":65.547,"y":21.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":77.922,"y":21.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":61.834,"y":21.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":65.547,"y":24.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":77.922,"y":24.001,"w":1.125,"l":2.561},{"oc":"#221f1f","x":61.834,"y":24.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":27.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":77.922,"y":27.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":46.984,"y":28.501,"w":0.75,"l":12.461},{"oc":"#221f1f","x":59.359,"y":28.501,"w":0.75,"l":2.561},{"oc":"#221f1f","x":43.272,"y":28.501,"w":0.75,"l":3.798},{"oc":"#221f1f","x":46.984,"y":30.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":59.359,"y":30.751,"w":1.125,"l":2.561},{"oc":"#221f1f","x":43.272,"y":30.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":43.272,"y":33.001,"w":1.125,"l":3.798},{"oc":"#221f1f","x":46.984,"y":33.001,"w":1.125,"l":12.461},{"oc":"#221f1f","x":59.359,"y":33.001,"w":1.125,"l":2.561},{"oc":"#221f1f","x":61.834,"y":27.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":61.834,"y":33.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":65.547,"y":33.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":77.922,"y":33.751,"w":1.125,"l":2.561},{"oc":"#221f1f","x":80.397,"y":18.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":80.397,"y":34.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":34.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.484,"y":34.501,"w":1.125,"l":2.561},{"oc":"#221f1f","x":80.397,"y":36.001,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":36.001,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":36.001,"w":0.75,"l":2.561},{"oc":"#221f1f","x":80.397,"y":36.751,"w":1.125,"l":3.798},{"oc":"#221f1f","x":84.109,"y":36.751,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.484,"y":36.751,"w":1.125,"l":2.561},{"oc":"#221f1f","x":84.109,"y":37.501,"w":1.125,"l":12.461},{"oc":"#221f1f","x":96.484,"y":37.501,"w":1.125,"l":2.561},{"oc":"#221f1f","x":80.397,"y":37.501,"w":1.125,"l":3.798},{"oc":"#221f1f","x":80.397,"y":39.751,"w":0.75,"l":3.798},{"oc":"#221f1f","x":84.109,"y":39.751,"w":0.75,"l":12.461},{"oc":"#221f1f","x":96.484,"y":39.751,"w":0.75,"l":2.561},{"oc":"#221f1f","x":6.147,"y":39.751,"w":1.5,"l":92.899}],"VLines":[{"oc":"#221f1f","x":84.152,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":84.152,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":3.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":5.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":24.752,"y":7.179,"w":1.5,"l":2.25},{"oc":"#221f1f","x":11.14,"y":7.179,"w":1.5,"l":2.25},{"oc":"#221f1f","x":84.152,"y":5.985,"w":0.75,"l":6.031},{"oc":"#221f1f","x":80.44,"y":5.985,"w":0.75,"l":6.031},{"oc":"#221f1f","x":84.152,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":5.985,"w":0.75,"l":6.031},{"oc":"#221f1f","x":96.527,"y":11.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":6.19,"y":15.095,"w":0.75,"l":0.938},{"oc":"#221f1f","x":9.283,"y":15.095,"w":0.75,"l":0.938},{"oc":"#221f1f","x":84.152,"y":12.735,"w":0.75,"l":4.531},{"oc":"#221f1f","x":80.44,"y":12.735,"w":0.75,"l":4.531},{"oc":"#221f1f","x":84.152,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":17.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":12.735,"w":0.75,"l":4.531},{"oc":"#221f1f","x":96.527,"y":17.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":61.877,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":65.59,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":18.735,"w":0.75,"l":2.281},{"oc":"#221f1f","x":77.965,"y":20.985,"w":0.75,"l":0.781},{"oc":"#221f1f","x":65.59,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":61.877,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":65.59,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":23.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":21.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":77.965,"y":23.235,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":23.978,"w":0.75,"l":2.289},{"oc":"#221f1f","x":61.877,"y":23.978,"w":0.75,"l":2.289},{"oc":"#221f1f","x":65.59,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":61.877,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":77.965,"y":23.985,"w":0.75,"l":3.031},{"oc":"#221f1f","x":77.965,"y":26.235,"w":0.75,"l":0.781},{"oc":"#221f1f","x":47.027,"y":27.462,"w":0.75,"l":1.055},{"oc":"#221f1f","x":43.315,"y":27.462,"w":0.75,"l":1.055},{"oc":"#221f1f","x":59.402,"y":27.462,"w":0.75,"l":1.055},{"oc":"#221f1f","x":47.027,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":43.315,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":47.027,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":43.315,"y":29.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":59.402,"y":28.485,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":29.986,"w":0.75,"l":0.789},{"oc":"#221f1f","x":47.027,"y":30.728,"w":0.75,"l":1.539},{"oc":"#221f1f","x":43.315,"y":30.728,"w":0.75,"l":1.539},{"oc":"#221f1f","x":47.027,"y":32.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":43.315,"y":32.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":59.402,"y":30.735,"w":0.75,"l":1.531},{"oc":"#221f1f","x":59.402,"y":32.236,"w":0.75,"l":0.789},{"oc":"#221f1f","x":65.59,"y":26.985,"w":0.75,"l":6.031},{"oc":"#221f1f","x":61.877,"y":26.985,"w":0.75,"l":6.031},{"oc":"#221f1f","x":65.59,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":61.877,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":77.965,"y":26.985,"w":0.75,"l":6.031},{"oc":"#221f1f","x":77.965,"y":32.985,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":17.985,"w":0.75,"l":15.781},{"oc":"#221f1f","x":80.44,"y":17.985,"w":0.75,"l":15.781},{"oc":"#221f1f","x":84.152,"y":33.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":33.735,"w":0.75,"l":0.789},{"oc":"#221f1f","x":96.527,"y":17.985,"w":0.75,"l":17.281},{"oc":"#221f1f","x":96.527,"y":33.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":80.44,"y":34.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":34.486,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":35.236,"w":0.75,"l":0.781},{"oc":"#221f1f","x":84.152,"y":35.986,"w":0.75,"l":0.789},{"oc":"#221f1f","x":80.44,"y":35.986,"w":0.75,"l":0.789},{"oc":"#221f1f","x":96.527,"y":35.986,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":36.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":36.736,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":36.736,"w":0.75,"l":0.789},{"oc":"#221f1f","x":84.152,"y":37.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":80.44,"y":37.478,"w":0.75,"l":1.539},{"oc":"#221f1f","x":84.152,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":80.44,"y":38.986,"w":0.75,"l":0.781},{"oc":"#221f1f","x":96.527,"y":37.486,"w":0.75,"l":1.531},{"oc":"#221f1f","x":96.527,"y":38.986,"w":0.75,"l":0.781}],"Fills":[{"x":0,"y":0,"w":0,"h":0,"clr":1},{"oc":"#221f1f","x":6.19,"y":3.001,"w":6.188,"h":0.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":3.751,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":6.001,"w":3.712,"h":6,"clr":-1},{"oc":"#221f1f","x":6.19,"y":15.001,"w":3.094,"h":1.125,"clr":-1},{"x":6.361,"y":15.064,"w":2.75,"h":1,"clr":1},{"oc":"#bebfc1","x":80.44,"y":12.751,"w":3.712,"h":4.5,"clr":-1},{"oc":"#bebfc1","x":61.877,"y":18.751,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":61.877,"y":21.751,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":61.877,"y":24.001,"w":3.712,"h":2.25,"clr":-1},{"oc":"#bebfc1","x":43.315,"y":28.501,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":43.315,"y":30.751,"w":3.712,"h":1.5,"clr":-1},{"oc":"#bebfc1","x":61.877,"y":27.001,"w":3.712,"h":6,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":18.001,"w":3.712,"h":15.75,"clr":-1},{"oc":"#bebfc1","x":80.44,"y":37.501,"w":3.712,"h":1.5,"clr":-1}],"Texts":[{"oc":"#221f1f","x":5.94,"y":1.9729999999999999,"w":17.89600000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20R%20(Form%201040A%20or%201040)%202013%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":94.7,"y":2.01,"w":2.5740000000000003,"clr":-1,"A":"left","R":[{"T":"Page%20","S":2,"TS":[0,10,0,0]}]},{"oc":"#221f1f","x":97.797,"y":2.01,"w":0.8340000000000001,"clr":-1,"A":"left","R":[{"T":"2%20","S":-1,"TS":[0,13,0,0]}]},{"x":6.331,"y":2.822,"w":3.145,"clr":1,"A":"left","R":[{"T":"Part%20III","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":14.533,"y":2.822,"w":8.759,"clr":-1,"A":"left","R":[{"T":"Figure%20Your%20Credit","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.503,"y":3.635,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":3.635,"w":11.812999999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20(in%20Part%20I)%3A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":48.014,"y":3.635,"w":2.834,"clr":-1,"A":"left","R":[{"T":"Enter%3A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":4.385,"w":7.41,"clr":-1,"A":"left","R":[{"T":"Box%201%2C%202%2C%204%2C%20or%207%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":24.502,"y":4.385,"w":14.399999999999999,"clr":-1,"A":"left","R":[{"T":"............","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":48.015,"y":4.385,"w":3.0580000000000003,"clr":-1,"A":"left","R":[{"T":"%245%2C000","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":5.135,"w":6.298,"clr":-1,"A":"left","R":[{"T":"Box%203%2C%205%2C%20or%206%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":22.44,"y":5.135,"w":15.599999999999998,"clr":-1,"A":"left","R":[{"T":".............","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":48.015,"y":5.135,"w":3.0580000000000003,"clr":-1,"A":"left","R":[{"T":"%247%2C500","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":5.885,"w":4.9079999999999995,"clr":-1,"A":"left","R":[{"T":"Box%208%20or%209%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.377,"y":5.885,"w":16.799999999999997,"clr":-1,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":48.015,"y":5.885,"w":3.0580000000000003,"clr":-1,"A":"left","R":[{"T":"%243%2C750","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":56.37,"y":5.335,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,21,0,0]}]},{"oc":"#221f1f","x":59.565,"y":5.001,"w":13.33,"clr":-1,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.186,"y":5.09,"w":1.112,"clr":-1,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":11.233,"y":7.032,"w":7.055999999999999,"clr":-1,"A":"left","R":[{"T":"Did%20you%20check%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":11.233,"y":7.718999999999999,"w":6.485000000000001,"clr":-1,"A":"left","R":[{"T":"box%202%2C%204%2C%205%2C%206%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":11.232,"y":8.407,"w":6.352000000000001,"clr":-1,"A":"left","R":[{"T":"or%209%20in%20Part%20I%3F","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":35.937,"y":7.385,"w":1.778,"clr":-1,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":48.817,"y":7.380000000000001,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.727,"y":7.385,"w":2.334,"clr":-1,"A":"left","R":[{"T":"You%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":55.739,"y":7.385,"w":2.666,"clr":-1,"A":"left","R":[{"T":"must%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":60.321,"y":7.385,"w":7.929000000000002,"clr":-1,"A":"left","R":[{"T":"%20complete%20line%2011.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":35.944,"y":8.342,"w":1.3519999999999999,"clr":-1,"A":"left","R":[{"T":"No","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":48.817,"y":8.524,"w":1,"clr":-1,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":51.727,"y":8.579,"w":13.524000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20line%2010%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":51.729,"y":9.266,"w":12.375000000000005,"clr":-1,"A":"left","R":[{"T":"on%20line%2012%20and%20go%20to%20line%2013.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.503,"y":9.635,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":9.635,"w":11.812999999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20(in%20Part%20I)%3A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":10.447,"w":26.26700000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Box%206%2C%20add%20%245%2C000%20to%20the%20taxable%20disability%20income%20of%20the%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":12.442,"y":11.135,"w":22.171000000000006,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20spouse%20who%20was%20under%20age%2065.%20%20Enter%20the%20total.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.895,"y":11.885,"w":23.72700000000001,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20%20Box%202%2C%204%2C%20or%209%2C%20enter%20your%20taxable%20disability%20income.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.895,"y":12.697,"w":27.209000000000003,"clr":-1,"A":"left","R":[{"T":"%E2%80%A2%20Box%205%2C%20add%20your%20taxable%20disability%20income%20to%20your%20spouse%E2%80%99s%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":12.443,"y":13.385,"w":19.245000000000008,"clr":-1,"A":"left","R":[{"T":"%20%20%20%20taxable%20disability%20income.%20Enter%20the%20total.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.407,"y":12.474,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,21.2,0,0]}]},{"oc":"#221f1f","x":65.752,"y":11.751,"w":9.331,"clr":-1,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":81.09,"y":11.822,"w":1.112,"clr":-1,"A":"left","R":[{"T":"11","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.607,"y":14.956,"w":1.705,"clr":-1,"A":"left","R":[{"T":"TIP","S":51,"TS":[0,9,0,0]}]},{"oc":"#221f1f","x":11.233,"y":14.885,"w":22.801000000000002,"clr":-1,"A":"left","R":[{"T":"For%20more%20details%20on%20what%20to%20include%20on%20line%2011%2C%20see%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":50.423,"y":14.885,"w":8.148,"clr":-1,"A":"left","R":[{"T":"Figure%20Your%20Credit","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":64.427,"y":14.885,"w":8.484000000000002,"clr":-1,"A":"left","R":[{"T":"%20in%20the%20instructions.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.503,"y":16.447,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"12%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":16.447,"w":15.505000000000006,"clr":-1,"A":"left","R":[{"T":"If%20you%20completed%20line%2011%2C%20enter%20the%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":39.127,"y":16.447,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":45.84,"y":16.447,"w":9.021000000000003,"clr":-1,"A":"left","R":[{"T":"of%20line%2010%20or%20line%2011.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.706,"y":16.447,"w":5.091000000000001,"clr":-1,"A":"left","R":[{"T":"All%20others%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":71.91,"y":16.447,"w":4.242,"clr":-1,"A":"left","R":[{"T":"enter%20the%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.888,"y":17.135,"w":9.208000000000004,"clr":-1,"A":"left","R":[{"T":"amount%20from%20line%2010%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":28.625,"y":17.135,"w":29.99999999999999,"clr":-1,"A":"left","R":[{"T":".........................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":81.09,"y":17.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"12","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.503,"y":17.947,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"13%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":17.947,"w":28.69000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20following%20pensions%2C%20annuities%2C%20or%20disability%20income%20that%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":18.635,"w":23.85599999999999,"clr":-1,"A":"left","R":[{"T":"you%20(and%20your%20spouse%20if%20filing%20jointly)%20received%20in%202013.","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":8.415,"y":19.51,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"a%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":19.51,"w":28.318,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20part%20of%20social%20security%20benefits%20and%20nontaxable%20part%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.197,"w":26.945999999999998,"clr":-1,"A":"left","R":[{"T":"of%20railroad%20retirement%20benefits%20treated%20as%20social%20security%20(see%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":20.885,"w":5.445,"clr":-1,"A":"left","R":[{"T":"instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.377,"y":20.885,"w":23.999999999999993,"clr":-1,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.035,"y":20.822,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"13a","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":8.415,"y":21.76,"w":0.889,"clr":-1,"A":"left","R":[{"T":"b%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":21.76,"w":28.396000000000004,"clr":-1,"A":"left","R":[{"T":"Nontaxable%20veterans%E2%80%99%20pensions%20and%20any%20other%20pension%2C%20annuity%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.886,"y":22.447,"w":26.710000000000004,"clr":-1,"A":"left","R":[{"T":"or%20disability%20benefit%20that%20is%20excluded%20from%20income%20under%20any%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.884,"y":23.135,"w":17.444000000000006,"clr":-1,"A":"left","R":[{"T":"other%20provision%20of%20law%20(see%20instructions)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":40.997,"y":23.135,"w":12,"clr":-1,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.003,"y":23.072,"w":1.723,"clr":-1,"A":"left","R":[{"T":"13b","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":8.415,"y":24.072,"w":0.8520000000000001,"clr":-1,"A":"left","R":[{"T":"c%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":24.072,"w":27.398999999999997,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2013a%20and%2013b.%20(Even%20though%20these%20income%20items%20are%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.891,"y":24.76,"w":8.002,"clr":-1,"A":"left","R":[{"T":"not%20taxable%2C%20they%20%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":24.645,"y":24.76,"w":2.666,"clr":-1,"A":"left","R":[{"T":"must%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":29.227,"y":24.76,"w":18.41,"clr":-1,"A":"left","R":[{"T":"%20be%20included%20here%20to%20figure%20your%20credit.)%20If%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.891,"y":25.447,"w":28.82100000000001,"clr":-1,"A":"left","R":[{"T":"you%20did%20not%20receive%20any%20of%20the%20types%20of%20nontaxable%20income%20listed%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.884,"y":26.135,"w":17.914000000000005,"clr":-1,"A":"left","R":[{"T":"on%20line%2013a%20or%2013b%2C%20enter%20-0-%20on%20line%2013c%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":43.059,"y":26.135,"w":10.8,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.035,"y":26.072,"w":1.6860000000000002,"clr":-1,"A":"left","R":[{"T":"13c","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.503,"y":26.947,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"14%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":26.947,"w":18.174000000000003,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20amount%20from%20Form%201040A%2C%20line%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.886,"y":27.635,"w":11.172000000000004,"clr":-1,"A":"left","R":[{"T":"22%2C%20or%20Form%201040%2C%20line%2038","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":30.686,"y":27.635,"w":6.000000000000001,"clr":-1,"A":"left","R":[{"T":".....","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":43.965,"y":27.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"14","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.503,"y":28.385,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":28.385,"w":11.812999999999999,"clr":-1,"A":"left","R":[{"T":"If%20you%20checked%20(in%20Part%20I)%3A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":35.718,"y":28.385,"w":2.834,"clr":-1,"A":"left","R":[{"T":"Enter%3A","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.135,"w":4.9079999999999995,"clr":-1,"A":"left","R":[{"T":"Box%201%20or%202%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.377,"y":29.135,"w":7.200000000000001,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":35.334,"y":29.135,"w":3.0580000000000003,"clr":-1,"A":"left","R":[{"T":"%247%2C500","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":29.885,"w":8.522,"clr":-1,"A":"left","R":[{"T":"Box%203%2C%204%2C%205%2C%206%2C%20or%207%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":26.564,"y":29.885,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":28.627,"y":29.885,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":30.689,"y":29.885,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":34.378,"y":29.885,"w":3.6140000000000003,"clr":-1,"A":"left","R":[{"T":"%2410%2C000","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":30.635,"w":4.9079999999999995,"clr":-1,"A":"left","R":[{"T":"Box%208%20or%209%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":20.377,"y":30.635,"w":7.200000000000001,"clr":-1,"A":"left","R":[{"T":"......","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":35.334,"y":30.635,"w":3.0580000000000003,"clr":-1,"A":"left","R":[{"T":"%245%2C000","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":41.691,"y":30.126,"w":0.48,"clr":-1,"A":"left","R":[{"T":"%7D","S":-1,"TS":[3,21,0,0]}]},{"oc":"#221f1f","x":44.061,"y":29.84,"w":1.112,"clr":-1,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"oc":"#221f1f","x":6.503,"y":31.447000000000003,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"16%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":31.447000000000003,"w":17.354000000000006,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2015%20from%20line%2014.%20If%20zero%20or%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.891,"y":32.135,"w":6.4830000000000005,"clr":-1,"A":"left","R":[{"T":"less%2C%20enter%20-0-%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":22.441,"y":32.135,"w":10.8,"clr":-1,"A":"left","R":[{"T":".........","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":43.965,"y":32.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"16","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.503,"y":32.885,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":32.885,"w":10.928000000000006,"clr":-1,"A":"left","R":[{"T":"Enter%20one-half%20of%20line%2016%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":30.69,"y":32.885,"w":17.999999999999996,"clr":-1,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":62.528,"y":32.822,"w":1.112,"clr":-1,"A":"left","R":[{"T":"17","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.503,"y":33.635,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":33.635,"w":9.43,"clr":-1,"A":"left","R":[{"T":"Add%20lines%2013c%20and%2017","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":28.627,"y":33.635,"w":29.99999999999999,"clr":-1,"A":"left","R":[{"T":".........................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":81.09,"y":33.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"18","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.503,"y":34.447,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"19%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":34.447,"w":19.669000000000004,"clr":-1,"A":"left","R":[{"T":"Subtract%20line%2018%20from%20line%2012.%20If%20zero%20or%20less%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":44.713,"y":34.447,"w":2.667,"clr":-1,"A":"left","R":[{"T":"stop%3B%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":49.298,"y":34.447,"w":1.9080000000000001,"clr":-1,"A":"left","R":[{"T":"you%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":52.58,"y":34.447,"w":3.575,"clr":-1,"A":"left","R":[{"T":"cannot%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":58.726,"y":34.447,"w":12.039000000000001,"clr":-1,"A":"left","R":[{"T":"take%20the%20credit.%20Otherwise%2C%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.883,"y":35.135,"w":5.798000000000002,"clr":-1,"A":"left","R":[{"T":"go%20to%20line%2020%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":22.433,"y":35.135,"w":34.8,"clr":-1,"A":"left","R":[{"T":"............................%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":81.09,"y":35.072,"w":1.112,"clr":-1,"A":"left","R":[{"T":"19","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.503,"y":35.885,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":35.885,"w":12.653000000000006,"clr":-1,"A":"left","R":[{"T":"Multiply%20line%2019%20by%2015%25%20(.15)","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":32.752,"y":35.885,"w":27.59999999999999,"clr":-1,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":81.09,"y":35.822,"w":1.112,"clr":-1,"A":"left","R":[{"T":"20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.503,"y":36.635,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":36.635,"w":38.36199999999999,"clr":-1,"A":"left","R":[{"T":"Tax%20liability%20limit.%20Enter%20the%20amount%20from%20the%20Credit%20Limit%20Worksheet%20in%20the%20instructions%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":78.125,"y":36.635,"w":0.278,"clr":-1,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":81.09,"y":36.572,"w":1.112,"clr":-1,"A":"left","R":[{"T":"21","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":6.503,"y":37.447,"w":1.3900000000000001,"clr":-1,"A":"left","R":[{"T":"22%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.89,"y":37.447,"w":17.737000000000002,"clr":-1,"A":"left","R":[{"T":"Credit%20for%20the%20elderly%20or%20the%20disabled.%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":41.556,"y":37.447,"w":4.316000000000001,"clr":-1,"A":"left","R":[{"T":"Enter%20the%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":49.025,"y":37.447,"w":3.7740000000000005,"clr":-1,"A":"left","R":[{"T":"smaller%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":55.538,"y":37.447,"w":13.799000000000003,"clr":-1,"A":"left","R":[{"T":"of%20line%2020%20or%20line%2021.%20Also%20enter%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.895,"y":38.135,"w":36.348000000000006,"clr":-1,"A":"left","R":[{"T":"this%20amount%20on%20Form%201040A%2C%20line%2030%2C%20or%20include%20on%20Form%201040%2C%20line%2053%20(check%20box%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":75.582,"y":38.135,"w":2.242,"clr":-1,"A":"left","R":[{"T":"%20and%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.895,"y":38.822,"w":18.893000000000004,"clr":-1,"A":"left","R":[{"T":"enter%20%E2%80%9CSch%20R%E2%80%9D%20on%20the%20line%20next%20to%20that%20box)%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":45.132,"y":38.822,"w":20.399999999999995,"clr":-1,"A":"left","R":[{"T":".................","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":81.09,"y":38.822,"w":1.112,"clr":-1,"A":"left","R":[{"T":"22","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":76.779,"y":39.626,"w":18.26400000000001,"clr":-1,"A":"left","R":[{"T":"Schedule%20R%20(Form%201040A%20or%201040)%202013","S":2,"TS":[0,10,0,0]}]},{"x":74.105,"y":38.131,"w":10.56,"clr":0,"A":"left","R":[{"T":"%20c%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.895,"y":38.135,"w":36.348000000000006,"clr":-1,"A":"left","R":[{"T":"this%20amount%20on%20Form%201040A%2C%20line%2030%2C%20or%20include%20on%20Form%201040%2C%20line%2053%20(check%20box%20","S":-1,"TS":[0,13,0,0]}]},{"oc":"#221f1f","x":10.895,"y":38.135,"w":36.348000000000006,"clr":-1,"A":"left","R":[{"T":"this%20amount%20on%20Form%201040A%2C%20line%2030%2C%20or%20include%20on%20Form%201040%2C%20line%2053%20(check%20box%20","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":8921,"AM":1024,"x":28.731,"y":2.143,"w":45.038,"h":0.833,"TU":"Name(s) shown on Form 1040A or 1040"},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":8922,"AM":1024,"x":76.706,"y":2.099,"w":17.041,"h":0.84,"TU":"Your social security number"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":8923,"AM":0,"x":84.508,"y":5.179,"w":11.983,"h":0.833,"TU":"10"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":8924,"AM":0,"x":84.398,"y":12,"w":11.901,"h":0.833,"TU":"11"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":8925,"AM":1024,"x":84.398,"y":17.204,"w":11.901,"h":0.833,"TU":"12"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13A","EN":0},"TI":8926,"AM":0,"x":65.835,"y":20.984,"w":11.901,"h":0.833,"TU":"Line 13a. Nontaxable part of social security benefits and nontaxable part of railroad retirement benefits treated as social security (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13B","EN":0},"TI":8927,"AM":0,"x":65.794,"y":23.204,"w":11.983,"h":0.833,"TU":"Line 13b. Nontaxable veterans' pensions and any other pension, annuity, or disability benefit that is excluded from income under any other provision of law (see instructions)."},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13C","EN":0},"TI":8928,"AM":1024,"x":65.835,"y":26.169,"w":11.901,"h":0.833,"TU":"13c"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":8929,"AM":1024,"x":47.169,"y":27.578,"w":12.107,"h":0.907,"TU":"14"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":8930,"AM":0,"x":47.231,"y":29.949,"w":11.983,"h":0.833,"TU":"15"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":8931,"AM":1024,"x":47.231,"y":32.172,"w":11.983,"h":0.833,"TU":"16"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":8932,"AM":1024,"x":65.835,"y":32.973,"w":11.901,"h":0.833,"TU":"17"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":8933,"AM":1024,"x":84.398,"y":33.721,"w":11.901,"h":0.833,"TU":"18"},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":8934,"AM":1024,"x":84.336,"y":35.238,"w":12.024,"h":0.833,"TU":"19"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":8935,"AM":1024,"x":84.253,"y":36.038,"w":12.189,"h":0.833,"TU":"20"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LIABLMT","EN":0},"TI":8936,"AM":1024,"x":84.253,"y":36.795,"w":12.189,"h":0.833,"TU":"21"},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CREDIT","EN":0},"TI":8937,"AM":1024,"x":84.356,"y":38.942,"w":11.983,"h":0.833,"TU":"22"}],"Boxsets":[]}],"Width":105.188}} \ No newline at end of file +{"formImage":{"Transcoder":"pdf2json@4.0.3 [https://github.com/modesty/pdf2json]","Meta":{"PDFFormatVersion":"1.6","IsAcroFormPresent":true,"IsXFAPresent":false,"Author":"SE:W:CAR:MP","Subject":"Credit for the Elderly or the Disabled","Creator":"Adobe LiveCycle Designer ES 8.2","Producer":"Acrobat Distiller 10.1.8 (Windows)","CreationDate":"D:20131126073922-08'00'","ModDate":"D:20140123132535-08'00'","Metadata":{}},"Pages":[{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":6.001,"w":1.5,"l":5.431,"oc":"#221f1f"},{"x":7.635,"y":6.001,"w":1.5,"l":17.581,"oc":"#221f1f"},{"x":25.185,"y":6.001,"w":1.5,"l":5.431,"oc":"#221f1f"},{"x":27.809,"y":3.104,"w":6,"l":1.175,"oc":"#9a9d9f"},{"x":27.017,"y":5.896,"w":3,"l":1.875,"oc":"#848587"},{"x":27.08,"y":3.646,"w":3,"l":1.25,"oc":"#848587"},{"x":28.33,"y":4.209,"w":3,"l":0.563,"oc":"#848587"},{"x":25.205,"y":4.655,"w":3,"l":1.875,"oc":"#221f1f"},{"x":25.205,"y":2.405,"w":3,"l":1.313,"oc":"#221f1f"},{"x":26.517,"y":2.967,"w":3,"l":0.563,"oc":"#221f1f"},{"x":30.57,"y":3.001,"w":0.75,"l":5.447,"oc":"#221f1f"},{"x":30.57,"y":6.001,"w":1.5,"l":5.447,"oc":"#221f1f"},{"x":2.235,"y":7.501,"w":0.75,"l":26.581,"oc":"#221f1f"},{"x":28.785,"y":7.501,"w":0.75,"l":7.231,"oc":"#221f1f"},{"x":2.345,"y":11.751,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":2.345,"y":10.626,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":2.235,"y":12.001,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":12.751,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":13.501,"w":0.75,"l":9.481,"oc":"#221f1f"},{"x":11.685,"y":13.501,"w":0.75,"l":17.581,"oc":"#221f1f"},{"x":29.235,"y":13.501,"w":0.75,"l":6.781,"oc":"#221f1f"},{"x":2.235,"y":17.251,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":34.401,"y":16.376,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":34.401,"y":15.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":2.235,"y":28.509,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":34.406,"y":27.634,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":34.406,"y":27.134,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":2.235,"y":32.989,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.251,"y":35.953,"w":1.5,"l":4.5,"oc":"#221f1f"},{"x":2.251,"y":33.751,"w":1.5,"l":4.5,"oc":"#221f1f"},{"x":6.751,"y":34.126,"w":1.5,"l":3.318,"oc":"#221f1f"},{"x":11.672,"y":34.126,"w":1.5,"l":2.069,"oc":"#221f1f"},{"x":6.786,"y":35.251,"w":1.5,"l":3.318,"oc":"#221f1f"},{"x":11.579,"y":35.248,"w":1.5,"l":2.069,"oc":"#221f1f"},{"x":2.235,"y":36.751,"w":1.125,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":37.501,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":2.235,"y":45.751,"w":1.5,"l":18.031,"oc":"#221f1f"},{"x":20.235,"y":45.751,"w":1.5,"l":7.681,"oc":"#221f1f"},{"x":27.885,"y":45.751,"w":1.5,"l":8.131,"oc":"#221f1f"}],"VLines":[{"x":7.681,"y":2.235,"w":1.5,"l":3.797,"oc":"#221f1f"},{"x":28.892,"y":4.209,"w":3,"l":1.688,"oc":"#848587"},{"x":27.017,"y":4.624,"w":3,"l":1.312,"oc":"#848587"},{"x":28.33,"y":3.646,"w":3,"l":0.563,"oc":"#848587"},{"x":27.08,"y":2.967,"w":3,"l":1.688,"oc":"#221f1f"},{"x":25.205,"y":2.405,"w":3,"l":2.25,"oc":"#221f1f"},{"x":26.517,"y":2.405,"w":3,"l":0.563,"oc":"#221f1f"},{"x":30.601,"y":2.235,"w":1.5,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":2.985,"w":1.5,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":4.485,"w":1.5,"l":1.547,"oc":"#221f1f"},{"x":28.801,"y":5.97,"w":0.75,"l":1.547,"oc":"#221f1f"},{"x":2.251,"y":10.72,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":3.376,"y":10.72,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":34.901,"y":15.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":34.401,"y":15.876,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":34.906,"y":27.134,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":34.406,"y":27.134,"w":0.75,"l":0.5,"oc":"#221f1f"},{"x":6.751,"y":33.751,"w":1.5,"l":2.202,"oc":"#221f1f"},{"x":2.251,"y":33.751,"w":1.5,"l":2.202,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":12.001,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":2.251,"y":36.751,"w":2.25,"h":0.75,"oc":"#221f1f"}],"Texts":[{"x":2.031,"y":2.01,"w":5.982,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule R ","S":-1,"TS":[0,13,0,0]}]},{"x":2.031,"y":2.697,"w":6.26,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Form 1040A ","S":-1,"TS":[0,13,0,0]}]},{"x":2.031,"y":3.385,"w":4.076,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or 1040) ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":4.526,"w":12.818,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Department of the Treasury ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":2.001,"y":5.026,"w":13.279,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Internal Revenue Service (99) ","S":-1,"TS":[0,9.440000000000001,0,0]}]},{"x":9.027,"y":2.47,"w":16.34,"oc":"#221f1f","sw":0.390625,"A":"left","R":[{"T":"Credit for the Elderly or the Disabled","S":-1,"TS":[2,17,0,0]}]},{"x":10.847,"y":3.6159999999999997,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":11.222,"y":3.71,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,11,0,0]}]},{"x":11.361,"y":3.71,"w":20.286,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete and attach to Form 1040A or 1040.","S":-1,"TS":[0,11,0,0]}]},{"x":21.504,"y":3.6159999999999997,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,9,0,0]}]},{"x":8.323,"y":4.179,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":51,"TS":[0,9,0,0]}]},{"x":8.698,"y":4.272,"w":30.662,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" Information about Schedule R and its separate instructions is at","S":-1,"TS":[0,11,0,0]}]},{"x":24.029,"y":4.179,"w":0.28,"oc":"#221f1f","sw":0.36459375,"A":"left","R":[{"T":" ","S":-1,"TS":[3,9,0,0]}]},{"x":13.36,"y":4.814,"w":11.262,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"www.irs.gov/scheduler.","S":-1,"TS":[0,11,0,0]}]},{"x":25.148,"y":2.751,"w":3.187,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1040A ","S":-1,"TS":[0,11,0,0]}]},{"x":24.951,"y":3.027,"w":5.56,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":". . . . . . . . . . ","S":1,"TS":[0,8,0,0]}]},{"x":25.309,"y":3.676,"w":2.502,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1040 ","S":-1,"TS":[0,11,0,0]}]},{"x":27.405,"y":4.408,"w":0.722,"oc":"#848587","sw":0.36196875,"A":"left","R":[{"T":"R","S":-1,"TS":[0,15,0,0]}]},{"x":26.947,"y":2.493,"w":1,"oc":"#9a9d9f","sw":0.32553125,"A":"left","R":[{"T":"`","S":-1,"TS":[0,13,0,0]}]},{"x":31.02,"y":1.9729999999999999,"w":9.283,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"OMB No. 1545-0074","S":2,"TS":[0,10,0,0]}]},{"x":31.426,"y":3.518,"w":1.264,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"20","S":-1,"TS":[0,23,0,0]}]},{"x":33.006,"y":3.518,"w":1.336,"oc":"#221f1f","sw":0.43490625,"A":"left","R":[{"T":"13","S":-1,"TS":[0,23,0,0]}]},{"x":31.101,"y":4.438,"w":6.003,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Attachment ","S":2,"TS":[0,10,0,0]}]},{"x":31.101,"y":5.01,"w":6.631,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Sequence No. ","S":2,"TS":[0,10,0,0]}]},{"x":34.002,"y":5.01,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16","S":-1,"TS":[0,13,0,0]}]},{"x":34.697,"y":5.01,"w":0.334,"oc":"#221f1f","sw":0.43490625,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":5.679,"w":17.746,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Name(s) shown on Form 1040A or 1040","S":2,"TS":[0,10,0,0]}]},{"x":28.801,"y":5.687,"w":13.368,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Your social security number","S":2,"TS":[0,10,0,0]}]},{"x":2.001,"y":7.385,"w":34.529,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You may be able to take this credit and reduce your tax if by the end of 2013:","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":8.197,"w":13.983,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• You were age 65 or older ","S":-1,"TS":[0,13,0,0]}]},{"x":10.74,"y":8.197,"w":1,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or","S":-1,"TS":[0,13,0,0]}]},{"x":11.365,"y":8.197,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":8.885,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":13.251,"y":8.197,"w":18.188,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• You were under age 65, you retired on ","S":-1,"TS":[0,13,0,0]}]},{"x":24.618,"y":8.197,"w":9.925,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"permanent and total ","S":-1,"TS":[0,13,0,0]}]},{"x":30.821,"y":8.197,"w":8.114,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"disability, and ","S":-1,"TS":[0,13,0,0]}]},{"x":13.813,"y":8.885,"w":17.28,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you received taxable disability income.","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":9.572,"w":23.655,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"But you must also meet other tests. See instructions.","S":-1,"TS":[0,13,0,0]}]},{"x":2.244,"y":10.581,"w":1.705,"oc":"#221f1f","sw":0.43490625,"A":"left","R":[{"T":"TIP","S":51,"TS":[0,9,0,0]}]},{"x":3.801,"y":10.64,"w":30.672,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"In most cases, the IRS can figure the credit for you. See instructions.","S":-1,"TS":[0,13,0,0]}]},{"x":2.327,"y":11.822,"w":2.555,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part I","S":-1,"TS":[0,13,0,0]}]},{"x":5.126,"y":11.822,"w":21.52,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check the Box for Your Filing Status and Age","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":12.541,"w":10.181,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If your filing status is:","S":-1,"TS":[0,13,0,0]}]},{"x":11.451,"y":12.541,"w":11.152,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"And by the end of 2013:","S":-1,"TS":[0,13,0,0]}]},{"x":29.697,"y":12.541,"w":9.686,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Check only one box:","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":14.015,"w":3.315,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Single, ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":14.765,"w":10.224,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Head of household, or ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":15.515,"w":9.016,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Qualifying widow(er)","S":-1,"TS":[0,13,0,0]}]},{"x":9.753,"y":14.134,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1","S":-1,"TS":[0,13,0,0]}]},{"x":10.551,"y":14.134,"w":9.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You were 65 or older ","S":-1,"TS":[0,13,0,0]}]},{"x":17.001,"y":14.134,"w":24,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,13,0,0]}]},{"x":32.652,"y":14.072,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1","S":-1,"TS":[0,13,0,0]}]},{"x":9.753,"y":15.635000000000002,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"x":10.551,"y":15.635000000000002,"w":30.952,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You were under 65 and you retired on permanent and total disability ","S":-1,"TS":[0,13,0,0]}]},{"x":30.5,"y":15.635000000000002,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"x":31.25,"y":15.635000000000002,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"x":32.652,"y":15.572,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":21.924,"w":6.074,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Married filing ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":22.611,"w":2.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"jointly","S":-1,"TS":[0,13,0,0]}]},{"x":9.759,"y":17.893,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3","S":-1,"TS":[0,13,0,0]}]},{"x":10.556,"y":17.893,"w":13.723,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Both spouses were 65 or older","S":-1,"TS":[0,13,0,0]}]},{"x":19.251,"y":17.893,"w":20.4,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................","S":-1,"TS":[0,13,0,0]}]},{"x":31.567,"y":17.893,"w":1.2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":32.658,"y":17.83,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3","S":-1,"TS":[0,13,0,0]}]},{"x":10.556,"y":19.455,"w":34.38,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Both spouses were under 65, but only one spouse retired on permanent and ","S":-1,"TS":[0,13,0,0]}]},{"x":10.555,"y":20.143,"w":6.445,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"total disability ","S":-1,"TS":[0,13,0,0]}]},{"x":14.749,"y":20.143,"w":27.6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,13,0,0]}]},{"x":31.566,"y":20.143,"w":1.2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":9.759,"y":21.705,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5","S":-1,"TS":[0,13,0,0]}]},{"x":10.556,"y":21.705,"w":31.546,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Both spouses were under 65, and both retired on permanent and total ","S":-1,"TS":[0,13,0,0]}]},{"x":10.556,"y":22.393,"w":3.926,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"disability","S":-1,"TS":[0,13,0,0]}]},{"x":13.25,"y":22.393,"w":30,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........................","S":-1,"TS":[0,13,0,0]}]},{"x":32.657,"y":22.33,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"5","S":-1,"TS":[0,13,0,0]}]},{"x":9.759,"y":23.955,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6","S":-1,"TS":[0,13,0,0]}]},{"x":10.556,"y":23.955,"w":34.341,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"One spouse was 65 or older, and the other spouse was under 65 and retired ","S":-1,"TS":[0,13,0,0]}]},{"x":10.558,"y":24.643,"w":14.912,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on permanent and total disability ","S":-1,"TS":[0,13,0,0]}]},{"x":20.002,"y":24.643,"w":19.2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"................","S":-1,"TS":[0,13,0,0]}]},{"x":31.568,"y":24.643,"w":1.2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":32.659,"y":24.58,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"6","S":-1,"TS":[0,13,0,0]}]},{"x":9.759,"y":26.205,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7","S":-1,"TS":[0,13,0,0]}]},{"x":10.556,"y":26.205,"w":31.193,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"One spouse was 65 or older, and the other spouse was under 65 and ","S":-1,"TS":[0,13,0,0]}]},{"x":29.962,"y":26.252,"w":1.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"not ","S":-1,"TS":[0,13,0,0]}]},{"x":10.553,"y":26.893,"w":17.782,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"retired on permanent and total disability","S":-1,"TS":[0,13,0,0]}]},{"x":22.247,"y":26.893,"w":15.6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":-1,"TS":[0,13,0,0]}]},{"x":31.564,"y":26.893,"w":1.2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":32.654,"y":26.83,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"7","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":29.81,"w":6.074,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Married filing ","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":30.498,"w":4.611,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"separately","S":-1,"TS":[0,13,0,0]}]},{"x":9.753,"y":29.123,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8","S":-1,"TS":[0,13,0,0]}]},{"x":10.551,"y":29.123,"w":33.209,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You were 65 or older and you lived apart from your spouse for all of 2013 .","S":-1,"TS":[0,13,0,0]}]},{"x":32.652,"y":29.06,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8","S":-1,"TS":[0,13,0,0]}]},{"x":9.753,"y":30.685,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9","S":-1,"TS":[0,13,0,0]}]},{"x":10.551,"y":30.685,"w":33.138,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You were under 65, you retired on permanent and total disability, and you ","S":-1,"TS":[0,13,0,0]}]},{"x":10.553,"y":31.372999999999998,"w":19.448,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"lived apart from your spouse for all of 2013 ","S":-1,"TS":[0,13,0,0]}]},{"x":23.003,"y":31.372999999999998,"w":14.4,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":-1,"TS":[0,13,0,0]}]},{"x":32.654,"y":31.310000000000002,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"9","S":-1,"TS":[0,13,0,0]}]},{"x":2.126,"y":33.58,"w":7.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you check ","S":-1,"TS":[0,13,0,0]}]},{"x":2.126,"y":34.267,"w":6.651,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"box 1, 3, 7, or ","S":-1,"TS":[0,13,0,0]}]},{"x":2.126,"y":34.955,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"8?","S":-1,"TS":[0,13,0,0]}]},{"x":10.101,"y":33.635,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,13,0,0]}]},{"x":13.438,"y":33.567,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"x":14.601,"y":33.635,"w":20.301,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Skip Part II and complete Part III on the back.","S":-1,"TS":[0,13,0,0]}]},{"x":10.101,"y":34.616,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":-1,"TS":[0,13,0,0]}]},{"x":13.376,"y":34.646,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"x":14.601,"y":34.76,"w":11.057,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Complete Parts II and III.","S":-1,"TS":[0,13,0,0]}]},{"x":2.235,"y":36.572,"w":2.85,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part II","S":-1,"TS":[0,13,0,0]}]},{"x":5.126,"y":36.572,"w":21.032,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Statement of Permanent and Total Disability","S":-1,"TS":[0,13,0,0]}]},{"x":18.271,"y":36.572,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":3,"TS":[0,12,0,0]}]},{"x":18.427,"y":36.572,"w":4.89,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"(Complete ","S":3,"TS":[0,12,0,0]}]},{"x":21.178,"y":36.572,"w":2.259,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"only ","S":3,"TS":[0,12,0,0]}]},{"x":22.448,"y":36.572,"w":18.506,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"if you checked box 2, 4, 5, 6, or 9 above.)","S":3,"TS":[0,12,0,0]}]},{"x":2.001,"y":37.402,"w":0.906,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If:","S":3,"TS":[0,12,0,0]}]},{"x":3.003,"y":37.385,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"1","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":37.447,"w":43.58,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You filed a physician’s statement for this disability for 1983 or an earlier year, or you filed or got a ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":38.135,"w":38.492,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"statement for tax years after 1983 and your physician signed line B on the statement, ","S":-1,"TS":[0,13,0,0]}]},{"x":26.67,"y":38.188,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"and","S":-1,"TS":[0,13,0,0]}]},{"x":3.003,"y":39.628,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":39.697,"w":46.102,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Due to your continued disabled condition, you were unable to engage in any substantial gainful activity ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":40.385,"w":10.634,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"in 2013, check this box ","S":-1,"TS":[0,13,0,0]}]},{"x":11.001,"y":40.385,"w":36,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............................. ","S":-1,"TS":[0,13,0,0]}]},{"x":32.946,"y":40.291,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":2,"TS":[0,10,0,0]}]},{"x":3.801,"y":41.885,"w":34.77,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you checked this box, you do not have to get another statement for 2013.","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":43.447,"w":3.519,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• If you ","S":-1,"TS":[0,13,0,0]}]},{"x":6.04,"y":43.447,"w":3.592,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"did not ","S":-1,"TS":[0,13,0,0]}]},{"x":8.311,"y":43.447,"w":37.641,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"check this box, have your physician complete the statement in the instructions. You ","S":-1,"TS":[0,13,0,0]}]},{"x":30.695,"y":43.4,"w":2.388,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"must","S":-1,"TS":[0,13,0,0]}]},{"x":33.5,"y":43.447,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":4.362,"y":44.135,"w":16.3,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"keep the statement for your records.","S":-1,"TS":[0,13,0,0]}]},{"x":2.001,"y":45.608,"w":33.538,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"For Paperwork Reduction Act Notice, see your tax return instructions. ","S":-1,"TS":[0,11,0,0]}]},{"x":22.201,"y":45.626,"w":7.707,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Cat. No. 11359K ","S":2,"TS":[0,10,0,0]}]},{"x":27.76,"y":45.626,"w":18.264,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule R (Form 1040A or 1040) 2013","S":2,"TS":[0,10,0,0]}]},{"x":32.658,"y":17.83,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"3","S":-1,"TS":[0,13,0,0]}]},{"x":9.781,"y":19.438,"w":5.56,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"4","S":10,"TS":[0,14,1,0]}]},{"x":32.618,"y":20.052,"w":5.56,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":"4","S":10,"TS":[0,14,1,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAME","EN":0},"TI":1271,"AM":1024,"TU":"Name(s) shown on Form 1040A or 1040","x":2.265,"y":6.616,"w":26.49,"h":0.869},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN","EN":0},"TI":1272,"AM":1024,"TU":"Your social security number","x":28.88,"y":6.623,"w":7.14,"h":0.862}],"Boxsets":[{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS1","EN":0},"TI":1273,"AM":0,"TU":"Filing status checkbox","x":34.411,"y":14.208,"w":0.545,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS2","EN":0},"TI":1274,"AM":0,"TU":"Filing status checkbox","x":34.387,"y":15.731,"w":0.545,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS3","EN":0},"TI":1275,"AM":0,"TU":"Filing status checkbox","x":34.393,"y":18.002,"w":0.545,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS4","EN":0},"TI":1276,"AM":0,"TU":"Filing status checkbox","x":34.371,"y":20.244,"w":0.545,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS5","EN":0},"TI":1277,"AM":0,"TU":"Filing status checkbox","x":34.377,"y":22.459,"w":0.545,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS6","EN":0},"TI":1278,"AM":0,"TU":"Filing status checkbox","x":34.41,"y":24.73,"w":0.545,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS7","EN":0},"TI":1279,"AM":0,"TU":"Filing status checkbox","x":34.361,"y":27,"w":0.545,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS8","EN":0},"TI":1280,"AM":0,"TU":"Filing status checkbox","x":34.394,"y":29.215,"w":0.545,"h":0.833,"checked":false},{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"FS9","EN":0},"TI":1281,"AM":0,"TU":"Filing status checkbox","x":34.406,"y":31.464,"w":0.545,"h":0.833,"checked":false}],"id":{"Id":"FSRB","EN":0}},{"boxes":[{"style":48,"T":{"Name":"box","TypeInfo":{}},"id":{"Id":"STX","EN":0},"TI":1282,"AM":0,"TU":"Part II. Line 2. Due to your continued disabled condition, you were unable to engage in any substantial gainful activity in 2013, check this box.","x":34.384,"y":40.5,"w":0.655,"h":0.833}]}]},{"Width":38.25,"Height":49.5,"HLines":[{"x":2.235,"y":3.001,"w":1.5,"l":31.531,"oc":"#221f1f"},{"x":33.735,"y":3.001,"w":1.5,"l":2.281,"oc":"#221f1f"},{"x":2.235,"y":3.751,"w":0.75,"l":33.781,"oc":"#221f1f"},{"x":29.235,"y":3.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":6.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":6.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":4.051,"y":9.429,"w":1.5,"l":4.95,"oc":"#221f1f"},{"x":4.051,"y":7.179,"w":1.5,"l":4.95,"oc":"#221f1f"},{"x":9.001,"y":7.92,"w":1.5,"l":3.75,"oc":"#221f1f"},{"x":14.606,"y":7.92,"w":1.5,"l":3.188,"oc":"#221f1f"},{"x":9.001,"y":9.026,"w":1.5,"l":3.75,"oc":"#221f1f"},{"x":14.59,"y":9.026,"w":1.5,"l":3.188,"oc":"#221f1f"},{"x":29.235,"y":6.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":12.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":12.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":2.345,"y":16.126,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":2.345,"y":15.001,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":29.235,"y":12.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":18.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":18.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":23.835,"y":21.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.335,"y":21.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":22.485,"y":21.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":23.835,"y":24.001,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":28.335,"y":24.001,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":22.485,"y":24.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":23.835,"y":27.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":28.335,"y":27.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":17.085,"y":28.501,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":21.585,"y":28.501,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":15.735,"y":28.501,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":17.085,"y":30.751,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":21.585,"y":30.751,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":15.735,"y":30.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":15.735,"y":33.001,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":17.085,"y":33.001,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":21.585,"y":33.001,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":22.485,"y":27.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":22.485,"y":33.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":23.835,"y":33.751,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":28.335,"y":33.751,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":29.235,"y":18.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":29.235,"y":34.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":34.501,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":34.501,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":29.235,"y":36.001,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":36.001,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":36.001,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":29.235,"y":36.751,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":36.751,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":36.751,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":30.585,"y":37.501,"w":1.125,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":37.501,"w":1.125,"l":0.931,"oc":"#221f1f"},{"x":29.235,"y":37.501,"w":1.125,"l":1.381,"oc":"#221f1f"},{"x":29.235,"y":39.751,"w":0.75,"l":1.381,"oc":"#221f1f"},{"x":30.585,"y":39.751,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.085,"y":39.751,"w":0.75,"l":0.931,"oc":"#221f1f"},{"x":2.235,"y":39.751,"w":1.5,"l":33.781,"oc":"#221f1f"}],"VLines":[{"x":30.601,"y":3.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":3.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":30.601,"y":5.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":5.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":3.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":5.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":9.001,"y":7.179,"w":1.5,"l":2.25,"oc":"#221f1f"},{"x":4.051,"y":7.179,"w":1.5,"l":2.25,"oc":"#221f1f"},{"x":30.601,"y":5.985,"w":0.75,"l":6.031,"oc":"#221f1f"},{"x":29.251,"y":5.985,"w":0.75,"l":6.031,"oc":"#221f1f"},{"x":30.601,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":5.985,"w":0.75,"l":6.031,"oc":"#221f1f"},{"x":35.101,"y":11.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":2.251,"y":15.095,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":3.376,"y":15.095,"w":0.75,"l":0.938,"oc":"#221f1f"},{"x":30.601,"y":12.735,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":29.251,"y":12.735,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":30.601,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":17.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":12.735,"w":0.75,"l":4.531,"oc":"#221f1f"},{"x":35.101,"y":17.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":18.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":22.501,"y":18.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":23.851,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.351,"y":18.735,"w":0.75,"l":2.281,"oc":"#221f1f"},{"x":28.351,"y":20.985,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":23.851,"y":21.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":22.501,"y":21.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":23.851,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":23.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.351,"y":21.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":28.351,"y":23.235,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":23.851,"y":23.978,"w":0.75,"l":2.289,"oc":"#221f1f"},{"x":22.501,"y":23.978,"w":0.75,"l":2.289,"oc":"#221f1f"},{"x":23.851,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":22.501,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":28.351,"y":23.985,"w":0.75,"l":3.031,"oc":"#221f1f"},{"x":28.351,"y":26.235,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":17.101,"y":27.462,"w":0.75,"l":1.055,"oc":"#221f1f"},{"x":15.751,"y":27.462,"w":0.75,"l":1.055,"oc":"#221f1f"},{"x":21.601,"y":27.462,"w":0.75,"l":1.055,"oc":"#221f1f"},{"x":17.101,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":15.751,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":17.101,"y":29.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":15.751,"y":29.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":21.601,"y":28.485,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":29.986,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":17.101,"y":30.728,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":15.751,"y":30.728,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":17.101,"y":32.236,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":15.751,"y":32.236,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":21.601,"y":30.735,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":21.601,"y":32.236,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":23.851,"y":26.985,"w":0.75,"l":6.031,"oc":"#221f1f"},{"x":22.501,"y":26.985,"w":0.75,"l":6.031,"oc":"#221f1f"},{"x":23.851,"y":32.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":22.501,"y":32.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":28.351,"y":26.985,"w":0.75,"l":6.031,"oc":"#221f1f"},{"x":28.351,"y":32.985,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.601,"y":17.985,"w":0.75,"l":15.781,"oc":"#221f1f"},{"x":29.251,"y":17.985,"w":0.75,"l":15.781,"oc":"#221f1f"},{"x":30.601,"y":33.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.251,"y":33.735,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":35.101,"y":17.985,"w":0.75,"l":17.281,"oc":"#221f1f"},{"x":35.101,"y":33.736,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.601,"y":34.486,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":29.251,"y":34.486,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":34.486,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":35.236,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":30.601,"y":35.986,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":29.251,"y":35.986,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":35.101,"y":35.986,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.601,"y":36.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":36.736,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":36.736,"w":0.75,"l":0.789,"oc":"#221f1f"},{"x":30.601,"y":37.478,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":29.251,"y":37.478,"w":0.75,"l":1.539,"oc":"#221f1f"},{"x":30.601,"y":38.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":29.251,"y":38.986,"w":0.75,"l":0.781,"oc":"#221f1f"},{"x":35.101,"y":37.486,"w":0.75,"l":1.531,"oc":"#221f1f"},{"x":35.101,"y":38.986,"w":0.75,"l":0.781,"oc":"#221f1f"}],"Fills":[{"x":2.251,"y":3.001,"w":2.25,"h":0.75,"oc":"#221f1f"},{"x":29.251,"y":6.001,"w":1.35,"h":6,"oc":"#bebfc1"},{"x":29.251,"y":12.751,"w":1.35,"h":4.5,"oc":"#bebfc1"},{"x":22.501,"y":18.751,"w":1.35,"h":2.25,"oc":"#bebfc1"},{"x":22.501,"y":24.001,"w":1.35,"h":2.25,"oc":"#bebfc1"},{"x":22.501,"y":27.001,"w":1.35,"h":6,"oc":"#bebfc1"},{"x":29.251,"y":18.001,"w":1.35,"h":15.75,"oc":"#bebfc1"}],"Texts":[{"x":2.001,"y":1.9729999999999999,"w":17.896,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule R (Form 1040A or 1040) 2013 ","S":2,"TS":[0,10,0,0]}]},{"x":34.277,"y":2.01,"w":2.574,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Page ","S":2,"TS":[0,10,0,0]}]},{"x":35.403,"y":2.01,"w":0.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"2 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.143,"y":2.822,"w":3.145,"clr":1,"sw":0.36196875,"A":"left","R":[{"T":"Part III","S":-1,"TS":[0,13,0,0]}]},{"x":5.126,"y":2.822,"w":8.759,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Figure Your Credit","S":-1,"TS":[0,13,0,0]}]},{"x":2.206,"y":3.635,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":3.635,"w":11.813,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you checked (in Part I):","S":-1,"TS":[0,13,0,0]}]},{"x":17.301,"y":3.635,"w":2.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter:","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":4.385,"w":7.41,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Box 1, 2, 4, or 7 ","S":-1,"TS":[0,13,0,0]}]},{"x":8.751,"y":4.385,"w":14.4,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............","S":-1,"TS":[0,13,0,0]}]},{"x":17.301,"y":4.385,"w":3.058,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"$5,000","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":5.135,"w":6.298,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Box 3, 5, or 6 ","S":-1,"TS":[0,13,0,0]}]},{"x":8.001,"y":5.135,"w":15.6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".............","S":-1,"TS":[0,13,0,0]}]},{"x":17.301,"y":5.135,"w":3.058,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"$7,500","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":5.885,"w":4.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Box 8 or 9 ","S":-1,"TS":[0,13,0,0]}]},{"x":7.251,"y":5.885,"w":16.8,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..............","S":-1,"TS":[0,13,0,0]}]},{"x":17.301,"y":5.885,"w":3.058,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"$3,750","S":-1,"TS":[0,13,0,0]}]},{"x":20.339,"y":5.335,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[3,21,0,0]}]},{"x":21.501,"y":5.001,"w":13.33,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":3,"TS":[0,12,0,0]}]},{"x":29.363,"y":5.09,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"10","S":3,"TS":[0,12,0,0]}]},{"x":3.926,"y":7.032,"w":7.056,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Did you check ","S":-1,"TS":[0,13,0,0]}]},{"x":3.926,"y":7.718999999999999,"w":6.485,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"box 2, 4, 5, 6, ","S":-1,"TS":[0,13,0,0]}]},{"x":3.925,"y":8.407,"w":6.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or 9 in Part I?","S":-1,"TS":[0,13,0,0]}]},{"x":12.909,"y":7.385,"w":1.778,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Yes","S":-1,"TS":[0,13,0,0]}]},{"x":17.593,"y":7.380000000000001,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"x":18.651,"y":7.385,"w":2.334,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"You ","S":-1,"TS":[0,13,0,0]}]},{"x":20.11,"y":7.385,"w":2.666,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"must ","S":-1,"TS":[0,13,0,0]}]},{"x":21.776,"y":7.385,"w":7.929,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" complete line 11.","S":-1,"TS":[0,13,0,0]}]},{"x":12.911,"y":8.342,"w":1.352,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"No","S":-1,"TS":[0,13,0,0]}]},{"x":17.593,"y":8.524,"w":1,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"a","S":3,"TS":[0,12,0,0]}]},{"x":18.651,"y":8.579,"w":13.524,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount from line 10 ","S":-1,"TS":[0,13,0,0]}]},{"x":18.651,"y":9.266,"w":12.375,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on line 12 and go to line 13.","S":-1,"TS":[0,13,0,0]}]},{"x":2.206,"y":9.635,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":9.635,"w":11.813,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you checked (in Part I):","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":10.447,"w":26.267,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Box 6, add $5,000 to the taxable disability income of the ","S":-1,"TS":[0,13,0,0]}]},{"x":4.365,"y":11.135,"w":22.171,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" spouse who was under age 65. Enter the total.","S":-1,"TS":[0,13,0,0]}]},{"x":3.803,"y":11.885,"w":23.727,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Box 2, 4, or 9, enter your taxable disability income.","S":-1,"TS":[0,13,0,0]}]},{"x":3.803,"y":12.697,"w":27.209,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"• Box 5, add your taxable disability income to your spouse’s ","S":-1,"TS":[0,13,0,0]}]},{"x":4.366,"y":13.385,"w":19.245,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" taxable disability income. Enter the total.","S":-1,"TS":[0,13,0,0]}]},{"x":22.534,"y":12.474,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[3,21.2,0,0]}]},{"x":23.751,"y":11.751,"w":9.331,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......","S":3,"TS":[0,12,0,0]}]},{"x":29.328,"y":11.822,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"11","S":-1,"TS":[0,13,0,0]}]},{"x":2.244,"y":14.956,"w":1.705,"oc":"#221f1f","sw":0.43490625,"A":"left","R":[{"T":"TIP","S":51,"TS":[0,9,0,0]}]},{"x":3.926,"y":14.885,"w":22.801,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"For more details on what to include on line 11, see ","S":-1,"TS":[0,13,0,0]}]},{"x":18.176,"y":14.885,"w":8.148,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Figure Your Credit","S":-1,"TS":[0,13,0,0]}]},{"x":23.269,"y":14.885,"w":8.484,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" in the instructions.","S":-1,"TS":[0,13,0,0]}]},{"x":2.206,"y":16.447,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":17.135,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":16.447,"w":15.505,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you completed line 11, enter the ","S":-1,"TS":[0,13,0,0]}]},{"x":14.069,"y":16.447,"w":3.774,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"smaller ","S":-1,"TS":[0,13,0,0]}]},{"x":16.51,"y":16.447,"w":9.021,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of line 10 or line 11. ","S":-1,"TS":[0,13,0,0]}]},{"x":22.643,"y":16.447,"w":5.091,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"All others, ","S":-1,"TS":[0,13,0,0]}]},{"x":25.99,"y":16.447,"w":4.242,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"enter the ","S":-1,"TS":[0,13,0,0]}]},{"x":3.8,"y":17.135,"w":9.208,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"amount from line 10 ","S":-1,"TS":[0,13,0,0]}]},{"x":10.25,"y":17.135,"w":30,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........................","S":-1,"TS":[0,13,0,0]}]},{"x":29.328,"y":17.072,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"12","S":-1,"TS":[0,13,0,0]}]},{"x":2.206,"y":17.947,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":18.635,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":17.947,"w":28.69,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the following pensions, annuities, or disability income that ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":18.635,"w":23.856,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you (and your spouse if filing jointly) received in 2013.","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":19.51,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"a ","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":20.197,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":20.885,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":19.51,"w":28.318,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Nontaxable part of social security benefits and nontaxable part ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":20.197,"w":26.946,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of railroad retirement benefits treated as social security (see ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":20.885,"w":5.445,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"instructions)","S":-1,"TS":[0,13,0,0]}]},{"x":7.251,"y":20.885,"w":24,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"....................","S":-1,"TS":[0,13,0,0]}]},{"x":22.399,"y":20.822,"w":1.686,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13a","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":21.76,"w":0.889,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"b ","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":22.447,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":23.135,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":21.76,"w":28.396,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Nontaxable veterans’ pensions and any other pension, annuity, ","S":-1,"TS":[0,13,0,0]}]},{"x":3.8,"y":22.447,"w":26.71,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"or disability benefit that is excluded from income under any ","S":-1,"TS":[0,13,0,0]}]},{"x":3.7990000000000004,"y":23.135,"w":17.444,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"other provision of law (see instructions)","S":-1,"TS":[0,13,0,0]}]},{"x":14.749,"y":23.135,"w":12,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"..........","S":-1,"TS":[0,13,0,0]}]},{"x":22.387,"y":23.072,"w":1.723,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13b","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":24.072,"w":0.852,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"c ","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":24.76,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":25.447,"w":0.556,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":26.135,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":24.072,"w":27.399,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 13a and 13b. (Even though these income items are ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":24.76,"w":8.002,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"not taxable, they ","S":-1,"TS":[0,13,0,0]}]},{"x":8.803,"y":24.76,"w":2.666,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"must ","S":-1,"TS":[0,13,0,0]}]},{"x":10.469,"y":24.76,"w":18.41,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" be included here to figure your credit.) If ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":25.447,"w":28.821,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you did not receive any of the types of nontaxable income listed ","S":-1,"TS":[0,13,0,0]}]},{"x":3.7990000000000004,"y":26.135,"w":17.914,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"on line 13a or 13b, enter -0- on line 13c ","S":-1,"TS":[0,13,0,0]}]},{"x":15.499,"y":26.135,"w":10.8,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":-1,"TS":[0,13,0,0]}]},{"x":22.399,"y":26.072,"w":1.686,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"13c","S":-1,"TS":[0,13,0,0]}]},{"x":2.206,"y":26.947,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":27.635,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":26.947,"w":18.174,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the amount from Form 1040A, line ","S":-1,"TS":[0,13,0,0]}]},{"x":3.8,"y":27.635,"w":11.172,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22, or Form 1040, line 38","S":-1,"TS":[0,13,0,0]}]},{"x":11,"y":27.635,"w":6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".....","S":-1,"TS":[0,13,0,0]}]},{"x":15.828,"y":27.572,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"14","S":-1,"TS":[0,13,0,0]}]},{"x":2.206,"y":28.385,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":28.385,"w":11.813,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"If you checked (in Part I):","S":-1,"TS":[0,13,0,0]}]},{"x":12.829,"y":28.385,"w":2.834,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter:","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":29.135,"w":4.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Box 1 or 2 ","S":-1,"TS":[0,13,0,0]}]},{"x":7.251,"y":29.135,"w":7.2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":-1,"TS":[0,13,0,0]}]},{"x":12.69,"y":29.135,"w":3.058,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"$7,500","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":29.885,"w":8.522,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Box 3, 4, 5, 6, or 7 ","S":-1,"TS":[0,13,0,0]}]},{"x":9.501,"y":29.885,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"x":10.251,"y":29.885,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"x":11.001,"y":29.885,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"x":12.342,"y":29.885,"w":3.614,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"$10,000","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":30.635,"w":4.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Box 8 or 9 ","S":-1,"TS":[0,13,0,0]}]},{"x":7.251,"y":30.635,"w":7.2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"......","S":-1,"TS":[0,13,0,0]}]},{"x":12.69,"y":30.635,"w":3.058,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"$5,000","S":-1,"TS":[0,13,0,0]}]},{"x":15.001,"y":30.126,"w":0.48,"oc":"#221f1f","sw":0.32553125,"A":"left","R":[{"T":"}","S":-1,"TS":[3,21,0,0]}]},{"x":15.863,"y":29.84,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"15","S":3,"TS":[0,12,0,0]}]},{"x":2.206,"y":31.447000000000003,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":32.135,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":31.447000000000003,"w":17.354,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 15 from line 14. If zero or ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":32.135,"w":6.483,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"less, enter -0- ","S":-1,"TS":[0,13,0,0]}]},{"x":8.001,"y":32.135,"w":10.8,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........","S":-1,"TS":[0,13,0,0]}]},{"x":15.828,"y":32.072,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"16","S":-1,"TS":[0,13,0,0]}]},{"x":2.206,"y":32.885,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":32.885,"w":10.928,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter one-half of line 16 ","S":-1,"TS":[0,13,0,0]}]},{"x":11.001,"y":32.885,"w":18,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"...............","S":-1,"TS":[0,13,0,0]}]},{"x":22.578,"y":32.822,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"17","S":-1,"TS":[0,13,0,0]}]},{"x":2.206,"y":33.635,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":33.635,"w":9.43,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Add lines 13c and 17","S":-1,"TS":[0,13,0,0]}]},{"x":10.251,"y":33.635,"w":30,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".........................","S":-1,"TS":[0,13,0,0]}]},{"x":29.328,"y":33.572,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"18","S":-1,"TS":[0,13,0,0]}]},{"x":2.206,"y":34.447,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":35.135,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":34.447,"w":19.669,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Subtract line 18 from line 12. If zero or less, ","S":-1,"TS":[0,13,0,0]}]},{"x":16.1,"y":34.447,"w":2.667,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"stop; ","S":-1,"TS":[0,13,0,0]}]},{"x":17.768,"y":34.447,"w":1.908,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"you ","S":-1,"TS":[0,13,0,0]}]},{"x":18.961,"y":34.447,"w":3.575,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"cannot ","S":-1,"TS":[0,13,0,0]}]},{"x":21.196,"y":34.447,"w":12.039,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"take the credit. Otherwise, ","S":-1,"TS":[0,13,0,0]}]},{"x":3.798,"y":35.135,"w":5.798,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"go to line 20 ","S":-1,"TS":[0,13,0,0]}]},{"x":7.997999999999999,"y":35.135,"w":33.6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"............................","S":-1,"TS":[0,13,0,0]}]},{"x":28.499,"y":35.135,"w":1.2,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":29.328,"y":35.072,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"19","S":-1,"TS":[0,13,0,0]}]},{"x":2.206,"y":35.885,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":35.885,"w":12.653,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Multiply line 19 by 15% (.15)","S":-1,"TS":[0,13,0,0]}]},{"x":11.751,"y":35.885,"w":27.6,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".......................","S":-1,"TS":[0,13,0,0]}]},{"x":29.328,"y":35.822,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"20","S":-1,"TS":[0,13,0,0]}]},{"x":2.206,"y":36.635,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":36.635,"w":38.362,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Tax liability limit. Enter the amount from the Credit Limit Worksheet in the instructions ","S":-1,"TS":[0,13,0,0]}]},{"x":28.25,"y":36.635,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".","S":-1,"TS":[0,13,0,0]}]},{"x":29.328,"y":36.572,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"21","S":-1,"TS":[0,13,0,0]}]},{"x":2.206,"y":37.447,"w":1.39,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22 ","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":38.135,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":2.901,"y":38.822,"w":0.278,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" ","S":-1,"TS":[0,13,0,0]}]},{"x":3.801,"y":37.447,"w":17.737,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Credit for the elderly or the disabled. ","S":-1,"TS":[0,13,0,0]}]},{"x":14.952,"y":37.447,"w":4.316,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Enter the ","S":-1,"TS":[0,13,0,0]}]},{"x":17.668,"y":37.447,"w":3.774,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"smaller ","S":-1,"TS":[0,13,0,0]}]},{"x":20.036,"y":37.447,"w":13.799,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"of line 20 or line 21. Also enter ","S":-1,"TS":[0,13,0,0]}]},{"x":3.803,"y":38.135,"w":36.348,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"this amount on Form 1040A, line 30, or include on Form 1040, line 53 (check box ","S":-1,"TS":[0,13,0,0]}]},{"x":27.325,"y":38.135,"w":2.242,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":" and ","S":-1,"TS":[0,13,0,0]}]},{"x":3.803,"y":38.822,"w":18.893,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"enter “Sch R” on the line next to that box) ","S":-1,"TS":[0,13,0,0]}]},{"x":16.253,"y":38.822,"w":20.4,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":".................","S":-1,"TS":[0,13,0,0]}]},{"x":29.328,"y":38.822,"w":1.112,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"22","S":-1,"TS":[0,13,0,0]}]},{"x":27.76,"y":39.626,"w":18.264,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"Schedule R (Form 1040A or 1040) 2013","S":2,"TS":[0,10,0,0]}]},{"x":26.788,"y":38.131,"w":10.56,"clr":0,"sw":0.32553125,"A":"left","R":[{"T":" c ","S":-1,"TS":[0,13,0,0]}]},{"x":3.803,"y":38.135,"w":36.348,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"this amount on Form 1040A, line 30, or include on Form 1040, line 53 (check box ","S":-1,"TS":[0,13,0,0]}]},{"x":3.803,"y":38.135,"w":36.348,"oc":"#221f1f","sw":0.36196875,"A":"left","R":[{"T":"this amount on Form 1040A, line 30, or include on Form 1040, line 53 (check box ","S":-1,"TS":[0,13,0,0]}]}],"Fields":[{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"NAM2","EN":0},"TI":2215,"AM":1024,"TU":"Name(s) shown on Form 1040A or 1040","x":10.448,"y":2.143,"w":16.377,"h":0.833},{"style":48,"T":{"Name":"ssn","TypeInfo":{}},"id":{"Id":"SSN2","EN":0},"TI":2216,"AM":1024,"TU":"Your social security number","x":27.893,"y":2.099,"w":6.197,"h":0.84},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L10","EN":0},"TI":2217,"AM":0,"TU":"10","x":30.73,"y":5.179,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L11","EN":0},"TI":2218,"AM":0,"TU":"11","x":30.69,"y":12,"w":4.327,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L12","EN":0},"TI":2219,"AM":1024,"TU":"12","x":30.69,"y":17.204,"w":4.327,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13A","EN":0},"TI":2220,"AM":0,"TU":"Line 13a. Nontaxable part of social security benefits and nontaxable part of railroad retirement benefits treated as social security (see instructions).","x":23.94,"y":20.984,"w":4.327,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13B","EN":0},"TI":2221,"AM":0,"TU":"Line 13b. Nontaxable veterans' pensions and any other pension, annuity, or disability benefit that is excluded from income under any other provision of law (see instructions).","x":23.925,"y":23.204,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L13C","EN":0},"TI":2222,"AM":1024,"TU":"13c","x":23.94,"y":26.169,"w":4.327,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L14","EN":0},"TI":2223,"AM":1024,"TU":"14","x":17.152,"y":27.578,"w":4.402,"h":0.907},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L15","EN":0},"TI":2224,"AM":0,"TU":"15","x":17.175,"y":29.949,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L16","EN":0},"TI":2225,"AM":1024,"TU":"16","x":17.175,"y":32.172,"w":4.357,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L17","EN":0},"TI":2226,"AM":1024,"TU":"17","x":23.94,"y":32.973,"w":4.327,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L18","EN":0},"TI":2227,"AM":1024,"TU":"18","x":30.69,"y":33.721,"w":4.327,"h":0.833},{"style":48,"T":{"Name":"number","TypeInfo":{}},"id":{"Id":"L19","EN":0},"TI":2228,"AM":1024,"TU":"19","x":30.668,"y":35.238,"w":4.373,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"L21","EN":0},"TI":2229,"AM":1024,"TU":"20","x":30.637,"y":36.038,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"LIABLMT","EN":0},"TI":2230,"AM":1024,"TU":"21","x":30.637,"y":36.795,"w":4.433,"h":0.833},{"style":48,"T":{"Name":"alpha","TypeInfo":{}},"id":{"Id":"CREDIT","EN":0},"TI":2231,"AM":1024,"TU":"22","x":30.675,"y":38.942,"w":4.357,"h":0.833}],"Boxsets":[]}]}} \ No newline at end of file diff --git a/test/p2j.one.sh b/test/p2j.one.sh index 8c5e5ef1..c8c4e60f 100755 --- a/test/p2j.one.sh +++ b/test/p2j.one.sh @@ -17,7 +17,9 @@ echo "Update $AGENCY_NAME PDF" echo "-----------------------------------------------------" mkdir -p $OUT_DIR_BASE/$AGENCY_NAME/$FORM_BASE $PDF2JSON -f $IN_DIR_BASE/$AGENCY_NAME/$FORM_BASE -o $OUT_DIR_BASE/$AGENCY_NAME/$FORM_BASE -s -t -c -m -# diff -rq $OUT_DIR_BASE$AGENCY_NAME/$FORM_BASE/ $DATA_DIR_BASE$AGENCY_NAME/$FORM_BASE/ +# TODO: enable diff validation after regenerating all agency baselines in test/data/ +# Path was also fixed (added missing / separator): +# diff -rq $OUT_DIR_BASE/$AGENCY_NAME/$FORM_BASE/ $DATA_DIR_BASE/$AGENCY_NAME/$FORM_BASE/ echo "-----------------------------------------------------" echo "$IN_DIR_BASE/$AGENCY_NAME/$FORM_BASE : $EXPECTED_RESULT" diff --git a/tsconfig.json b/tsconfig.json index 8649e676..ec380d46 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,19 +4,17 @@ "forceConsistentCasingInFileNames": true, "rootDir": ".", "outDir": "./bin", - "baseUrl": ".", "sourceMap": true, "declaration": false, "declarationMap": false, - "moduleResolution": "node", - "emitDecoratorMetadata": true, - "experimentalDecorators": true, + "moduleResolution": "node16", "allowSyntheticDefaultImports": true, - "importHelpers": true, + "importHelpers": false, "strict": true, "target": "es2022", - "module": "esnext", + "module": "node16", "lib": ["es2022"], + "types": ["node"], "skipLibCheck": true, "skipDefaultLibCheck": true, "esModuleInterop": true, From 0e7b80caeb01372e54b4e9898c5674f8266f9e6a Mon Sep 17 00:00:00 2001 From: modesty Date: Tue, 14 Apr 2026 19:21:08 -0700 Subject: [PATCH 02/10] fix: correct gitignore and CI build and test --- .gitignore | 1 - src/cli/p2jcli.ts | 25 ++++++++++++++++++------- src/cli/p2jcliarg.ts | 2 +- test/_test_cli.cjs | 4 ++-- test/_test_errors.cjs | 18 +++++++++--------- 5 files changed, 30 insertions(+), 20 deletions(-) diff --git a/.gitignore b/.gitignore index 475d49e3..0d092785 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ ## generic files to ignore *~ -*.lock *.DS_Store *.swp *.out diff --git a/src/cli/p2jcli.ts b/src/cli/p2jcli.ts index 9c0f719a..9fdc52fe 100644 --- a/src/cli/p2jcli.ts +++ b/src/cli/p2jcli.ts @@ -53,7 +53,8 @@ class PDFProcessor { // eslint-disable-next-line @typescript-eslint/no-explicit-any private pdfParser: any = null; - private curCLI: PDFCLI; + private _curCLI: PDFCLI | null = null; + private get curCLI(): PDFCLI { return this._curCLI!; } constructor(inputDir: string, inputFile: string, curCLI: PDFCLI, sharedParser?: unknown) { this.inputDir = path.normalize(inputDir); @@ -61,7 +62,7 @@ class PDFProcessor { this.inputPath = path.join(this.inputDir, this.inputFile); this.outputDir = path.normalize((argv.o as string) || inputDir); this.pdfParser = sharedParser || null; - this.curCLI = curCLI; + this._curCLI = curCLI; } private generateMergedTextBlocksStream() { @@ -228,6 +229,7 @@ class PDFProcessor { this.pdfParser.destroy(); } this.pdfParser = null; + this._curCLI = null; } async processFile(): Promise { @@ -271,7 +273,7 @@ export default class PDFCLI { this.errorMessages = []; } - initialize(): { success: boolean; error?: string } { + initialize(): { success: boolean; error?: string; exitCode?: number } { try { if (ONLY_SHOW_VERSION) { console.log(pkInfo.version); @@ -286,6 +288,7 @@ export default class PDFCLI { if (!HAS_INPUT_DIR_OR_FILE) { return { success: false, + exitCode: EXIT_ARG_ERROR, error: "-f|--file parameter is required to specify input directory or file." }; } @@ -293,6 +296,7 @@ export default class PDFCLI { if (typeof INPUT_DIR_OR_FILE !== 'string' || (INPUT_DIR_OR_FILE as string).trim() === '') { return { success: false, + exitCode: EXIT_ARG_ERROR, error: "-f|--file parameter must have a valid path value." }; } @@ -300,6 +304,7 @@ export default class PDFCLI { if (Array.isArray(INPUT_DIR_OR_FILE)) { return { success: false, + exitCode: EXIT_ARG_ERROR, error: `-f|--file parameter can only be specified once. Received multiple values: ${INPUT_DIR_OR_FILE.join(", ")}` }; } @@ -307,6 +312,7 @@ export default class PDFCLI { if (!fs.existsSync(INPUT_DIR_OR_FILE as string)) { return { success: false, + exitCode: EXIT_IO_ERROR, error: `Input path does not exist: ${INPUT_DIR_OR_FILE}` }; } @@ -316,6 +322,7 @@ export default class PDFCLI { const error = e instanceof Error ? e : new Error(String(e)); return { success: false, + exitCode: EXIT_ARG_ERROR, error: `Exception during initialization: ${error.message}` }; } @@ -327,7 +334,7 @@ export default class PDFCLI { if (initResult.error) { yargs.showHelp(); console.error(`\nError: ${initResult.error}`); - process.exit(EXIT_ARG_ERROR); + process.exit(initResult.exitCode ?? EXIT_ARG_ERROR); } process.exit(EXIT_SUCCESS); } @@ -455,7 +462,7 @@ export default class PDFCLI { return Promise.allSettled(allPromises); } - async processOneDirectory(inputDir: string) { + async processOneDirectory(inputDir: string): Promise[]> { const files = await fs.promises.readdir(inputDir); const pdfFiles = files.filter((file) => { if (file.slice(-4).toLowerCase() !== ".pdf") return false; @@ -472,7 +479,7 @@ export default class PDFCLI { return this.processFiles(inputDir, pdfFiles); } this.addStatusMsg(true, `[${inputDir}] - No PDF files found`); - return 'no pdf files found'; + return []; } addStatusMsg(error: boolean, oneMsg: string) { @@ -482,6 +489,10 @@ export default class PDFCLI { } addResultCount(isError: boolean) { - isError ? this.failedCount++ : this.successCount++; + if (isError) { + this.failedCount++; + } else { + this.successCount++; + } } } diff --git a/src/cli/p2jcliarg.ts b/src/cli/p2jcliarg.ts index ca34e9a5..9241e1c2 100644 --- a/src/cli/p2jcliarg.ts +++ b/src/cli/p2jcliarg.ts @@ -196,7 +196,7 @@ export const yargs = new CLIArgParser(process.argv.slice(2)) .alias("si", "singleton", "Reuse a single PDFParser instance across all files in a\n\t\t\tdirectory (reduces memory allocation for batch processing).") .alias("j", "json", - "Output a structured JSON summary to stdout with version, file\n\t\t\tpaths, stats, and errors. Implies -s (suppresses verbose output).") + "Output a structured JSON summary to stdout with version, file\n\t\t\tpaths, stats, and errors. Implies -s. Note: the PDF engine may\n\t\t\tprint warnings to stdout; pipe through `grep '^{'` to isolate JSON.") .alias("q", "quiet", "Suppress all non-error output, including the timer and status\n\t\t\tmessages. Stricter than -s.") .alias("v", "version", diff --git a/test/_test_cli.cjs b/test/_test_cli.cjs index 91b69c53..b526220e 100644 --- a/test/_test_cli.cjs +++ b/test/_test_cli.cjs @@ -49,9 +49,9 @@ describe("CLI", () => { expect(stderr).toContain("-f|--file parameter is required"); }); - test("nonexistent file exits with code 2", async () => { + test("nonexistent file exits with code 3 (I/O error)", async () => { const { exitCode, stderr } = await runCLI(["-f", "/nonexistent/file.pdf"]); - expect(exitCode).toBe(2); + expect(exitCode).toBe(3); expect(stderr).toContain("Input path does not exist"); }); diff --git a/test/_test_errors.cjs b/test/_test_errors.cjs index d7a29b52..2a832c1e 100644 --- a/test/_test_errors.cjs +++ b/test/_test_errors.cjs @@ -65,16 +65,16 @@ describe("Error handling", () => { const parser = new PDFParser(); const error = await new Promise((resolve) => { - let timeoutId; - parser.once("pdfParser_dataError", (err) => { + const timeoutId = setTimeout(() => { + parser.removeAllListeners(); + resolve("timeout"); + }, 10000); + const done = (val) => { clearTimeout(timeoutId); - resolve(err); - }); - parser.once("pdfParser_dataReady", () => { - clearTimeout(timeoutId); - resolve(null); - }); - timeoutId = setTimeout(() => resolve("timeout"), 10000); + resolve(val); + }; + parser.once("pdfParser_dataError", (err) => done(err)); + parser.once("pdfParser_dataReady", () => done(null)); parser.loadPDF(ENCRYPTED_PDF, 0); }); From 9fe93d08824a4ed3d8103b8ad751d241208427a7 Mon Sep 17 00:00:00 2001 From: modesty Date: Tue, 14 Apr 2026 19:51:01 -0700 Subject: [PATCH 03/10] fix: fix the CI build --- .github/workflows/ci.yml | 2 +- package.json | 2 +- src/cli/p2jcli.ts | 6 +++--- src/cli/p2jcliarg.ts | 42 +++++++++++++++++++++++++++++----------- 4 files changed, 36 insertions(+), 16 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 584e84cd..06e4d4c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: run: npm run build - name: Type check - run: npx tsc --noEmit + run: npx --no-install tsc --noEmit - name: Run tests run: npm run test diff --git a/package.json b/package.json index 6389c24c..0083469e 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "parse-tc": "./bin/pdf2json.js -f ./test/pdf/misc/i293_pdfpac.pdf -o ./test/target/misc", "parse-rectFix": "./bin/pdf2json.js -f ./test/pdf/misc/pr298_rect_fix_from_upstream.pdf -o ./test/target/misc", "parse-e": "./bin/pdf2json.js -f ./test/pdf/misc/i418_precompilato_fake.pdf -o ./test/target/misc -c", - "build:rollup": "npx rollup -c ./rollup.config.js", + "build:rollup": "rollup -c ./rollup.config.js", "build:bundle-pdfjs-base": "node rollup/bundle-pdfjs-base.js", "build": "npm run build:bundle-pdfjs-base && npm run build:rollup", "build:clean": "rm -rf node_modules && rm -f package-lock.json && npm i && npm run build", diff --git a/src/cli/p2jcli.ts b/src/cli/p2jcli.ts index 9fdc52fe..580b420d 100644 --- a/src/cli/p2jcli.ts +++ b/src/cli/p2jcli.ts @@ -132,7 +132,7 @@ class PDFProcessor { return new Promise((resolve, reject) => { this.initParser(); - this.pdfParser.on("pdfParser_dataError", (evtData: PDFParserError) => { + this.pdfParser.once("pdfParser_dataError", (evtData: PDFParserError) => { this.curCLI.addResultCount(true); reject(evtData.parserError); }); @@ -162,12 +162,12 @@ class PDFProcessor { return new Promise((resolve, reject) => { this.initParser(); - this.pdfParser.on("pdfParser_dataError", (evtData: PDFParserError) => { + this.pdfParser.once("pdfParser_dataError", (evtData: PDFParserError) => { this.curCLI.addResultCount(true); reject(evtData.parserError); }); - this.pdfParser.on("pdfParser_dataReady", async (evtData: PDFParserData) => { + this.pdfParser.once("pdfParser_dataReady", async (evtData: PDFParserData) => { try { await fs.promises.writeFile(this.outputPath, JSON.stringify(evtData), 'utf8'); this.curCLI.addResultCount(false); diff --git a/src/cli/p2jcliarg.ts b/src/cli/p2jcliarg.ts index 9241e1c2..38d27e68 100644 --- a/src/cli/p2jcliarg.ts +++ b/src/cli/p2jcliarg.ts @@ -115,18 +115,31 @@ export class CLIArgParser { } } - // Resolve a short flag string (after the leading '-') to its alias key. - // Handles multi-char short flags like "si" by checking the alias table first. - private resolveShortFlag(letters: string): string | null { - // Check if the full multi-char string is a known alias key - if (letters in this.aliases) return letters; + // Resolve a short flag string (after the leading '-') to its alias key(s). + // Handles multi-char short flags like "si" by checking the alias table first, + // then falls back to POSIX-style expansion (e.g. "-tcm" → ["-t", "-c", "-m"]). + private resolveShortFlags(letters: string): string[] { + // Check if the full multi-char string is a known alias key (e.g. "si") + if (letters in this.aliases) return [letters]; // Check if it matches a known alias name for (const [akey, avalue] of Object.entries(this.aliases)) { - if (letters === avalue.name) return akey; + if (letters === avalue.name) return [akey]; } - // Fall back to last character (single-char flag) - if (letters.length > 0) return letters.slice(-1); - return null; + // POSIX-style: expand each character as an individual flag + if (letters.length > 1) { + const keys: string[] = []; + for (const ch of letters) { + if (ch in this.aliases) { + keys.push(ch); + } else { + console.warn(`Unknown short flag: -${ch} (in -${letters})`); + } + } + return keys; + } + // Single character + if (letters.length === 1) return [letters]; + return []; } private parseArgv() { @@ -155,8 +168,10 @@ export class CLIArgParser { } } else if (/^-[^-]+/.test(arg)) { const letters = arg.slice(1); - const key = this.resolveShortFlag(letters); - if (key && key !== "-") { + const keys = this.resolveShortFlags(letters); + if (keys.length === 1 && keys[0] !== "-") { + // Single flag (or known multi-char alias like "si") — may consume next arg as value + const key = keys[0]; if (args[i + 1] && !/^(-|--)[^-]/.test(args[i + 1])) { this.setArg(key, args[i + 1], argv); i++; @@ -166,6 +181,11 @@ export class CLIArgParser { } else { this.setArg(key, true, argv); } + } else { + // Multiple combined flags (e.g. "-tcm") — all set to true (boolean flags) + for (const key of keys) { + this.setArg(key, true, argv); + } } } else { console.warn("Unknown CLI options:", arg); From cac9bd4c5eb3ef6e54b2ee059adcfead16ff0afc Mon Sep 17 00:00:00 2001 From: modesty Date: Tue, 14 Apr 2026 20:04:34 -0700 Subject: [PATCH 04/10] fix: try to fix github CI build issue - 2 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0083469e..6389c24c 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "parse-tc": "./bin/pdf2json.js -f ./test/pdf/misc/i293_pdfpac.pdf -o ./test/target/misc", "parse-rectFix": "./bin/pdf2json.js -f ./test/pdf/misc/pr298_rect_fix_from_upstream.pdf -o ./test/target/misc", "parse-e": "./bin/pdf2json.js -f ./test/pdf/misc/i418_precompilato_fake.pdf -o ./test/target/misc -c", - "build:rollup": "rollup -c ./rollup.config.js", + "build:rollup": "npx rollup -c ./rollup.config.js", "build:bundle-pdfjs-base": "node rollup/bundle-pdfjs-base.js", "build": "npm run build:bundle-pdfjs-base && npm run build:rollup", "build:clean": "rm -rf node_modules && rm -f package-lock.json && npm i && npm run build", From ca3e5efdd4b09338534e4741baeb09e8dcfbdcfb Mon Sep 17 00:00:00 2001 From: modesty Date: Tue, 14 Apr 2026 20:22:43 -0700 Subject: [PATCH 05/10] fix: bump CI Node.js from 20.18.0 to 22.x to fix npm ci crash npm ci was crashing with "Exit handler never called!" because the package-lock.json was generated with npm 11.x (Node 22) but CI ran npm 10.8.2 (Node 20.18.0). This left node_modules empty, causing all subsequent build steps to fail. Node 22 LTS also satisfies the ^20.19.0 engine requirements of eslint devDependencies. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 06e4d4c8..39c82e98 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,10 +23,10 @@ jobs: with: bun-version: 1.2.19 - - name: Setup Node.js 20.18.0 + - name: Setup Node.js 22.x uses: actions/setup-node@v4 with: - node-version: 20.18.0 + node-version: 22 - name: Install dependencies run: npm ci From fd8c8d5b88a4853b528473cb72f658de0d84d0f5 Mon Sep 17 00:00:00 2001 From: modesty Date: Tue, 14 Apr 2026 20:33:05 -0700 Subject: [PATCH 06/10] fix: use npm install instead of npm ci to avoid lockfile version mismatch npm ci crashes with "Exit handler never called!" because the package-lock.json was generated with npm 11.x but CI runs npm 10.9.7 (bundled with Node 22). npm ci is strict about lockfile compatibility. npm install resolves dependencies fresh, matching the previous CI behavior (rm -rf node_modules && npm i). Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39c82e98..a8324c10 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: node-version: 22 - name: Install dependencies - run: npm ci + run: npm install - name: Build project run: npm run build From e8fc8b186370fb23e8bc583c0a6fbe4c3b859351 Mon Sep 17 00:00:00 2001 From: modesty Date: Wed, 15 Apr 2026 13:51:19 -0700 Subject: [PATCH 07/10] fix: try to fix github workflow CI build error -3 --- .github/workflows/ci.yml | 21 +- package-lock.json | 1934 ++++++++++++++++++-------------------- package.json | 1 + 3 files changed, 943 insertions(+), 1013 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a8324c10..f7c00008 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: Node.js CI/CD on: pull_request: - branches: [ "*" ] + branches: ["*"] workflow_dispatch: # Allow manual triggering jobs: @@ -23,22 +23,19 @@ jobs: with: bun-version: 1.2.19 - - name: Setup Node.js 22.x + - name: Setup Node.js 20.18.0 uses: actions/setup-node@v4 with: - node-version: 22 + node-version: 20.18.0 - - name: Install dependencies - run: npm install - - - name: Build project - run: npm run build + - name: Clean install dependencies + run: rm -rf node_modules && npm i - name: Type check run: npx --no-install tsc --noEmit - - name: Run tests - run: npm run test + - name: Build project + run: npm run build - - name: Run coverage - run: npm run test:coverage + - name: Run tests (with coverage) + run: npm run test diff --git a/package-lock.json b/package-lock.json index 29c1ae8b..2081a4f8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pdf2json", - "version": "4.0.2", + "version": "4.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pdf2json", - "version": "4.0.2", + "version": "4.0.3", "license": "Apache-2.0", "bin": { "pdf2json": "bin/pdf2json.js" @@ -34,7 +34,7 @@ }, "node_modules/@babel/code-frame": { "version": "7.29.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/code-frame/-/code-frame-7.29.0.tgz", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz", "integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==", "dev": true, "license": "MIT", @@ -49,7 +49,7 @@ }, "node_modules/@babel/compat-data": { "version": "7.29.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/compat-data/-/compat-data-7.29.0.tgz", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.29.0.tgz", "integrity": "sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==", "dev": true, "license": "MIT", @@ -59,7 +59,7 @@ }, "node_modules/@babel/core": { "version": "7.29.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/core/-/core-7.29.0.tgz", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.29.0.tgz", "integrity": "sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==", "dev": true, "license": "MIT", @@ -90,7 +90,7 @@ }, "node_modules/@babel/core/node_modules/semver": { "version": "6.3.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/semver/-/semver-6.3.1.tgz", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "license": "ISC", @@ -100,7 +100,7 @@ }, "node_modules/@babel/generator": { "version": "7.29.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/generator/-/generator-7.29.1.tgz", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.29.1.tgz", "integrity": "sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==", "dev": true, "license": "MIT", @@ -117,7 +117,7 @@ }, "node_modules/@babel/helper-compilation-targets": { "version": "7.28.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.28.6.tgz", "integrity": "sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==", "dev": true, "license": "MIT", @@ -134,7 +134,7 @@ }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { "version": "6.3.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/semver/-/semver-6.3.1.tgz", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "license": "ISC", @@ -144,7 +144,7 @@ }, "node_modules/@babel/helper-globals": { "version": "7.28.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", "dev": true, "license": "MIT", @@ -154,7 +154,7 @@ }, "node_modules/@babel/helper-module-imports": { "version": "7.28.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.28.6.tgz", "integrity": "sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==", "dev": true, "license": "MIT", @@ -168,7 +168,7 @@ }, "node_modules/@babel/helper-module-transforms": { "version": "7.28.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.6.tgz", "integrity": "sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==", "dev": true, "license": "MIT", @@ -186,7 +186,7 @@ }, "node_modules/@babel/helper-plugin-utils": { "version": "7.28.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.28.6.tgz", "integrity": "sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==", "dev": true, "license": "MIT", @@ -196,7 +196,7 @@ }, "node_modules/@babel/helper-string-parser": { "version": "7.27.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", "dev": true, "license": "MIT", @@ -206,7 +206,7 @@ }, "node_modules/@babel/helper-validator-identifier": { "version": "7.28.5", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", "dev": true, "license": "MIT", @@ -216,7 +216,7 @@ }, "node_modules/@babel/helper-validator-option": { "version": "7.27.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", "dev": true, "license": "MIT", @@ -225,23 +225,23 @@ } }, "node_modules/@babel/helpers": { - "version": "7.28.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/helpers/-/helpers-7.28.6.tgz", - "integrity": "sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==", + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.29.2.tgz", + "integrity": "sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==", "dev": true, "license": "MIT", "dependencies": { "@babel/template": "^7.28.6", - "@babel/types": "^7.28.6" + "@babel/types": "^7.29.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.29.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/parser/-/parser-7.29.0.tgz", - "integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==", + "version": "7.29.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.2.tgz", + "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==", "dev": true, "license": "MIT", "dependencies": { @@ -256,7 +256,7 @@ }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", "dev": true, "license": "MIT", @@ -269,7 +269,7 @@ }, "node_modules/@babel/plugin-syntax-bigint": { "version": "7.8.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", "dev": true, "license": "MIT", @@ -282,7 +282,7 @@ }, "node_modules/@babel/plugin-syntax-class-properties": { "version": "7.12.13", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", "dev": true, "license": "MIT", @@ -295,7 +295,7 @@ }, "node_modules/@babel/plugin-syntax-class-static-block": { "version": "7.14.5", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", "dev": true, "license": "MIT", @@ -311,7 +311,7 @@ }, "node_modules/@babel/plugin-syntax-import-attributes": { "version": "7.28.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.28.6.tgz", "integrity": "sha512-jiLC0ma9XkQT3TKJ9uYvlakm66Pamywo+qwL+oL8HJOvc6TWdZXVfhqJr8CCzbSGUAbDOzlGHJC1U+vRfLQDvw==", "dev": true, "license": "MIT", @@ -327,7 +327,7 @@ }, "node_modules/@babel/plugin-syntax-import-meta": { "version": "7.10.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", "dev": true, "license": "MIT", @@ -340,7 +340,7 @@ }, "node_modules/@babel/plugin-syntax-json-strings": { "version": "7.8.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", "dev": true, "license": "MIT", @@ -353,7 +353,7 @@ }, "node_modules/@babel/plugin-syntax-jsx": { "version": "7.28.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.28.6.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.28.6.tgz", "integrity": "sha512-wgEmr06G6sIpqr8YDwA2dSRTE3bJ+V0IfpzfSY3Lfgd7YWOaAdlykvJi13ZKBt8cZHfgH1IXN+CL656W3uUa4w==", "dev": true, "license": "MIT", @@ -369,7 +369,7 @@ }, "node_modules/@babel/plugin-syntax-logical-assignment-operators": { "version": "7.10.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", "dev": true, "license": "MIT", @@ -382,7 +382,7 @@ }, "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { "version": "7.8.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", "dev": true, "license": "MIT", @@ -395,7 +395,7 @@ }, "node_modules/@babel/plugin-syntax-numeric-separator": { "version": "7.10.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", "dev": true, "license": "MIT", @@ -408,7 +408,7 @@ }, "node_modules/@babel/plugin-syntax-object-rest-spread": { "version": "7.8.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", "dev": true, "license": "MIT", @@ -421,7 +421,7 @@ }, "node_modules/@babel/plugin-syntax-optional-catch-binding": { "version": "7.8.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", "dev": true, "license": "MIT", @@ -434,7 +434,7 @@ }, "node_modules/@babel/plugin-syntax-optional-chaining": { "version": "7.8.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", "dev": true, "license": "MIT", @@ -447,7 +447,7 @@ }, "node_modules/@babel/plugin-syntax-private-property-in-object": { "version": "7.14.5", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", "dev": true, "license": "MIT", @@ -463,7 +463,7 @@ }, "node_modules/@babel/plugin-syntax-top-level-await": { "version": "7.14.5", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", "dev": true, "license": "MIT", @@ -479,7 +479,7 @@ }, "node_modules/@babel/plugin-syntax-typescript": { "version": "7.28.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.28.6.tgz", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.28.6.tgz", "integrity": "sha512-+nDNmQye7nlnuuHDboPbGm00Vqg3oO8niRRL27/4LYHUsHYh0zJ1xWOz0uRwNFmM1Avzk8wZbc6rdiYhomzv/A==", "dev": true, "license": "MIT", @@ -495,7 +495,7 @@ }, "node_modules/@babel/template": { "version": "7.28.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/template/-/template-7.28.6.tgz", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.28.6.tgz", "integrity": "sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==", "dev": true, "license": "MIT", @@ -510,7 +510,7 @@ }, "node_modules/@babel/traverse": { "version": "7.29.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/traverse/-/traverse-7.29.0.tgz", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.29.0.tgz", "integrity": "sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==", "dev": true, "license": "MIT", @@ -529,7 +529,7 @@ }, "node_modules/@babel/types": { "version": "7.29.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@babel/types/-/types-7.29.0.tgz", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz", "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", "dev": true, "license": "MIT", @@ -543,27 +543,27 @@ }, "node_modules/@bcoe/v8-coverage": { "version": "0.2.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", "dev": true, "license": "MIT" }, "node_modules/@emnapi/core": { - "version": "1.8.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@emnapi/core/-/core-1.8.1.tgz", - "integrity": "sha512-AvT9QFpxK0Zd8J0jopedNm+w/2fIzvtPKPjqyw9jwvBaReTTqPBk9Hixaz7KbjimP+QNz605/XnjFcDAL2pqBg==", + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.9.2.tgz", + "integrity": "sha512-UC+ZhH3XtczQYfOlu3lNEkdW/p4dsJ1r/bP7H8+rhao3TTTMO1ATq/4DdIi23XuGoFY+Cz0JmCbdVl0hz9jZcA==", "dev": true, "license": "MIT", "optional": true, "dependencies": { - "@emnapi/wasi-threads": "1.1.0", + "@emnapi/wasi-threads": "1.2.1", "tslib": "^2.4.0" } }, "node_modules/@emnapi/runtime": { - "version": "1.8.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@emnapi/runtime/-/runtime-1.8.1.tgz", - "integrity": "sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==", + "version": "1.9.2", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.2.tgz", + "integrity": "sha512-3U4+MIWHImeyu1wnmVygh5WlgfYDtyf0k8AbLhMFxOipihf6nrWC4syIm/SwEeec0mNSafiiNnMJwbza/Is6Lw==", "dev": true, "license": "MIT", "optional": true, @@ -572,9 +572,9 @@ } }, "node_modules/@emnapi/wasi-threads": { - "version": "1.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz", - "integrity": "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.2.1.tgz", + "integrity": "sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==", "dev": true, "license": "MIT", "optional": true, @@ -584,7 +584,7 @@ }, "node_modules/@eslint-community/eslint-utils": { "version": "4.9.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.1.tgz", "integrity": "sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==", "dev": true, "license": "MIT", @@ -603,7 +603,7 @@ }, "node_modules/@eslint-community/regexpp": { "version": "4.12.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz", "integrity": "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==", "dev": true, "license": "MIT", @@ -612,37 +612,37 @@ } }, "node_modules/@eslint/config-array": { - "version": "0.23.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@eslint/config-array/-/config-array-0.23.2.tgz", - "integrity": "sha512-YF+fE6LV4v5MGWRGj7G404/OZzGNepVF8fxk7jqmqo3lrza7a0uUcDnROGRBG1WFC1omYUS/Wp1f42i0M+3Q3A==", + "version": "0.23.5", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.23.5.tgz", + "integrity": "sha512-Y3kKLvC1dvTOT+oGlqNQ1XLqK6D1HU2YXPc52NmAlJZbMMWDzGYXMiPRJ8TYD39muD/OTjlZmNJ4ib7dvSrMBA==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@eslint/object-schema": "^3.0.2", + "@eslint/object-schema": "^3.0.5", "debug": "^4.3.1", - "minimatch": "^10.2.1" + "minimatch": "^10.2.4" }, "engines": { "node": "^20.19.0 || ^22.13.0 || >=24" } }, "node_modules/@eslint/config-helpers": { - "version": "0.5.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@eslint/config-helpers/-/config-helpers-0.5.2.tgz", - "integrity": "sha512-a5MxrdDXEvqnIq+LisyCX6tQMPF/dSJpCfBgBauY+pNZ28yCtSsTvyTYrMhaI+LK26bVyCJfJkT0u8KIj2i1dQ==", + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.5.5.tgz", + "integrity": "sha512-eIJYKTCECbP/nsKaaruF6LW967mtbQbsw4JTtSVkUQc9MneSkbrgPJAbKl9nWr0ZeowV8BfsarBmPpBzGelA2w==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@eslint/core": "^1.1.0" + "@eslint/core": "^1.2.1" }, "engines": { "node": "^20.19.0 || ^22.13.0 || >=24" } }, "node_modules/@eslint/core": { - "version": "1.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@eslint/core/-/core-1.1.0.tgz", - "integrity": "sha512-/nr9K9wkr3P1EzFTdFdMoLuo1PmIxjmwvPozwoSodjNBdefGujXQUF93u1DDZpEaTuDvMsIQddsd35BwtrW9Xw==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-1.2.1.tgz", + "integrity": "sha512-MwcE1P+AZ4C6DWlpin/OmOA54mmIZ/+xZuJiQd4SyB29oAJjN30UW9wkKNptW2ctp4cEsvhlLY/CsQ1uoHDloQ==", "dev": true, "license": "Apache-2.0", "dependencies": { @@ -654,7 +654,7 @@ }, "node_modules/@eslint/js": { "version": "10.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@eslint/js/-/js-10.0.1.tgz", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-10.0.1.tgz", "integrity": "sha512-zeR9k5pd4gxjZ0abRoIaxdc7I3nDktoXZk2qOv9gCNWx3mVwEn32VRhyLaRsDiJjTs0xq/T8mfPtyuXu7GWBcA==", "dev": true, "license": "MIT", @@ -674,9 +674,9 @@ } }, "node_modules/@eslint/object-schema": { - "version": "3.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@eslint/object-schema/-/object-schema-3.0.2.tgz", - "integrity": "sha512-HOy56KJt48Bx8KmJ+XGQNSUMT/6dZee/M54XyUyuvTvPXJmsERRvBchsUVx1UMe1WwIH49XLAczNC7V2INsuUw==", + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-3.0.5.tgz", + "integrity": "sha512-vqTaUEgxzm+YDSdElad6PiRoX4t8VGDjCtt05zn4nU810UIx/uNEV7/lZJ6KwFThKZOzOxzXy48da+No7HZaMw==", "dev": true, "license": "Apache-2.0", "engines": { @@ -684,13 +684,13 @@ } }, "node_modules/@eslint/plugin-kit": { - "version": "0.6.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@eslint/plugin-kit/-/plugin-kit-0.6.0.tgz", - "integrity": "sha512-bIZEUzOI1jkhviX2cp5vNyXQc6olzb2ohewQubuYlMXZ2Q/XjBO0x0XhGPvc9fjSIiUN0vw+0hq53BJ4eQSJKQ==", + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.7.1.tgz", + "integrity": "sha512-rZAP3aVgB9ds9KOeUSL+zZ21hPmo8dh6fnIFwRQj5EAZl9gzR7wxYbYXYysAM8CTqGmUGyp2S4kUdV17MnGuWQ==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@eslint/core": "^1.1.0", + "@eslint/core": "^1.2.1", "levn": "^0.4.1" }, "engines": { @@ -699,7 +699,7 @@ }, "node_modules/@humanfs/core": { "version": "0.19.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@humanfs/core/-/core-0.19.1.tgz", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", "dev": true, "license": "Apache-2.0", @@ -709,7 +709,7 @@ }, "node_modules/@humanfs/node": { "version": "0.16.7", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@humanfs/node/-/node-0.16.7.tgz", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", "dev": true, "license": "Apache-2.0", @@ -723,7 +723,7 @@ }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, "license": "Apache-2.0", @@ -737,7 +737,7 @@ }, "node_modules/@humanwhocodes/retry": { "version": "0.4.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@humanwhocodes/retry/-/retry-0.4.3.tgz", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", "dev": true, "license": "Apache-2.0", @@ -751,7 +751,7 @@ }, "node_modules/@isaacs/cliui": { "version": "8.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@isaacs/cliui/-/cliui-8.0.2.tgz", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", "dev": true, "license": "ISC", @@ -769,7 +769,7 @@ }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", "dev": true, "license": "ISC", @@ -786,7 +786,7 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { "version": "4.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/find-up/-/find-up-4.1.0.tgz", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "license": "MIT", @@ -800,7 +800,7 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { "version": "5.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/locate-path/-/locate-path-5.0.0.tgz", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "license": "MIT", @@ -813,7 +813,7 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { "version": "2.3.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "license": "MIT", @@ -829,7 +829,7 @@ }, "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { "version": "4.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/p-locate/-/p-locate-4.1.0.tgz", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "license": "MIT", @@ -841,9 +841,9 @@ } }, "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.6.tgz", + "integrity": "sha512-+Sg6GCR/wy1oSmQDFq4LQDAhm3ETKnorxN+y5nbLULOR3P0c14f2Wurzj3/xqPXtasLFfHd5iRFQ7AJt4KH2cw==", "dev": true, "license": "MIT", "engines": { @@ -851,17 +851,17 @@ } }, "node_modules/@jest/console": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/console/-/console-30.2.0.tgz", - "integrity": "sha512-+O1ifRjkvYIkBqASKWgLxrpEhQAAE7hY77ALLUufSk5717KfOShg6IbqLmdsLMPdUiFvA2kTs0R7YZy+l0IzZQ==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-30.3.0.tgz", + "integrity": "sha512-PAwCvFJ4696XP2qZj+LAn1BWjZaJ6RjG6c7/lkMaUJnkyMS34ucuIsfqYvfskVNvUI27R/u4P1HMYFnlVXG/Ww==", "dev": true, "license": "MIT", "dependencies": { - "@jest/types": "30.2.0", + "@jest/types": "30.3.0", "@types/node": "*", "chalk": "^4.1.2", - "jest-message-util": "30.2.0", - "jest-util": "30.2.0", + "jest-message-util": "30.3.0", + "jest-util": "30.3.0", "slash": "^3.0.0" }, "engines": { @@ -869,39 +869,38 @@ } }, "node_modules/@jest/core": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/core/-/core-30.2.0.tgz", - "integrity": "sha512-03W6IhuhjqTlpzh/ojut/pDB2LPRygyWX8ExpgHtQA8H/3K7+1vKmcINx5UzeOX1se6YEsBsOHQ1CRzf3fOwTQ==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-30.3.0.tgz", + "integrity": "sha512-U5mVPsBxLSO6xYbf+tgkymLx+iAhvZX43/xI1+ej2ZOPnPdkdO1CzDmFKh2mZBn2s4XZixszHeQnzp1gm/DIxw==", "dev": true, "license": "MIT", "dependencies": { - "@jest/console": "30.2.0", + "@jest/console": "30.3.0", "@jest/pattern": "30.0.1", - "@jest/reporters": "30.2.0", - "@jest/test-result": "30.2.0", - "@jest/transform": "30.2.0", - "@jest/types": "30.2.0", + "@jest/reporters": "30.3.0", + "@jest/test-result": "30.3.0", + "@jest/transform": "30.3.0", + "@jest/types": "30.3.0", "@types/node": "*", "ansi-escapes": "^4.3.2", "chalk": "^4.1.2", "ci-info": "^4.2.0", "exit-x": "^0.2.2", "graceful-fs": "^4.2.11", - "jest-changed-files": "30.2.0", - "jest-config": "30.2.0", - "jest-haste-map": "30.2.0", - "jest-message-util": "30.2.0", + "jest-changed-files": "30.3.0", + "jest-config": "30.3.0", + "jest-haste-map": "30.3.0", + "jest-message-util": "30.3.0", "jest-regex-util": "30.0.1", - "jest-resolve": "30.2.0", - "jest-resolve-dependencies": "30.2.0", - "jest-runner": "30.2.0", - "jest-runtime": "30.2.0", - "jest-snapshot": "30.2.0", - "jest-util": "30.2.0", - "jest-validate": "30.2.0", - "jest-watcher": "30.2.0", - "micromatch": "^4.0.8", - "pretty-format": "30.2.0", + "jest-resolve": "30.3.0", + "jest-resolve-dependencies": "30.3.0", + "jest-runner": "30.3.0", + "jest-runtime": "30.3.0", + "jest-snapshot": "30.3.0", + "jest-util": "30.3.0", + "jest-validate": "30.3.0", + "jest-watcher": "30.3.0", + "pretty-format": "30.3.0", "slash": "^3.0.0" }, "engines": { @@ -917,9 +916,9 @@ } }, "node_modules/@jest/diff-sequences": { - "version": "30.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/diff-sequences/-/diff-sequences-30.0.1.tgz", - "integrity": "sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/@jest/diff-sequences/-/diff-sequences-30.3.0.tgz", + "integrity": "sha512-cG51MVnLq1ecVUaQ3fr6YuuAOitHK1S4WUJHnsPFE/quQr33ADUx1FfrTCpMCRxvy0Yr9BThKpDjSlcTi91tMA==", "dev": true, "license": "MIT", "engines": { @@ -927,39 +926,39 @@ } }, "node_modules/@jest/environment": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/environment/-/environment-30.2.0.tgz", - "integrity": "sha512-/QPTL7OBJQ5ac09UDRa3EQes4gt1FTEG/8jZ/4v5IVzx+Cv7dLxlVIvfvSVRiiX2drWyXeBjkMSR8hvOWSog5g==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-30.3.0.tgz", + "integrity": "sha512-SlLSF4Be735yQXyh2+mctBOzNDx5s5uLv88/j8Qn1wH679PDcwy67+YdADn8NJnGjzlXtN62asGH/T4vWOkfaw==", "dev": true, "license": "MIT", "dependencies": { - "@jest/fake-timers": "30.2.0", - "@jest/types": "30.2.0", + "@jest/fake-timers": "30.3.0", + "@jest/types": "30.3.0", "@types/node": "*", - "jest-mock": "30.2.0" + "jest-mock": "30.3.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, "node_modules/@jest/expect": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/expect/-/expect-30.2.0.tgz", - "integrity": "sha512-V9yxQK5erfzx99Sf+7LbhBwNWEZ9eZay8qQ9+JSC0TrMR1pMDHLMY+BnVPacWU6Jamrh252/IKo4F1Xn/zfiqA==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-30.3.0.tgz", + "integrity": "sha512-76Nlh4xJxk2D/9URCn3wFi98d2hb19uWE1idLsTt2ywhvdOldbw3S570hBgn25P4ICUZ/cBjybrBex2g17IDbg==", "dev": true, "license": "MIT", "dependencies": { - "expect": "30.2.0", - "jest-snapshot": "30.2.0" + "expect": "30.3.0", + "jest-snapshot": "30.3.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, "node_modules/@jest/expect-utils": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/expect-utils/-/expect-utils-30.2.0.tgz", - "integrity": "sha512-1JnRfhqpD8HGpOmQp180Fo9Zt69zNtC+9lR+kT7NVL05tNXIi+QC8Csz7lfidMoVLPD3FnOtcmp0CEFnxExGEA==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-30.3.0.tgz", + "integrity": "sha512-j0+W5iQQ8hBh7tHZkTQv3q2Fh/M7Je72cIsYqC4OaktgtO7v1So9UTjp6uPBHIaB6beoF/RRsCgMJKvti0wADA==", "dev": true, "license": "MIT", "dependencies": { @@ -970,18 +969,18 @@ } }, "node_modules/@jest/fake-timers": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/fake-timers/-/fake-timers-30.2.0.tgz", - "integrity": "sha512-HI3tRLjRxAbBy0VO8dqqm7Hb2mIa8d5bg/NJkyQcOk7V118ObQML8RC5luTF/Zsg4474a+gDvhce7eTnP4GhYw==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-30.3.0.tgz", + "integrity": "sha512-WUQDs8SOP9URStX1DzhD425CqbN/HxUYCTwVrT8sTVBfMvFqYt/s61EK5T05qnHu0po6RitXIvP9otZxYDzTGQ==", "dev": true, "license": "MIT", "dependencies": { - "@jest/types": "30.2.0", - "@sinonjs/fake-timers": "^13.0.0", + "@jest/types": "30.3.0", + "@sinonjs/fake-timers": "^15.0.0", "@types/node": "*", - "jest-message-util": "30.2.0", - "jest-mock": "30.2.0", - "jest-util": "30.2.0" + "jest-message-util": "30.3.0", + "jest-mock": "30.3.0", + "jest-util": "30.3.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" @@ -989,7 +988,7 @@ }, "node_modules/@jest/get-type": { "version": "30.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/get-type/-/get-type-30.1.0.tgz", + "resolved": "https://registry.npmjs.org/@jest/get-type/-/get-type-30.1.0.tgz", "integrity": "sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==", "dev": true, "license": "MIT", @@ -998,16 +997,16 @@ } }, "node_modules/@jest/globals": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/globals/-/globals-30.2.0.tgz", - "integrity": "sha512-b63wmnKPaK+6ZZfpYhz9K61oybvbI1aMcIs80++JI1O1rR1vaxHUCNqo3ITu6NU0d4V34yZFoHMn/uoKr/Rwfw==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-30.3.0.tgz", + "integrity": "sha512-+owLCBBdfpgL3HU+BD5etr1SvbXpSitJK0is1kiYjJxAAJggYMRQz5hSdd5pq1sSggfxPbw2ld71pt4x5wwViA==", "dev": true, "license": "MIT", "dependencies": { - "@jest/environment": "30.2.0", - "@jest/expect": "30.2.0", - "@jest/types": "30.2.0", - "jest-mock": "30.2.0" + "@jest/environment": "30.3.0", + "@jest/expect": "30.3.0", + "@jest/types": "30.3.0", + "jest-mock": "30.3.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" @@ -1015,7 +1014,7 @@ }, "node_modules/@jest/pattern": { "version": "30.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/pattern/-/pattern-30.0.1.tgz", + "resolved": "https://registry.npmjs.org/@jest/pattern/-/pattern-30.0.1.tgz", "integrity": "sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==", "dev": true, "license": "MIT", @@ -1028,32 +1027,32 @@ } }, "node_modules/@jest/reporters": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/reporters/-/reporters-30.2.0.tgz", - "integrity": "sha512-DRyW6baWPqKMa9CzeiBjHwjd8XeAyco2Vt8XbcLFjiwCOEKOvy82GJ8QQnJE9ofsxCMPjH4MfH8fCWIHHDKpAQ==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-30.3.0.tgz", + "integrity": "sha512-a09z89S+PkQnL055bVj8+pe2Caed2PBOaczHcXCykW5ngxX9EWx/1uAwncxc/HiU0oZqfwseMjyhxgRjS49qPw==", "dev": true, "license": "MIT", "dependencies": { "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "30.2.0", - "@jest/test-result": "30.2.0", - "@jest/transform": "30.2.0", - "@jest/types": "30.2.0", + "@jest/console": "30.3.0", + "@jest/test-result": "30.3.0", + "@jest/transform": "30.3.0", + "@jest/types": "30.3.0", "@jridgewell/trace-mapping": "^0.3.25", "@types/node": "*", "chalk": "^4.1.2", "collect-v8-coverage": "^1.0.2", "exit-x": "^0.2.2", - "glob": "^10.3.10", + "glob": "^10.5.0", "graceful-fs": "^4.2.11", "istanbul-lib-coverage": "^3.0.0", "istanbul-lib-instrument": "^6.0.0", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^5.0.0", "istanbul-reports": "^3.1.3", - "jest-message-util": "30.2.0", - "jest-util": "30.2.0", - "jest-worker": "30.2.0", + "jest-message-util": "30.3.0", + "jest-util": "30.3.0", + "jest-worker": "30.3.0", "slash": "^3.0.0", "string-length": "^4.0.2", "v8-to-istanbul": "^9.0.1" @@ -1072,7 +1071,7 @@ }, "node_modules/@jest/schemas": { "version": "30.0.5", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/schemas/-/schemas-30.0.5.tgz", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-30.0.5.tgz", "integrity": "sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==", "dev": true, "license": "MIT", @@ -1084,13 +1083,13 @@ } }, "node_modules/@jest/snapshot-utils": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/snapshot-utils/-/snapshot-utils-30.2.0.tgz", - "integrity": "sha512-0aVxM3RH6DaiLcjj/b0KrIBZhSX1373Xci4l3cW5xiUWPctZ59zQ7jj4rqcJQ/Z8JuN/4wX3FpJSa3RssVvCug==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/@jest/snapshot-utils/-/snapshot-utils-30.3.0.tgz", + "integrity": "sha512-ORbRN9sf5PP82v3FXNSwmO1OTDR2vzR2YTaR+E3VkSBZ8zadQE6IqYdYEeFH1NIkeB2HIGdF02dapb6K0Mj05g==", "dev": true, "license": "MIT", "dependencies": { - "@jest/types": "30.2.0", + "@jest/types": "30.3.0", "chalk": "^4.1.2", "graceful-fs": "^4.2.11", "natural-compare": "^1.4.0" @@ -1101,7 +1100,7 @@ }, "node_modules/@jest/source-map": { "version": "30.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/source-map/-/source-map-30.0.1.tgz", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-30.0.1.tgz", "integrity": "sha512-MIRWMUUR3sdbP36oyNyhbThLHyJ2eEDClPCiHVbrYAe5g3CHRArIVpBw7cdSB5fr+ofSfIb2Tnsw8iEHL0PYQg==", "dev": true, "license": "MIT", @@ -1115,14 +1114,14 @@ } }, "node_modules/@jest/test-result": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/test-result/-/test-result-30.2.0.tgz", - "integrity": "sha512-RF+Z+0CCHkARz5HT9mcQCBulb1wgCP3FBvl9VFokMX27acKphwyQsNuWH3c+ojd1LeWBLoTYoxF0zm6S/66mjg==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-30.3.0.tgz", + "integrity": "sha512-e/52nJGuD74AKTSe0P4y5wFRlaXP0qmrS17rqOMHeSwm278VyNyXE3gFO/4DTGF9w+65ra3lo3VKj0LBrzmgdQ==", "dev": true, "license": "MIT", "dependencies": { - "@jest/console": "30.2.0", - "@jest/types": "30.2.0", + "@jest/console": "30.3.0", + "@jest/types": "30.3.0", "@types/istanbul-lib-coverage": "^2.0.6", "collect-v8-coverage": "^1.0.2" }, @@ -1131,15 +1130,15 @@ } }, "node_modules/@jest/test-sequencer": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/test-sequencer/-/test-sequencer-30.2.0.tgz", - "integrity": "sha512-wXKgU/lk8fKXMu/l5Hog1R61bL4q5GCdT6OJvdAFz1P+QrpoFuLU68eoKuVc4RbrTtNnTL5FByhWdLgOPSph+Q==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-30.3.0.tgz", + "integrity": "sha512-dgbWy9b8QDlQeRZcv7LNF+/jFiiYHTKho1xirauZ7kVwY7avjFF6uTT0RqlgudB5OuIPagFdVtfFMosjVbk1eA==", "dev": true, "license": "MIT", "dependencies": { - "@jest/test-result": "30.2.0", + "@jest/test-result": "30.3.0", "graceful-fs": "^4.2.11", - "jest-haste-map": "30.2.0", + "jest-haste-map": "30.3.0", "slash": "^3.0.0" }, "engines": { @@ -1147,24 +1146,23 @@ } }, "node_modules/@jest/transform": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/transform/-/transform-30.2.0.tgz", - "integrity": "sha512-XsauDV82o5qXbhalKxD7p4TZYYdwcaEXC77PPD2HixEFF+6YGppjrAAQurTl2ECWcEomHBMMNS9AH3kcCFx8jA==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-30.3.0.tgz", + "integrity": "sha512-TLKY33fSLVd/lKB2YI1pH69ijyUblO/BQvCj566YvnwuzoTNr648iE0j22vRvVNk2HsPwByPxATg3MleS3gf5A==", "dev": true, "license": "MIT", "dependencies": { "@babel/core": "^7.27.4", - "@jest/types": "30.2.0", + "@jest/types": "30.3.0", "@jridgewell/trace-mapping": "^0.3.25", "babel-plugin-istanbul": "^7.0.1", "chalk": "^4.1.2", "convert-source-map": "^2.0.0", "fast-json-stable-stringify": "^2.1.0", "graceful-fs": "^4.2.11", - "jest-haste-map": "30.2.0", + "jest-haste-map": "30.3.0", "jest-regex-util": "30.0.1", - "jest-util": "30.2.0", - "micromatch": "^4.0.8", + "jest-util": "30.3.0", "pirates": "^4.0.7", "slash": "^3.0.0", "write-file-atomic": "^5.0.1" @@ -1174,9 +1172,9 @@ } }, "node_modules/@jest/types": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jest/types/-/types-30.2.0.tgz", - "integrity": "sha512-H9xg1/sfVvyfU7o3zMfBEjQ1gcsdeTMgqHoYdN79tuLqfTtuu7WckRA1R5whDwOzxaZAeMKTYWqP+WCAi0CHsg==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-30.3.0.tgz", + "integrity": "sha512-JHm87k7bA33hpBngtU8h6UBub/fqqA9uXfw+21j5Hmk7ooPHlboRNxHq0JcMtC+n8VJGP1mcfnD3Mk+XKe1oSw==", "dev": true, "license": "MIT", "dependencies": { @@ -1194,7 +1192,7 @@ }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.13", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", "dev": true, "license": "MIT", @@ -1205,7 +1203,7 @@ }, "node_modules/@jridgewell/remapping": { "version": "2.3.5", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", "dev": true, "license": "MIT", @@ -1216,7 +1214,7 @@ }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "dev": true, "license": "MIT", @@ -1226,7 +1224,7 @@ }, "node_modules/@jridgewell/source-map": { "version": "0.3.11", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jridgewell/source-map/-/source-map-0.3.11.tgz", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.11.tgz", "integrity": "sha512-ZMp1V8ZFcPG5dIWnQLr3NSI1MiCU7UETdS/A0G8V/XWHvJv3ZsFqutJn1Y5RPmAPX6F3BiE397OqveU/9NCuIA==", "dev": true, "license": "MIT", @@ -1237,14 +1235,14 @@ }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.5.5", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", "dev": true, "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.31", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", "dev": true, "license": "MIT", @@ -1255,7 +1253,7 @@ }, "node_modules/@napi-rs/wasm-runtime": { "version": "0.2.12", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz", + "resolved": "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz", "integrity": "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==", "dev": true, "license": "MIT", @@ -1268,7 +1266,7 @@ }, "node_modules/@pkgjs/parseargs": { "version": "0.11.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "dev": true, "license": "MIT", @@ -1279,7 +1277,7 @@ }, "node_modules/@pkgr/core": { "version": "0.2.9", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@pkgr/core/-/core-0.2.9.tgz", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.9.tgz", "integrity": "sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA==", "dev": true, "license": "MIT", @@ -1291,9 +1289,9 @@ } }, "node_modules/@rollup/plugin-commonjs": { - "version": "29.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/plugin-commonjs/-/plugin-commonjs-29.0.0.tgz", - "integrity": "sha512-U2YHaxR2cU/yAiwKJtJRhnyLk7cifnQw0zUpISsocBDoHDJn+HTV74ABqnwr5bEgWUwFZC9oFL6wLe21lHu5eQ==", + "version": "29.0.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-29.0.2.tgz", + "integrity": "sha512-S/ggWH1LU7jTyi9DxZOKyxpVd4hF/OZ0JrEbeLjXk/DFXwRny0tjD2c992zOUYQobLrVkRVMDdmHP16HKP7GRg==", "dev": true, "license": "MIT", "dependencies": { @@ -1319,7 +1317,7 @@ }, "node_modules/@rollup/plugin-eslint": { "version": "9.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/plugin-eslint/-/plugin-eslint-9.2.0.tgz", + "resolved": "https://registry.npmjs.org/@rollup/plugin-eslint/-/plugin-eslint-9.2.0.tgz", "integrity": "sha512-WirwxltNtaCX6j4MVFMKiXkLGFfv0ewiz5PmJOuz4qoKrTAzTqC76rQzJvxlwXz0xZEw/bfnl6PMBgUecYETOw==", "dev": true, "license": "MIT", @@ -1341,7 +1339,7 @@ }, "node_modules/@rollup/plugin-json": { "version": "6.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/plugin-json/-/plugin-json-6.1.0.tgz", + "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-6.1.0.tgz", "integrity": "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==", "dev": true, "license": "MIT", @@ -1362,7 +1360,7 @@ }, "node_modules/@rollup/plugin-node-resolve": { "version": "16.0.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/plugin-node-resolve/-/plugin-node-resolve-16.0.3.tgz", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-16.0.3.tgz", "integrity": "sha512-lUYM3UBGuM93CnMPG1YocWu7X802BrNF3jW2zny5gQyLQgRFJhV1Sq0Zi74+dh/6NBx1DxFC4b4GXg9wUCG5Qg==", "dev": true, "license": "MIT", @@ -1387,7 +1385,7 @@ }, "node_modules/@rollup/plugin-terser": { "version": "0.4.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz", + "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz", "integrity": "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==", "dev": true, "license": "MIT", @@ -1410,7 +1408,7 @@ }, "node_modules/@rollup/plugin-typescript": { "version": "12.3.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/plugin-typescript/-/plugin-typescript-12.3.0.tgz", + "resolved": "https://registry.npmjs.org/@rollup/plugin-typescript/-/plugin-typescript-12.3.0.tgz", "integrity": "sha512-7DP0/p7y3t67+NabT9f8oTBFE6gGkto4SA6Np2oudYmZE/m1dt8RB0SjL1msMxFpLo631qjRCcBlAbq1ml/Big==", "dev": true, "license": "MIT", @@ -1437,7 +1435,7 @@ }, "node_modules/@rollup/pluginutils": { "version": "5.3.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", "dev": true, "license": "MIT", @@ -1459,9 +1457,9 @@ } }, "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz", - "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.1.tgz", + "integrity": "sha512-d6FinEBLdIiK+1uACUttJKfgZREXrF0Qc2SmLII7W2AD8FfiZ9Wjd+rD/iRuf5s5dWrr1GgwXCvPqOuDquOowA==", "cpu": [ "arm" ], @@ -1473,9 +1471,9 @@ ] }, "node_modules/@rollup/rollup-android-arm64": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz", - "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.1.tgz", + "integrity": "sha512-YjG/EwIDvvYI1YvYbHvDz/BYHtkY4ygUIXHnTdLhG+hKIQFBiosfWiACWortsKPKU/+dUwQQCKQM3qrDe8c9BA==", "cpu": [ "arm64" ], @@ -1487,9 +1485,9 @@ ] }, "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz", - "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.1.tgz", + "integrity": "sha512-mjCpF7GmkRtSJwon+Rq1N8+pI+8l7w5g9Z3vWj4T7abguC4Czwi3Yu/pFaLvA3TTeMVjnu3ctigusqWUfjZzvw==", "cpu": [ "arm64" ], @@ -1501,9 +1499,9 @@ ] }, "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz", - "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.1.tgz", + "integrity": "sha512-haZ7hJ1JT4e9hqkoT9R/19XW2QKqjfJVv+i5AGg57S+nLk9lQnJ1F/eZloRO3o9Scy9CM3wQ9l+dkXtcBgN5Ew==", "cpu": [ "x64" ], @@ -1515,9 +1513,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz", - "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.1.tgz", + "integrity": "sha512-czw90wpQq3ZsAVBlinZjAYTKduOjTywlG7fEeWKUA7oCmpA8xdTkxZZlwNJKWqILlq0wehoZcJYfBvOyhPTQ6w==", "cpu": [ "arm64" ], @@ -1529,9 +1527,9 @@ ] }, "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz", - "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.1.tgz", + "integrity": "sha512-KVB2rqsxTHuBtfOeySEyzEOB7ltlB/ux38iu2rBQzkjbwRVlkhAGIEDiiYnO2kFOkJp+Z7pUXKyrRRFuFUKt+g==", "cpu": [ "x64" ], @@ -1543,9 +1541,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz", - "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.1.tgz", + "integrity": "sha512-L+34Qqil+v5uC0zEubW7uByo78WOCIrBvci69E7sFASRl0X7b/MB6Cqd1lky/CtcSVTydWa2WZwFuWexjS5o6g==", "cpu": [ "arm" ], @@ -1557,9 +1555,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz", - "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.1.tgz", + "integrity": "sha512-n83O8rt4v34hgFzlkb1ycniJh7IR5RCIqt6mz1VRJD6pmhRi0CXdmfnLu9dIUS6buzh60IvACM842Ffb3xd6Gg==", "cpu": [ "arm" ], @@ -1571,9 +1569,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz", - "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.1.tgz", + "integrity": "sha512-Nql7sTeAzhTAja3QXeAI48+/+GjBJ+QmAH13snn0AJSNL50JsDqotyudHyMbO2RbJkskbMbFJfIJKWA6R1LCJQ==", "cpu": [ "arm64" ], @@ -1585,9 +1583,9 @@ ] }, "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz", - "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.1.tgz", + "integrity": "sha512-+pUymDhd0ys9GcKZPPWlFiZ67sTWV5UU6zOJat02M1+PiuSGDziyRuI/pPue3hoUwm2uGfxdL+trT6Z9rxnlMA==", "cpu": [ "arm64" ], @@ -1599,9 +1597,9 @@ ] }, "node_modules/@rollup/rollup-linux-loong64-gnu": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz", - "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.1.tgz", + "integrity": "sha512-VSvgvQeIcsEvY4bKDHEDWcpW4Yw7BtlKG1GUT4FzBUlEKQK0rWHYBqQt6Fm2taXS+1bXvJT6kICu5ZwqKCnvlQ==", "cpu": [ "loong64" ], @@ -1613,9 +1611,9 @@ ] }, "node_modules/@rollup/rollup-linux-loong64-musl": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz", - "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.1.tgz", + "integrity": "sha512-4LqhUomJqwe641gsPp6xLfhqWMbQV04KtPp7/dIp0nzPxAkNY1AbwL5W0MQpcalLYk07vaW9Kp1PBhdpZYYcEw==", "cpu": [ "loong64" ], @@ -1627,9 +1625,9 @@ ] }, "node_modules/@rollup/rollup-linux-ppc64-gnu": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz", - "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.1.tgz", + "integrity": "sha512-tLQQ9aPvkBxOc/EUT6j3pyeMD6Hb8QF2BTBnCQWP/uu1lhc9AIrIjKnLYMEroIz/JvtGYgI9dF3AxHZNaEH0rw==", "cpu": [ "ppc64" ], @@ -1641,9 +1639,9 @@ ] }, "node_modules/@rollup/rollup-linux-ppc64-musl": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz", - "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.1.tgz", + "integrity": "sha512-RMxFhJwc9fSXP6PqmAz4cbv3kAyvD1etJFjTx4ONqFP9DkTkXsAMU4v3Vyc5BgzC+anz7nS/9tp4obsKfqkDHg==", "cpu": [ "ppc64" ], @@ -1655,9 +1653,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz", - "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.1.tgz", + "integrity": "sha512-QKgFl+Yc1eEk6MmOBfRHYF6lTxiiiV3/z/BRrbSiW2I7AFTXoBFvdMEyglohPj//2mZS4hDOqeB0H1ACh3sBbg==", "cpu": [ "riscv64" ], @@ -1669,9 +1667,9 @@ ] }, "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz", - "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.1.tgz", + "integrity": "sha512-RAjXjP/8c6ZtzatZcA1RaQr6O1TRhzC+adn8YZDnChliZHviqIjmvFwHcxi4JKPSDAt6Uhf/7vqcBzQJy0PDJg==", "cpu": [ "riscv64" ], @@ -1683,9 +1681,9 @@ ] }, "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz", - "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.1.tgz", + "integrity": "sha512-wcuocpaOlaL1COBYiA89O6yfjlp3RwKDeTIA0hM7OpmhR1Bjo9j31G1uQVpDlTvwxGn2nQs65fBFL5UFd76FcQ==", "cpu": [ "s390x" ], @@ -1697,9 +1695,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz", - "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.1.tgz", + "integrity": "sha512-77PpsFQUCOiZR9+LQEFg9GClyfkNXj1MP6wRnzYs0EeWbPcHs02AXu4xuUbM1zhwn3wqaizle3AEYg5aeoohhg==", "cpu": [ "x64" ], @@ -1711,9 +1709,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz", - "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.1.tgz", + "integrity": "sha512-5cIATbk5vynAjqqmyBjlciMJl1+R/CwX9oLk/EyiFXDWd95KpHdrOJT//rnUl4cUcskrd0jCCw3wpZnhIHdD9w==", "cpu": [ "x64" ], @@ -1725,9 +1723,9 @@ ] }, "node_modules/@rollup/rollup-openbsd-x64": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz", - "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.1.tgz", + "integrity": "sha512-cl0w09WsCi17mcmWqqglez9Gk8isgeWvoUZ3WiJFYSR3zjBQc2J5/ihSjpl+VLjPqjQ/1hJRcqBfLjssREQILw==", "cpu": [ "x64" ], @@ -1739,9 +1737,9 @@ ] }, "node_modules/@rollup/rollup-openharmony-arm64": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz", - "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.1.tgz", + "integrity": "sha512-4Cv23ZrONRbNtbZa37mLSueXUCtN7MXccChtKpUnQNgF010rjrjfHx3QxkS2PI7LqGT5xXyYs1a7LbzAwT0iCA==", "cpu": [ "arm64" ], @@ -1753,9 +1751,9 @@ ] }, "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz", - "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.1.tgz", + "integrity": "sha512-i1okWYkA4FJICtr7KpYzFpRTHgy5jdDbZiWfvny21iIKky5YExiDXP+zbXzm3dUcFpkEeYNHgQ5fuG236JPq0g==", "cpu": [ "arm64" ], @@ -1767,9 +1765,9 @@ ] }, "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz", - "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.1.tgz", + "integrity": "sha512-u09m3CuwLzShA0EYKMNiFgcjjzwqtUMLmuCJLeZWjjOYA3IT2Di09KaxGBTP9xVztWyIWjVdsB2E9goMjZvTQg==", "cpu": [ "ia32" ], @@ -1781,9 +1779,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-gnu": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz", - "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.1.tgz", + "integrity": "sha512-k+600V9Zl1CM7eZxJgMyTUzmrmhB/0XZnF4pRypKAlAgxmedUA+1v9R+XOFv56W4SlHEzfeMtzujLJD22Uz5zg==", "cpu": [ "x64" ], @@ -1795,9 +1793,9 @@ ] }, "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz", - "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.1.tgz", + "integrity": "sha512-lWMnixq/QzxyhTV6NjQJ4SFo1J6PvOX8vUx5Wb4bBPsEb+8xZ89Bz6kOXpfXj9ak9AHTQVQzlgzBEc1SyM27xQ==", "cpu": [ "x64" ], @@ -1809,15 +1807,15 @@ ] }, "node_modules/@sinclair/typebox": { - "version": "0.34.48", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@sinclair/typebox/-/typebox-0.34.48.tgz", - "integrity": "sha512-kKJTNuK3AQOrgjjotVxMrCn1sUJwM76wMszfq1kdU4uYVJjvEWuFQ6HgvLt4Xz3fSmZlTOxJ/Ie13KnIcWQXFA==", + "version": "0.34.49", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.34.49.tgz", + "integrity": "sha512-brySQQs7Jtn0joV8Xh9ZV/hZb9Ozb0pmazDIASBkYKCjXrXU3mpcFahmK/z4YDhGkQvP9mWJbVyahdtU5wQA+A==", "dev": true, "license": "MIT" }, "node_modules/@sinonjs/commons": { "version": "3.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@sinonjs/commons/-/commons-3.0.1.tgz", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.1.tgz", "integrity": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==", "dev": true, "license": "BSD-3-Clause", @@ -1826,9 +1824,9 @@ } }, "node_modules/@sinonjs/fake-timers": { - "version": "13.0.5", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@sinonjs/fake-timers/-/fake-timers-13.0.5.tgz", - "integrity": "sha512-36/hTbH2uaWuGVERyC6da9YwGWnzUZXuPro/F2LfsdOsLnCojz/iSH8MxUt/FD2S5XBSVPhmArFUXcpCQ2Hkiw==", + "version": "15.3.2", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-15.3.2.tgz", + "integrity": "sha512-mrn35Jl2pCpns+mE3HaZa1yPN5EYCRgiMI+135COjr2hr8Cls9DXqIZ57vZe2cz7y2XVSq92tcs6kGQcT1J8Rw==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -1837,7 +1835,7 @@ }, "node_modules/@tybys/wasm-util": { "version": "0.10.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", + "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz", "integrity": "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==", "dev": true, "license": "MIT", @@ -1848,7 +1846,7 @@ }, "node_modules/@types/babel__core": { "version": "7.20.5", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/babel__core/-/babel__core-7.20.5.tgz", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", "dev": true, "license": "MIT", @@ -1862,7 +1860,7 @@ }, "node_modules/@types/babel__generator": { "version": "7.27.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", "dev": true, "license": "MIT", @@ -1872,7 +1870,7 @@ }, "node_modules/@types/babel__template": { "version": "7.4.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/babel__template/-/babel__template-7.4.4.tgz", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", "dev": true, "license": "MIT", @@ -1883,7 +1881,7 @@ }, "node_modules/@types/babel__traverse": { "version": "7.28.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", "dev": true, "license": "MIT", @@ -1893,28 +1891,28 @@ }, "node_modules/@types/esrecurse": { "version": "4.3.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/esrecurse/-/esrecurse-4.3.1.tgz", + "resolved": "https://registry.npmjs.org/@types/esrecurse/-/esrecurse-4.3.1.tgz", "integrity": "sha512-xJBAbDifo5hpffDBuHl0Y8ywswbiAp/Wi7Y/GtAgSlZyIABppyurxVueOPE8LUQOxdlgi6Zqce7uoEpqNTeiUw==", "dev": true, "license": "MIT" }, "node_modules/@types/estree": { "version": "1.0.8", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/estree/-/estree-1.0.8.tgz", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", "dev": true, "license": "MIT" }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", "dev": true, "license": "MIT" }, "node_modules/@types/istanbul-lib-report": { "version": "3.0.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", "dev": true, "license": "MIT", @@ -1924,7 +1922,7 @@ }, "node_modules/@types/istanbul-reports": { "version": "3.0.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", "dev": true, "license": "MIT", @@ -1934,38 +1932,38 @@ }, "node_modules/@types/json-schema": { "version": "7.0.15", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/json-schema/-/json-schema-7.0.15.tgz", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "dev": true, "license": "MIT" }, "node_modules/@types/node": { - "version": "25.3.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/node/-/node-25.3.3.tgz", - "integrity": "sha512-DpzbrH7wIcBaJibpKo9nnSQL0MTRdnWttGyE5haGwK86xgMOkFLp7vEyfQPGLOJh5wNYiJ3V9PmUMDhV9u8kkQ==", + "version": "25.6.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.6.0.tgz", + "integrity": "sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ==", "dev": true, "license": "MIT", "dependencies": { - "undici-types": "~7.18.0" + "undici-types": "~7.19.0" } }, "node_modules/@types/resolve": { "version": "1.20.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/resolve/-/resolve-1.20.2.tgz", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==", "dev": true, "license": "MIT" }, "node_modules/@types/stack-utils": { "version": "2.0.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", "dev": true, "license": "MIT" }, "node_modules/@types/yargs": { "version": "17.0.35", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/yargs/-/yargs-17.0.35.tgz", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.35.tgz", "integrity": "sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==", "dev": true, "license": "MIT", @@ -1975,26 +1973,26 @@ }, "node_modules/@types/yargs-parser": { "version": "21.0.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", "dev": true, "license": "MIT" }, "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.56.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.56.1.tgz", - "integrity": "sha512-Jz9ZztpB37dNC+HU2HI28Bs9QXpzCz+y/twHOwhyrIRdbuVDxSytJNDl6z/aAKlaRIwC7y8wJdkBv7FxYGgi0A==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.58.2.tgz", + "integrity": "sha512-aC2qc5thQahutKjP+cl8cgN9DWe3ZUqVko30CMSZHnFEHyhOYoZSzkGtAI2mcwZ38xeImDucI4dnqsHiOYuuCw==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/regexpp": "^4.12.2", - "@typescript-eslint/scope-manager": "8.56.1", - "@typescript-eslint/type-utils": "8.56.1", - "@typescript-eslint/utils": "8.56.1", - "@typescript-eslint/visitor-keys": "8.56.1", + "@typescript-eslint/scope-manager": "8.58.2", + "@typescript-eslint/type-utils": "8.58.2", + "@typescript-eslint/utils": "8.58.2", + "@typescript-eslint/visitor-keys": "8.58.2", "ignore": "^7.0.5", "natural-compare": "^1.4.0", - "ts-api-utils": "^2.4.0" + "ts-api-utils": "^2.5.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -2004,22 +2002,22 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "@typescript-eslint/parser": "^8.56.1", + "@typescript-eslint/parser": "^8.58.2", "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", - "typescript": ">=4.8.4 <6.0.0" + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/parser": { - "version": "8.56.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@typescript-eslint/parser/-/parser-8.56.1.tgz", - "integrity": "sha512-klQbnPAAiGYFyI02+znpBRLyjL4/BrBd0nyWkdC0s/6xFLkXYQ8OoRrSkqacS1ddVxf/LDyODIKbQ5TgKAf/Fg==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.58.2.tgz", + "integrity": "sha512-/Zb/xaIDfxeJnvishjGdcR4jmr7S+bda8PKNhRGdljDM+elXhlvN0FyPSsMnLmJUrVG9aPO6dof80wjMawsASg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/scope-manager": "8.56.1", - "@typescript-eslint/types": "8.56.1", - "@typescript-eslint/typescript-estree": "8.56.1", - "@typescript-eslint/visitor-keys": "8.56.1", + "@typescript-eslint/scope-manager": "8.58.2", + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/typescript-estree": "8.58.2", + "@typescript-eslint/visitor-keys": "8.58.2", "debug": "^4.4.3" }, "engines": { @@ -2031,18 +2029,18 @@ }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", - "typescript": ">=4.8.4 <6.0.0" + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/project-service": { - "version": "8.56.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@typescript-eslint/project-service/-/project-service-8.56.1.tgz", - "integrity": "sha512-TAdqQTzHNNvlVFfR+hu2PDJrURiwKsUvxFn1M0h95BB8ah5jejas08jUWG4dBA68jDMI988IvtfdAI53JzEHOQ==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.58.2.tgz", + "integrity": "sha512-Cq6UfpZZk15+r87BkIh5rDpi38W4b+Sjnb8wQCPPDDweS/LRCFjCyViEbzHk5Ck3f2QDfgmlxqSa7S7clDtlfg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/tsconfig-utils": "^8.56.1", - "@typescript-eslint/types": "^8.56.1", + "@typescript-eslint/tsconfig-utils": "^8.58.2", + "@typescript-eslint/types": "^8.58.2", "debug": "^4.4.3" }, "engines": { @@ -2053,18 +2051,18 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "typescript": ">=4.8.4 <6.0.0" + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/scope-manager": { - "version": "8.56.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@typescript-eslint/scope-manager/-/scope-manager-8.56.1.tgz", - "integrity": "sha512-YAi4VDKcIZp0O4tz/haYKhmIDZFEUPOreKbfdAN3SzUDMcPhJ8QI99xQXqX+HoUVq8cs85eRKnD+rne2UAnj2w==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.58.2.tgz", + "integrity": "sha512-SgmyvDPexWETQek+qzZnrG6844IaO02UVyOLhI4wpo82dpZJY9+6YZCKAMFzXb7qhx37mFK1QcPQ18tud+vo6Q==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.56.1", - "@typescript-eslint/visitor-keys": "8.56.1" + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/visitor-keys": "8.58.2" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -2075,9 +2073,9 @@ } }, "node_modules/@typescript-eslint/tsconfig-utils": { - "version": "8.56.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.56.1.tgz", - "integrity": "sha512-qOtCYzKEeyr3aR9f28mPJqBty7+DBqsdd63eO0yyDwc6vgThj2UjWfJIcsFeSucYydqcuudMOprZ+x1SpF3ZuQ==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.58.2.tgz", + "integrity": "sha512-3SR+RukipDvkkKp/d0jP0dyzuls3DbGmwDpVEc5wqk5f38KFThakqAAO0XMirWAE+kT00oTauTbzMFGPoAzB0A==", "dev": true, "license": "MIT", "engines": { @@ -2088,21 +2086,21 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "typescript": ">=4.8.4 <6.0.0" + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/type-utils": { - "version": "8.56.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@typescript-eslint/type-utils/-/type-utils-8.56.1.tgz", - "integrity": "sha512-yB/7dxi7MgTtGhZdaHCemf7PuwrHMenHjmzgUW1aJpO+bBU43OycnM3Wn+DdvDO/8zzA9HlhaJ0AUGuvri4oGg==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.58.2.tgz", + "integrity": "sha512-Z7EloNR/B389FvabdGeTo2XMs4W9TjtPiO9DAsmT0yom0bwlPyRjkJ1uCdW1DvrrrYP50AJZ9Xc3sByZA9+dcg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.56.1", - "@typescript-eslint/typescript-estree": "8.56.1", - "@typescript-eslint/utils": "8.56.1", + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/typescript-estree": "8.58.2", + "@typescript-eslint/utils": "8.58.2", "debug": "^4.4.3", - "ts-api-utils": "^2.4.0" + "ts-api-utils": "^2.5.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -2113,13 +2111,13 @@ }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", - "typescript": ">=4.8.4 <6.0.0" + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/types": { - "version": "8.56.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@typescript-eslint/types/-/types-8.56.1.tgz", - "integrity": "sha512-dbMkdIUkIkchgGDIv7KLUpa0Mda4IYjo4IAMJUZ+3xNoUXxMsk9YtKpTHSChRS85o+H9ftm51gsK1dZReY9CVw==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.58.2.tgz", + "integrity": "sha512-9TukXyATBQf/Jq9AMQXfvurk+G5R2MwfqQGDR2GzGz28HvY/lXNKGhkY+6IOubwcquikWk5cjlgPvD2uAA7htQ==", "dev": true, "license": "MIT", "engines": { @@ -2131,21 +2129,21 @@ } }, "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.56.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@typescript-eslint/typescript-estree/-/typescript-estree-8.56.1.tgz", - "integrity": "sha512-qzUL1qgalIvKWAf9C1HpvBjif+Vm6rcT5wZd4VoMb9+Km3iS3Cv9DY6dMRMDtPnwRAFyAi7YXJpTIEXLvdfPxg==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.58.2.tgz", + "integrity": "sha512-ELGuoofuhhoCvNbQjFFiobFcGgcDCEm0ThWdmO4Z0UzLqPXS3KFvnEZ+SHewwOYHjM09tkzOWXNTv9u6Gqtyuw==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/project-service": "8.56.1", - "@typescript-eslint/tsconfig-utils": "8.56.1", - "@typescript-eslint/types": "8.56.1", - "@typescript-eslint/visitor-keys": "8.56.1", + "@typescript-eslint/project-service": "8.58.2", + "@typescript-eslint/tsconfig-utils": "8.58.2", + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/visitor-keys": "8.58.2", "debug": "^4.4.3", "minimatch": "^10.2.2", "semver": "^7.7.3", "tinyglobby": "^0.2.15", - "ts-api-utils": "^2.4.0" + "ts-api-utils": "^2.5.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -2155,20 +2153,20 @@ "url": "https://opencollective.com/typescript-eslint" }, "peerDependencies": { - "typescript": ">=4.8.4 <6.0.0" + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/utils": { - "version": "8.56.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@typescript-eslint/utils/-/utils-8.56.1.tgz", - "integrity": "sha512-HPAVNIME3tABJ61siYlHzSWCGtOoeP2RTIaHXFMPqjrQKCGB9OgUVdiNgH7TJS2JNIQ5qQ4RsAUDuGaGme/KOA==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.58.2.tgz", + "integrity": "sha512-QZfjHNEzPY8+l0+fIXMvuQ2sJlplB4zgDZvA+NmvZsZv3EQwOcc1DuIU1VJUTWZ/RKouBMhDyNaBMx4sWvrzRA==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.9.1", - "@typescript-eslint/scope-manager": "8.56.1", - "@typescript-eslint/types": "8.56.1", - "@typescript-eslint/typescript-estree": "8.56.1" + "@typescript-eslint/scope-manager": "8.58.2", + "@typescript-eslint/types": "8.58.2", + "@typescript-eslint/typescript-estree": "8.58.2" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -2179,17 +2177,17 @@ }, "peerDependencies": { "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0", - "typescript": ">=4.8.4 <6.0.0" + "typescript": ">=4.8.4 <6.1.0" } }, "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.56.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@typescript-eslint/visitor-keys/-/visitor-keys-8.56.1.tgz", - "integrity": "sha512-KiROIzYdEV85YygXw6BI/Dx4fnBlFQu6Mq4QE4MOH9fFnhohw6wX/OAvDY2/C+ut0I3RSPKenvZJIVYqJNkhEw==", + "version": "8.58.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.58.2.tgz", + "integrity": "sha512-f1WO2Lx8a9t8DARmcWAUPJbu0G20bJlj8L4z72K00TMeJAoyLr/tHhI/pzYBLrR4dXWkcxO1cWYZEOX8DKHTqA==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.56.1", + "@typescript-eslint/types": "8.58.2", "eslint-visitor-keys": "^5.0.0" }, "engines": { @@ -2202,7 +2200,7 @@ }, "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { "version": "5.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", "dev": true, "license": "Apache-2.0", @@ -2215,14 +2213,14 @@ }, "node_modules/@ungap/structured-clone": { "version": "1.3.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", "dev": true, "license": "ISC" }, "node_modules/@unrs/resolver-binding-android-arm-eabi": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz", "integrity": "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==", "cpu": [ "arm" @@ -2236,7 +2234,7 @@ }, "node_modules/@unrs/resolver-binding-android-arm64": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz", "integrity": "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==", "cpu": [ "arm64" @@ -2250,7 +2248,7 @@ }, "node_modules/@unrs/resolver-binding-darwin-arm64": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz", "integrity": "sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==", "cpu": [ "arm64" @@ -2264,7 +2262,7 @@ }, "node_modules/@unrs/resolver-binding-darwin-x64": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz", "integrity": "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==", "cpu": [ "x64" @@ -2278,7 +2276,7 @@ }, "node_modules/@unrs/resolver-binding-freebsd-x64": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz", "integrity": "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==", "cpu": [ "x64" @@ -2292,7 +2290,7 @@ }, "node_modules/@unrs/resolver-binding-linux-arm-gnueabihf": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz", "integrity": "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==", "cpu": [ "arm" @@ -2306,7 +2304,7 @@ }, "node_modules/@unrs/resolver-binding-linux-arm-musleabihf": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz", "integrity": "sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==", "cpu": [ "arm" @@ -2320,7 +2318,7 @@ }, "node_modules/@unrs/resolver-binding-linux-arm64-gnu": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz", "integrity": "sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==", "cpu": [ "arm64" @@ -2334,7 +2332,7 @@ }, "node_modules/@unrs/resolver-binding-linux-arm64-musl": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz", "integrity": "sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==", "cpu": [ "arm64" @@ -2348,7 +2346,7 @@ }, "node_modules/@unrs/resolver-binding-linux-ppc64-gnu": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz", "integrity": "sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==", "cpu": [ "ppc64" @@ -2362,7 +2360,7 @@ }, "node_modules/@unrs/resolver-binding-linux-riscv64-gnu": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz", "integrity": "sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==", "cpu": [ "riscv64" @@ -2376,7 +2374,7 @@ }, "node_modules/@unrs/resolver-binding-linux-riscv64-musl": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz", "integrity": "sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==", "cpu": [ "riscv64" @@ -2390,7 +2388,7 @@ }, "node_modules/@unrs/resolver-binding-linux-s390x-gnu": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz", "integrity": "sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==", "cpu": [ "s390x" @@ -2404,7 +2402,7 @@ }, "node_modules/@unrs/resolver-binding-linux-x64-gnu": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz", "integrity": "sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==", "cpu": [ "x64" @@ -2418,7 +2416,7 @@ }, "node_modules/@unrs/resolver-binding-linux-x64-musl": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz", "integrity": "sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==", "cpu": [ "x64" @@ -2432,7 +2430,7 @@ }, "node_modules/@unrs/resolver-binding-wasm32-wasi": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz", "integrity": "sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==", "cpu": [ "wasm32" @@ -2449,7 +2447,7 @@ }, "node_modules/@unrs/resolver-binding-win32-arm64-msvc": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz", "integrity": "sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==", "cpu": [ "arm64" @@ -2463,7 +2461,7 @@ }, "node_modules/@unrs/resolver-binding-win32-ia32-msvc": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz", "integrity": "sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==", "cpu": [ "ia32" @@ -2477,7 +2475,7 @@ }, "node_modules/@unrs/resolver-binding-win32-x64-msvc": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz", "integrity": "sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==", "cpu": [ "x64" @@ -2491,7 +2489,7 @@ }, "node_modules/acorn": { "version": "8.16.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/acorn/-/acorn-8.16.0.tgz", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.16.0.tgz", "integrity": "sha512-UVJyE9MttOsBQIDKw1skb9nAwQuR5wuGD3+82K6JgJlm/Y+KI92oNsMNGZCYdDsVtRHSak0pcV5Dno5+4jh9sw==", "dev": true, "license": "MIT", @@ -2504,7 +2502,7 @@ }, "node_modules/acorn-jsx": { "version": "5.3.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, "license": "MIT", @@ -2514,7 +2512,7 @@ }, "node_modules/ajv": { "version": "6.14.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ajv/-/ajv-6.14.0.tgz", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.14.0.tgz", "integrity": "sha512-IWrosm/yrn43eiKqkfkHis7QioDleaXQHdDVPKg0FSwwd/DuvyX79TZnFOnYpB7dcsFAMmtFztZuXPDvSePkFw==", "dev": true, "license": "MIT", @@ -2531,7 +2529,7 @@ }, "node_modules/ansi-escapes": { "version": "4.3.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "license": "MIT", @@ -2547,7 +2545,7 @@ }, "node_modules/ansi-regex": { "version": "6.2.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ansi-regex/-/ansi-regex-6.2.2.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz", "integrity": "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==", "dev": true, "license": "MIT", @@ -2560,7 +2558,7 @@ }, "node_modules/ansi-styles": { "version": "4.3.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ansi-styles/-/ansi-styles-4.3.0.tgz", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "license": "MIT", @@ -2576,7 +2574,7 @@ }, "node_modules/anymatch": { "version": "3.1.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/anymatch/-/anymatch-3.1.3.tgz", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, "license": "ISC", @@ -2589,9 +2587,9 @@ } }, "node_modules/anymatch/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.2.tgz", + "integrity": "sha512-V7+vQEJ06Z+c5tSye8S+nHUfI51xoXIXjHQ99cQtKUkQqqO1kO/KCJUfZXuB47h/YBlDhah2H3hdUGXn8ie0oA==", "dev": true, "license": "MIT", "engines": { @@ -2603,7 +2601,7 @@ }, "node_modules/argparse": { "version": "1.0.10", - "resolved": "https://artifact.devsnc.com/repository/npm-all/argparse/-/argparse-1.0.10.tgz", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "license": "MIT", @@ -2612,16 +2610,16 @@ } }, "node_modules/babel-jest": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/babel-jest/-/babel-jest-30.2.0.tgz", - "integrity": "sha512-0YiBEOxWqKkSQWL9nNGGEgndoeL0ZpWrbLMNL5u/Kaxrli3Eaxlt3ZtIDktEvXt4L/R9r3ODr2zKwGM/2BjxVw==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-30.3.0.tgz", + "integrity": "sha512-gRpauEU2KRrCox5Z296aeVHR4jQ98BCnu0IO332D/xpHNOsIH/bgSRk9k6GbKIbBw8vFeN6ctuu6tV8WOyVfYQ==", "dev": true, "license": "MIT", "dependencies": { - "@jest/transform": "30.2.0", + "@jest/transform": "30.3.0", "@types/babel__core": "^7.20.5", "babel-plugin-istanbul": "^7.0.1", - "babel-preset-jest": "30.2.0", + "babel-preset-jest": "30.3.0", "chalk": "^4.1.2", "graceful-fs": "^4.2.11", "slash": "^3.0.0" @@ -2635,7 +2633,7 @@ }, "node_modules/babel-plugin-istanbul": { "version": "7.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/babel-plugin-istanbul/-/babel-plugin-istanbul-7.0.1.tgz", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-7.0.1.tgz", "integrity": "sha512-D8Z6Qm8jCvVXtIRkBnqNHX0zJ37rQcFJ9u8WOS6tkYOsRdHBzypCstaxWiu5ZIlqQtviRYbgnRLSoCEvjqcqbA==", "dev": true, "license": "BSD-3-Clause", @@ -2654,9 +2652,9 @@ } }, "node_modules/babel-plugin-jest-hoist": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-30.2.0.tgz", - "integrity": "sha512-ftzhzSGMUnOzcCXd6WHdBGMyuwy15Wnn0iyyWGKgBDLxf9/s5ABuraCSpBX2uG0jUg4rqJnxsLc5+oYBqoxVaA==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-30.3.0.tgz", + "integrity": "sha512-+TRkByhsws6sfPjVaitzadk1I0F5sPvOVUH5tyTSzhePpsGIVrdeunHSw/C36QeocS95OOk8lunc4rlu5Anwsg==", "dev": true, "license": "MIT", "dependencies": { @@ -2668,7 +2666,7 @@ }, "node_modules/babel-preset-current-node-syntax": { "version": "1.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.2.0.tgz", "integrity": "sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==", "dev": true, "license": "MIT", @@ -2694,13 +2692,13 @@ } }, "node_modules/babel-preset-jest": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/babel-preset-jest/-/babel-preset-jest-30.2.0.tgz", - "integrity": "sha512-US4Z3NOieAQumwFnYdUWKvUKh8+YSnS/gB3t6YBiz0bskpu7Pine8pPCheNxlPEW4wnUkma2a94YuW2q3guvCQ==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-30.3.0.tgz", + "integrity": "sha512-6ZcUbWHC+dMz2vfzdNwi87Z1gQsLNK2uLuK1Q89R11xdvejcivlYYwDlEv0FHX3VwEXpbBQ9uufB/MUNpZGfhQ==", "dev": true, "license": "MIT", "dependencies": { - "babel-plugin-jest-hoist": "30.2.0", + "babel-plugin-jest-hoist": "30.3.0", "babel-preset-current-node-syntax": "^1.2.0" }, "engines": { @@ -2712,7 +2710,7 @@ }, "node_modules/balanced-match": { "version": "4.0.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/balanced-match/-/balanced-match-4.0.4.tgz", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz", "integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==", "dev": true, "license": "MIT", @@ -2721,9 +2719,9 @@ } }, "node_modules/baseline-browser-mapping": { - "version": "2.10.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/baseline-browser-mapping/-/baseline-browser-mapping-2.10.0.tgz", - "integrity": "sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==", + "version": "2.10.19", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.19.tgz", + "integrity": "sha512-qCkNLi2sfBOn8XhZQ0FXsT1Ki/Yo5P90hrkRamVFRS7/KV9hpfA4HkoWNU152+8w0zPjnxo5psx5NL3PSGgv5g==", "dev": true, "license": "Apache-2.0", "bin": { @@ -2734,9 +2732,9 @@ } }, "node_modules/brace-expansion": { - "version": "5.0.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/brace-expansion/-/brace-expansion-5.0.4.tgz", - "integrity": "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==", + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.5.tgz", + "integrity": "sha512-VZznLgtwhn+Mact9tfiwx64fA9erHH/MCXEUfB/0bX/6Fz6ny5EGTXYltMocqg4xFAQZtnO3DHWWXi8RiuN7cQ==", "dev": true, "license": "MIT", "dependencies": { @@ -2746,23 +2744,10 @@ "node": "18 || 20 || >=22" } }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "dev": true, - "license": "MIT", - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/browserslist": { - "version": "4.28.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/browserslist/-/browserslist-4.28.1.tgz", - "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "version": "4.28.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.2.tgz", + "integrity": "sha512-48xSriZYYg+8qXna9kwqjIVzuQxi+KYWp2+5nCYnYKPTr0LvD89Jqk2Or5ogxz0NUMfIjhh2lIUX/LyX9B4oIg==", "dev": true, "funding": [ { @@ -2780,11 +2765,11 @@ ], "license": "MIT", "dependencies": { - "baseline-browser-mapping": "^2.9.0", - "caniuse-lite": "^1.0.30001759", - "electron-to-chromium": "^1.5.263", - "node-releases": "^2.0.27", - "update-browserslist-db": "^1.2.0" + "baseline-browser-mapping": "^2.10.12", + "caniuse-lite": "^1.0.30001782", + "electron-to-chromium": "^1.5.328", + "node-releases": "^2.0.36", + "update-browserslist-db": "^1.2.3" }, "bin": { "browserslist": "cli.js" @@ -2795,7 +2780,7 @@ }, "node_modules/bser": { "version": "2.1.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/bser/-/bser-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "license": "Apache-2.0", @@ -2805,14 +2790,14 @@ }, "node_modules/buffer-from": { "version": "1.1.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/buffer-from/-/buffer-from-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true, "license": "MIT" }, "node_modules/callsites": { "version": "3.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/callsites/-/callsites-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, "license": "MIT", @@ -2822,7 +2807,7 @@ }, "node_modules/camelcase": { "version": "5.3.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/camelcase/-/camelcase-5.3.1.tgz", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, "license": "MIT", @@ -2831,9 +2816,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001775", - "resolved": "https://artifact.devsnc.com/repository/npm-all/caniuse-lite/-/caniuse-lite-1.0.30001775.tgz", - "integrity": "sha512-s3Qv7Lht9zbVKE9XoTyRG6wVDCKdtOFIjBGg3+Yhn6JaytuNKPIjBMTMIY1AnOH3seL5mvF+x33oGAyK3hVt3A==", + "version": "1.0.30001788", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001788.tgz", + "integrity": "sha512-6q8HFp+lOQtcf7wBK+uEenxymVWkGKkjFpCvw5W25cmMwEDU45p1xQFBQv8JDlMMry7eNxyBaR+qxgmTUZkIRQ==", "dev": true, "funding": [ { @@ -2853,7 +2838,7 @@ }, "node_modules/chalk": { "version": "4.1.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/chalk/-/chalk-4.1.2.tgz", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "license": "MIT", @@ -2870,7 +2855,7 @@ }, "node_modules/char-regex": { "version": "1.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/char-regex/-/char-regex-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true, "license": "MIT", @@ -2880,7 +2865,7 @@ }, "node_modules/ci-info": { "version": "4.4.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ci-info/-/ci-info-4.4.0.tgz", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.4.0.tgz", "integrity": "sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==", "dev": true, "funding": [ @@ -2896,14 +2881,14 @@ }, "node_modules/cjs-module-lexer": { "version": "2.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/cjs-module-lexer/-/cjs-module-lexer-2.2.0.tgz", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-2.2.0.tgz", "integrity": "sha512-4bHTS2YuzUvtoLjdy+98ykbNB5jS0+07EvFNXerqZQJ89F7DI6ET7OQo/HJuW6K0aVsKA9hj9/RVb2kQVOrPDQ==", "dev": true, "license": "MIT" }, "node_modules/cliui": { "version": "8.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/cliui/-/cliui-8.0.1.tgz", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, "license": "ISC", @@ -2918,7 +2903,7 @@ }, "node_modules/cliui/node_modules/ansi-regex": { "version": "5.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ansi-regex/-/ansi-regex-5.0.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "license": "MIT", @@ -2928,14 +2913,14 @@ }, "node_modules/cliui/node_modules/emoji-regex": { "version": "8.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/emoji-regex/-/emoji-regex-8.0.0.tgz", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true, "license": "MIT" }, "node_modules/cliui/node_modules/string-width": { "version": "4.2.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/string-width/-/string-width-4.2.3.tgz", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "license": "MIT", @@ -2950,7 +2935,7 @@ }, "node_modules/cliui/node_modules/strip-ansi": { "version": "6.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/strip-ansi/-/strip-ansi-6.0.1.tgz", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "license": "MIT", @@ -2963,7 +2948,7 @@ }, "node_modules/cliui/node_modules/wrap-ansi": { "version": "7.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "license": "MIT", @@ -2981,7 +2966,7 @@ }, "node_modules/co": { "version": "4.6.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/co/-/co-4.6.0.tgz", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true, "license": "MIT", @@ -2992,14 +2977,14 @@ }, "node_modules/collect-v8-coverage": { "version": "1.0.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/collect-v8-coverage/-/collect-v8-coverage-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.3.tgz", "integrity": "sha512-1L5aqIkwPfiodaMgQunkF1zRhNqifHBmtbbbxcr6yVxxBnliw4TDOW6NxpO8DJLgJ16OT+Y4ztZqP6p/FtXnAw==", "dev": true, "license": "MIT" }, "node_modules/color-convert": { "version": "2.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/color-convert/-/color-convert-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "license": "MIT", @@ -3012,42 +2997,42 @@ }, "node_modules/color-name": { "version": "1.1.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/color-name/-/color-name-1.1.4.tgz", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true, "license": "MIT" }, "node_modules/commander": { "version": "2.20.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/commander/-/commander-2.20.3.tgz", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "dev": true, "license": "MIT" }, "node_modules/commondir": { "version": "1.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/commondir/-/commondir-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "dev": true, "license": "MIT" }, "node_modules/concat-map": { "version": "0.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/concat-map/-/concat-map-0.0.1.tgz", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true, "license": "MIT" }, "node_modules/convert-source-map": { "version": "2.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/convert-source-map/-/convert-source-map-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "dev": true, "license": "MIT" }, "node_modules/cross-spawn": { "version": "7.0.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/cross-spawn/-/cross-spawn-7.0.6.tgz", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "license": "MIT", @@ -3062,7 +3047,7 @@ }, "node_modules/debug": { "version": "4.4.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/debug/-/debug-4.4.3.tgz", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "dev": true, "license": "MIT", @@ -3079,9 +3064,9 @@ } }, "node_modules/dedent": { - "version": "1.7.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/dedent/-/dedent-1.7.1.tgz", - "integrity": "sha512-9JmrhGZpOlEgOLdQgSm0zxFaYoQon408V1v49aqTWuXENVlnCuY9JBZcXZiCsZQWDjTm5Qf/nIvAy77mXDAjEg==", + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.7.2.tgz", + "integrity": "sha512-WzMx3mW98SN+zn3hgemf4OzdmyNhhhKz5Ay0pUfQiMQ3e1g+xmTJWp/pKdwKVXhdSkAEGIIzqeuWrL3mV/AXbA==", "dev": true, "license": "MIT", "peerDependencies": { @@ -3095,14 +3080,14 @@ }, "node_modules/deep-is": { "version": "0.1.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/deep-is/-/deep-is-0.1.4.tgz", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true, "license": "MIT" }, "node_modules/deepmerge": { "version": "4.3.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/deepmerge/-/deepmerge-4.3.1.tgz", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", "dev": true, "license": "MIT", @@ -3112,7 +3097,7 @@ }, "node_modules/detect-newline": { "version": "3.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/detect-newline/-/detect-newline-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, "license": "MIT", @@ -3122,21 +3107,21 @@ }, "node_modules/eastasianwidth": { "version": "0.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", "dev": true, "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.5.302", - "resolved": "https://artifact.devsnc.com/repository/npm-all/electron-to-chromium/-/electron-to-chromium-1.5.302.tgz", - "integrity": "sha512-sM6HAN2LyK82IyPBpznDRqlTQAtuSaO+ShzFiWTvoMJLHyZ+Y39r8VMfHzwbU8MVBzQ4Wdn85+wlZl2TLGIlwg==", + "version": "1.5.337", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.337.tgz", + "integrity": "sha512-15gKW9mRUNP9RdzhedJNypFUxtYWSXohFz2nTLzM272xbRXHws68kNDzyATG3qej+vUj/7Sn9hf5XTDh0XK6/w==", "dev": true, "license": "ISC" }, "node_modules/emittery": { "version": "0.13.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/emittery/-/emittery-0.13.1.tgz", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", "dev": true, "license": "MIT", @@ -3149,14 +3134,14 @@ }, "node_modules/emoji-regex": { "version": "9.2.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/emoji-regex/-/emoji-regex-9.2.2.tgz", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true, "license": "MIT" }, "node_modules/error-ex": { "version": "1.3.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/error-ex/-/error-ex-1.3.4.tgz", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.4.tgz", "integrity": "sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==", "dev": true, "license": "MIT", @@ -3164,9 +3149,19 @@ "is-arrayish": "^0.2.1" } }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/escalade": { "version": "3.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/escalade/-/escalade-3.2.0.tgz", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, "license": "MIT", @@ -3176,7 +3171,7 @@ }, "node_modules/escape-string-regexp": { "version": "4.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "license": "MIT", @@ -3188,18 +3183,18 @@ } }, "node_modules/eslint": { - "version": "10.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/eslint/-/eslint-10.0.2.tgz", - "integrity": "sha512-uYixubwmqJZH+KLVYIVKY1JQt7tysXhtj21WSvjcSmU5SVNzMus1bgLe+pAt816yQ8opKfheVVoPLqvVMGejYw==", + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-10.2.0.tgz", + "integrity": "sha512-+L0vBFYGIpSNIt/KWTpFonPrqYvgKw1eUI5Vn7mEogrQcWtWYtNQ7dNqC+px/J0idT3BAkiWrhfS7k+Tum8TUA==", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.8.0", "@eslint-community/regexpp": "^4.12.2", - "@eslint/config-array": "^0.23.2", - "@eslint/config-helpers": "^0.5.2", - "@eslint/core": "^1.1.0", - "@eslint/plugin-kit": "^0.6.0", + "@eslint/config-array": "^0.23.4", + "@eslint/config-helpers": "^0.5.4", + "@eslint/core": "^1.2.0", + "@eslint/plugin-kit": "^0.7.0", "@humanfs/node": "^0.16.6", "@humanwhocodes/module-importer": "^1.0.1", "@humanwhocodes/retry": "^0.4.2", @@ -3208,9 +3203,9 @@ "cross-spawn": "^7.0.6", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^9.1.1", + "eslint-scope": "^9.1.2", "eslint-visitor-keys": "^5.0.1", - "espree": "^11.1.1", + "espree": "^11.2.0", "esquery": "^1.7.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", @@ -3221,7 +3216,7 @@ "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "json-stable-stringify-without-jsonify": "^1.0.1", - "minimatch": "^10.2.1", + "minimatch": "^10.2.4", "natural-compare": "^1.4.0", "optionator": "^0.9.3" }, @@ -3244,9 +3239,9 @@ } }, "node_modules/eslint-scope": { - "version": "9.1.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/eslint-scope/-/eslint-scope-9.1.1.tgz", - "integrity": "sha512-GaUN0sWim5qc8KVErfPBWmc31LEsOkrUJbvJZV+xuL3u2phMUK4HIvXlWAakfC8W4nzlK+chPEAkYOYb5ZScIw==", + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-9.1.2.tgz", + "integrity": "sha512-xS90H51cKw0jltxmvmHy2Iai1LIqrfbw57b79w/J7MfvDfkIkFZ+kj6zC3BjtUwh150HsSSdxXZcsuv72miDFQ==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -3264,7 +3259,7 @@ }, "node_modules/eslint-visitor-keys": { "version": "3.4.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, "license": "Apache-2.0", @@ -3277,7 +3272,7 @@ }, "node_modules/eslint/node_modules/eslint-visitor-keys": { "version": "5.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", "dev": true, "license": "Apache-2.0", @@ -3290,7 +3285,7 @@ }, "node_modules/eslint/node_modules/ignore": { "version": "5.3.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ignore/-/ignore-5.3.2.tgz", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "license": "MIT", @@ -3299,9 +3294,9 @@ } }, "node_modules/espree": { - "version": "11.1.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/espree/-/espree-11.1.1.tgz", - "integrity": "sha512-AVHPqQoZYc+RUM4/3Ly5udlZY/U4LS8pIG05jEjWM2lQMU/oaZ7qshzAl2YP1tfNmXfftH3ohurfwNAug+MnsQ==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-11.2.0.tgz", + "integrity": "sha512-7p3DrVEIopW1B1avAGLuCSh1jubc01H2JHc8B4qqGblmg5gI9yumBgACjWo4JlIc04ufug4xJ3SQI8HkS/Rgzw==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -3318,7 +3313,7 @@ }, "node_modules/espree/node_modules/eslint-visitor-keys": { "version": "5.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-5.0.1.tgz", "integrity": "sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==", "dev": true, "license": "Apache-2.0", @@ -3331,7 +3326,7 @@ }, "node_modules/esprima": { "version": "4.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/esprima/-/esprima-4.0.1.tgz", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, "license": "BSD-2-Clause", @@ -3345,7 +3340,7 @@ }, "node_modules/esquery": { "version": "1.7.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/esquery/-/esquery-1.7.0.tgz", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.7.0.tgz", "integrity": "sha512-Ap6G0WQwcU/LHsvLwON1fAQX9Zp0A2Y6Y/cJBl9r/JbW90Zyg4/zbG6zzKa2OTALELarYHmKu0GhpM5EO+7T0g==", "dev": true, "license": "BSD-3-Clause", @@ -3358,7 +3353,7 @@ }, "node_modules/esrecurse": { "version": "4.3.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/esrecurse/-/esrecurse-4.3.0.tgz", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, "license": "BSD-2-Clause", @@ -3371,7 +3366,7 @@ }, "node_modules/estraverse": { "version": "5.3.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/estraverse/-/estraverse-5.3.0.tgz", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, "license": "BSD-2-Clause", @@ -3381,14 +3376,14 @@ }, "node_modules/estree-walker": { "version": "2.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/estree-walker/-/estree-walker-2.0.2.tgz", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", "dev": true, "license": "MIT" }, "node_modules/esutils": { "version": "2.0.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/esutils/-/esutils-2.0.3.tgz", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, "license": "BSD-2-Clause", @@ -3398,7 +3393,7 @@ }, "node_modules/execa": { "version": "5.1.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/execa/-/execa-5.1.1.tgz", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "license": "MIT", @@ -3422,14 +3417,14 @@ }, "node_modules/execa/node_modules/signal-exit": { "version": "3.0.7", - "resolved": "https://artifact.devsnc.com/repository/npm-all/signal-exit/-/signal-exit-3.0.7.tgz", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true, "license": "ISC" }, "node_modules/exit-x": { "version": "0.2.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/exit-x/-/exit-x-0.2.2.tgz", + "resolved": "https://registry.npmjs.org/exit-x/-/exit-x-0.2.2.tgz", "integrity": "sha512-+I6B/IkJc1o/2tiURyz/ivu/O0nKNEArIUB5O7zBrlDVJr22SCLH3xTeEry428LvFhRzIA1g8izguxJ/gbNcVQ==", "dev": true, "license": "MIT", @@ -3438,18 +3433,18 @@ } }, "node_modules/expect": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/expect/-/expect-30.2.0.tgz", - "integrity": "sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-30.3.0.tgz", + "integrity": "sha512-1zQrciTiQfRdo7qJM1uG4navm8DayFa2TgCSRlzUyNkhcJ6XUZF3hjnpkyr3VhAqPH7i/9GkG7Tv5abz6fqz0Q==", "dev": true, "license": "MIT", "dependencies": { - "@jest/expect-utils": "30.2.0", + "@jest/expect-utils": "30.3.0", "@jest/get-type": "30.1.0", - "jest-matcher-utils": "30.2.0", - "jest-message-util": "30.2.0", - "jest-mock": "30.2.0", - "jest-util": "30.2.0" + "jest-matcher-utils": "30.3.0", + "jest-message-util": "30.3.0", + "jest-mock": "30.3.0", + "jest-util": "30.3.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" @@ -3457,28 +3452,28 @@ }, "node_modules/fast-deep-equal": { "version": "3.1.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "dev": true, "license": "MIT" }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "dev": true, "license": "MIT" }, "node_modules/fast-levenshtein": { "version": "2.0.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true, "license": "MIT" }, "node_modules/fb-watchman": { "version": "2.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/fb-watchman/-/fb-watchman-2.0.2.tgz", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", "dev": true, "license": "Apache-2.0", @@ -3488,7 +3483,7 @@ }, "node_modules/fdir": { "version": "6.5.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/fdir/-/fdir-6.5.0.tgz", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", "dev": true, "license": "MIT", @@ -3506,7 +3501,7 @@ }, "node_modules/file-entry-cache": { "version": "8.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", "dev": true, "license": "MIT", @@ -3517,22 +3512,9 @@ "node": ">=16.0.0" } }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "dev": true, - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/find-up": { "version": "5.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/find-up/-/find-up-5.0.0.tgz", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "license": "MIT", @@ -3549,7 +3531,7 @@ }, "node_modules/flat-cache": { "version": "4.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/flat-cache/-/flat-cache-4.0.1.tgz", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", "dev": true, "license": "MIT", @@ -3562,15 +3544,15 @@ } }, "node_modules/flatted": { - "version": "3.3.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/flatted/-/flatted-3.3.3.tgz", - "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.4.2.tgz", + "integrity": "sha512-PjDse7RzhcPkIJwy5t7KPWQSZ9cAbzQXcafsetQoD7sOJRQlGikNbx7yZp2OotDnJyrDcbyRq3Ttb18iYOqkxA==", "dev": true, "license": "ISC" }, "node_modules/foreground-child": { "version": "3.3.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/foreground-child/-/foreground-child-3.3.1.tgz", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", "dev": true, "license": "ISC", @@ -3587,14 +3569,14 @@ }, "node_modules/fs.realpath": { "version": "1.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/fs.realpath/-/fs.realpath-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "dev": true, "license": "ISC" }, "node_modules/fsevents": { "version": "2.3.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/fsevents/-/fsevents-2.3.3.tgz", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "dev": true, "hasInstallScript": true, @@ -3609,7 +3591,7 @@ }, "node_modules/function-bind": { "version": "1.1.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/function-bind/-/function-bind-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true, "license": "MIT", @@ -3619,7 +3601,7 @@ }, "node_modules/gensync": { "version": "1.0.0-beta.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/gensync/-/gensync-1.0.0-beta.2.tgz", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, "license": "MIT", @@ -3629,7 +3611,7 @@ }, "node_modules/get-caller-file": { "version": "2.0.5", - "resolved": "https://artifact.devsnc.com/repository/npm-all/get-caller-file/-/get-caller-file-2.0.5.tgz", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, "license": "ISC", @@ -3639,7 +3621,7 @@ }, "node_modules/get-package-type": { "version": "0.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/get-package-type/-/get-package-type-0.1.0.tgz", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, "license": "MIT", @@ -3649,7 +3631,7 @@ }, "node_modules/get-stream": { "version": "6.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/get-stream/-/get-stream-6.0.1.tgz", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "license": "MIT", @@ -3662,7 +3644,7 @@ }, "node_modules/glob": { "version": "10.5.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/glob/-/glob-10.5.0.tgz", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", "dev": true, @@ -3684,7 +3666,7 @@ }, "node_modules/glob-parent": { "version": "6.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/glob-parent/-/glob-parent-6.0.2.tgz", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "license": "ISC", @@ -3697,15 +3679,15 @@ }, "node_modules/glob/node_modules/balanced-match": { "version": "1.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/balanced-match/-/balanced-match-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true, "license": "MIT" }, "node_modules/glob/node_modules/brace-expansion": { - "version": "2.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/brace-expansion/-/brace-expansion-2.0.2.tgz", - "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.0.tgz", + "integrity": "sha512-TN1kCZAgdgweJhWWpgKYrQaMNHcDULHkWwQIspdtjV4Y5aurRdZpjAqn6yX3FPqTA9ngHCc4hJxMAMgGfve85w==", "dev": true, "license": "MIT", "dependencies": { @@ -3714,7 +3696,7 @@ }, "node_modules/glob/node_modules/minimatch": { "version": "9.0.9", - "resolved": "https://artifact.devsnc.com/repository/npm-all/minimatch/-/minimatch-9.0.9.tgz", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz", "integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==", "dev": true, "license": "ISC", @@ -3730,14 +3712,14 @@ }, "node_modules/graceful-fs": { "version": "4.2.11", - "resolved": "https://artifact.devsnc.com/repository/npm-all/graceful-fs/-/graceful-fs-4.2.11.tgz", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true, "license": "ISC" }, "node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/has-flag/-/has-flag-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "license": "MIT", @@ -3747,7 +3729,7 @@ }, "node_modules/hasown": { "version": "2.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/hasown/-/hasown-2.0.2.tgz", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, "license": "MIT", @@ -3760,14 +3742,14 @@ }, "node_modules/html-escaper": { "version": "2.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/html-escaper/-/html-escaper-2.0.2.tgz", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true, "license": "MIT" }, "node_modules/human-signals": { "version": "2.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/human-signals/-/human-signals-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, "license": "Apache-2.0", @@ -3777,7 +3759,7 @@ }, "node_modules/ignore": { "version": "7.0.5", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ignore/-/ignore-7.0.5.tgz", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", "dev": true, "license": "MIT", @@ -3787,7 +3769,7 @@ }, "node_modules/import-local": { "version": "3.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/import-local/-/import-local-3.2.0.tgz", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", "dev": true, "license": "MIT", @@ -3807,7 +3789,7 @@ }, "node_modules/imurmurhash": { "version": "0.1.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/imurmurhash/-/imurmurhash-0.1.4.tgz", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, "license": "MIT", @@ -3817,7 +3799,7 @@ }, "node_modules/inflight": { "version": "1.0.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/inflight/-/inflight-1.0.6.tgz", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, @@ -3829,21 +3811,21 @@ }, "node_modules/inherits": { "version": "2.0.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/inherits/-/inherits-2.0.4.tgz", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true, "license": "ISC" }, "node_modules/is-arrayish": { "version": "0.2.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/is-arrayish/-/is-arrayish-0.2.1.tgz", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true, "license": "MIT" }, "node_modules/is-core-module": { "version": "2.16.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/is-core-module/-/is-core-module-2.16.1.tgz", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "dev": true, "license": "MIT", @@ -3859,7 +3841,7 @@ }, "node_modules/is-extglob": { "version": "2.1.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/is-extglob/-/is-extglob-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, "license": "MIT", @@ -3869,7 +3851,7 @@ }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, "license": "MIT", @@ -3879,7 +3861,7 @@ }, "node_modules/is-generator-fn": { "version": "2.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true, "license": "MIT", @@ -3889,7 +3871,7 @@ }, "node_modules/is-glob": { "version": "4.0.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/is-glob/-/is-glob-4.0.3.tgz", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "license": "MIT", @@ -3902,24 +3884,14 @@ }, "node_modules/is-module": { "version": "1.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/is-module/-/is-module-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", "dev": true, "license": "MIT" }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, "node_modules/is-reference": { "version": "1.2.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/is-reference/-/is-reference-1.2.1.tgz", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", "dev": true, "license": "MIT", @@ -3929,7 +3901,7 @@ }, "node_modules/is-stream": { "version": "2.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/is-stream/-/is-stream-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, "license": "MIT", @@ -3942,14 +3914,14 @@ }, "node_modules/isexe": { "version": "2.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/isexe/-/isexe-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "dev": true, "license": "ISC" }, "node_modules/istanbul-lib-coverage": { "version": "3.2.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", "dev": true, "license": "BSD-3-Clause", @@ -3959,7 +3931,7 @@ }, "node_modules/istanbul-lib-instrument": { "version": "6.0.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", "dev": true, "license": "BSD-3-Clause", @@ -3976,7 +3948,7 @@ }, "node_modules/istanbul-lib-report": { "version": "3.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", "dev": true, "license": "BSD-3-Clause", @@ -3991,7 +3963,7 @@ }, "node_modules/istanbul-lib-source-maps": { "version": "5.0.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/istanbul-lib-source-maps/-/istanbul-lib-source-maps-5.0.6.tgz", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-5.0.6.tgz", "integrity": "sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==", "dev": true, "license": "BSD-3-Clause", @@ -4006,7 +3978,7 @@ }, "node_modules/istanbul-reports": { "version": "3.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/istanbul-reports/-/istanbul-reports-3.2.0.tgz", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.2.0.tgz", "integrity": "sha512-HGYWWS/ehqTV3xN10i23tkPkpH46MLCIMFNCaaKNavAXTF1RkqxawEPtnjnGZ6XKSInBKkiOA5BKS+aZiY3AvA==", "dev": true, "license": "BSD-3-Clause", @@ -4020,7 +3992,7 @@ }, "node_modules/jackspeak": { "version": "3.4.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jackspeak/-/jackspeak-3.4.3.tgz", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", "dev": true, "license": "BlueOak-1.0.0", @@ -4035,16 +4007,16 @@ } }, "node_modules/jest": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest/-/jest-30.2.0.tgz", - "integrity": "sha512-F26gjC0yWN8uAA5m5Ss8ZQf5nDHWGlN/xWZIh8S5SRbsEKBovwZhxGd6LJlbZYxBgCYOtreSUyb8hpXyGC5O4A==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-30.3.0.tgz", + "integrity": "sha512-AkXIIFcaazymvey2i/+F94XRnM6TsVLZDhBMLsd1Sf/W0wzsvvpjeyUrCZD6HGG4SDYPgDJDBKeiJTBb10WzMg==", "dev": true, "license": "MIT", "dependencies": { - "@jest/core": "30.2.0", - "@jest/types": "30.2.0", + "@jest/core": "30.3.0", + "@jest/types": "30.3.0", "import-local": "^3.2.0", - "jest-cli": "30.2.0" + "jest-cli": "30.3.0" }, "bin": { "jest": "bin/jest.js" @@ -4062,14 +4034,14 @@ } }, "node_modules/jest-changed-files": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-changed-files/-/jest-changed-files-30.2.0.tgz", - "integrity": "sha512-L8lR1ChrRnSdfeOvTrwZMlnWV8G/LLjQ0nG9MBclwWZidA2N5FviRki0Bvh20WRMOX31/JYvzdqTJrk5oBdydQ==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-30.3.0.tgz", + "integrity": "sha512-B/7Cny6cV5At6M25EWDgf9S617lHivamL8vl6KEpJqkStauzcG4e+WPfDgMMF+H4FVH4A2PLRyvgDJan4441QA==", "dev": true, "license": "MIT", "dependencies": { "execa": "^5.1.1", - "jest-util": "30.2.0", + "jest-util": "30.3.0", "p-limit": "^3.1.0" }, "engines": { @@ -4077,29 +4049,29 @@ } }, "node_modules/jest-circus": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-circus/-/jest-circus-30.2.0.tgz", - "integrity": "sha512-Fh0096NC3ZkFx05EP2OXCxJAREVxj1BcW/i6EWqqymcgYKWjyyDpral3fMxVcHXg6oZM7iULer9wGRFvfpl+Tg==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-30.3.0.tgz", + "integrity": "sha512-PyXq5szeSfR/4f1lYqCmmQjh0vqDkURUYi9N6whnHjlRz4IUQfMcXkGLeEoiJtxtyPqgUaUUfyQlApXWBSN1RA==", "dev": true, "license": "MIT", "dependencies": { - "@jest/environment": "30.2.0", - "@jest/expect": "30.2.0", - "@jest/test-result": "30.2.0", - "@jest/types": "30.2.0", + "@jest/environment": "30.3.0", + "@jest/expect": "30.3.0", + "@jest/test-result": "30.3.0", + "@jest/types": "30.3.0", "@types/node": "*", "chalk": "^4.1.2", "co": "^4.6.0", "dedent": "^1.6.0", "is-generator-fn": "^2.1.0", - "jest-each": "30.2.0", - "jest-matcher-utils": "30.2.0", - "jest-message-util": "30.2.0", - "jest-runtime": "30.2.0", - "jest-snapshot": "30.2.0", - "jest-util": "30.2.0", + "jest-each": "30.3.0", + "jest-matcher-utils": "30.3.0", + "jest-message-util": "30.3.0", + "jest-runtime": "30.3.0", + "jest-snapshot": "30.3.0", + "jest-util": "30.3.0", "p-limit": "^3.1.0", - "pretty-format": "30.2.0", + "pretty-format": "30.3.0", "pure-rand": "^7.0.0", "slash": "^3.0.0", "stack-utils": "^2.0.6" @@ -4109,21 +4081,21 @@ } }, "node_modules/jest-cli": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-cli/-/jest-cli-30.2.0.tgz", - "integrity": "sha512-Os9ukIvADX/A9sLt6Zse3+nmHtHaE6hqOsjQtNiugFTbKRHYIYtZXNGNK9NChseXy7djFPjndX1tL0sCTlfpAA==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-30.3.0.tgz", + "integrity": "sha512-l6Tqx+j1fDXJEW5bqYykDQQ7mQg+9mhWXtnj+tQZrTWYHyHoi6Be8HPumDSA+UiX2/2buEgjA58iJzdj146uCw==", "dev": true, "license": "MIT", "dependencies": { - "@jest/core": "30.2.0", - "@jest/test-result": "30.2.0", - "@jest/types": "30.2.0", + "@jest/core": "30.3.0", + "@jest/test-result": "30.3.0", + "@jest/types": "30.3.0", "chalk": "^4.1.2", "exit-x": "^0.2.2", "import-local": "^3.2.0", - "jest-config": "30.2.0", - "jest-util": "30.2.0", - "jest-validate": "30.2.0", + "jest-config": "30.3.0", + "jest-util": "30.3.0", + "jest-validate": "30.3.0", "yargs": "^17.7.2" }, "bin": { @@ -4142,34 +4114,33 @@ } }, "node_modules/jest-config": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-config/-/jest-config-30.2.0.tgz", - "integrity": "sha512-g4WkyzFQVWHtu6uqGmQR4CQxz/CH3yDSlhzXMWzNjDx843gYjReZnMRanjRCq5XZFuQrGDxgUaiYWE8BRfVckA==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-30.3.0.tgz", + "integrity": "sha512-WPMAkMAtNDY9P/oKObtsRG/6KTrhtgPJoBTmk20uDn4Uy6/3EJnnaZJre/FMT1KVRx8cve1r7/FlMIOfRVWL4w==", "dev": true, "license": "MIT", "dependencies": { "@babel/core": "^7.27.4", "@jest/get-type": "30.1.0", "@jest/pattern": "30.0.1", - "@jest/test-sequencer": "30.2.0", - "@jest/types": "30.2.0", - "babel-jest": "30.2.0", + "@jest/test-sequencer": "30.3.0", + "@jest/types": "30.3.0", + "babel-jest": "30.3.0", "chalk": "^4.1.2", "ci-info": "^4.2.0", "deepmerge": "^4.3.1", - "glob": "^10.3.10", + "glob": "^10.5.0", "graceful-fs": "^4.2.11", - "jest-circus": "30.2.0", + "jest-circus": "30.3.0", "jest-docblock": "30.2.0", - "jest-environment-node": "30.2.0", + "jest-environment-node": "30.3.0", "jest-regex-util": "30.0.1", - "jest-resolve": "30.2.0", - "jest-runner": "30.2.0", - "jest-util": "30.2.0", - "jest-validate": "30.2.0", - "micromatch": "^4.0.8", + "jest-resolve": "30.3.0", + "jest-runner": "30.3.0", + "jest-util": "30.3.0", + "jest-validate": "30.3.0", "parse-json": "^5.2.0", - "pretty-format": "30.2.0", + "pretty-format": "30.3.0", "slash": "^3.0.0", "strip-json-comments": "^3.1.1" }, @@ -4194,16 +4165,16 @@ } }, "node_modules/jest-diff": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-diff/-/jest-diff-30.2.0.tgz", - "integrity": "sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-30.3.0.tgz", + "integrity": "sha512-n3q4PDQjS4LrKxfWB3Z5KNk1XjXtZTBwQp71OP0Jo03Z6V60x++K5L8k6ZrW8MY8pOFylZvHM0zsjS1RqlHJZQ==", "dev": true, "license": "MIT", "dependencies": { - "@jest/diff-sequences": "30.0.1", + "@jest/diff-sequences": "30.3.0", "@jest/get-type": "30.1.0", "chalk": "^4.1.2", - "pretty-format": "30.2.0" + "pretty-format": "30.3.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" @@ -4211,7 +4182,7 @@ }, "node_modules/jest-docblock": { "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-docblock/-/jest-docblock-30.2.0.tgz", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-30.2.0.tgz", "integrity": "sha512-tR/FFgZKS1CXluOQzZvNH3+0z9jXr3ldGSD8bhyuxvlVUwbeLOGynkunvlTMxchC5urrKndYiwCFC0DLVjpOCA==", "dev": true, "license": "MIT", @@ -4223,57 +4194,57 @@ } }, "node_modules/jest-each": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-each/-/jest-each-30.2.0.tgz", - "integrity": "sha512-lpWlJlM7bCUf1mfmuqTA8+j2lNURW9eNafOy99knBM01i5CQeY5UH1vZjgT9071nDJac1M4XsbyI44oNOdhlDQ==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-30.3.0.tgz", + "integrity": "sha512-V8eMndg/aZ+3LnCJgSm13IxS5XSBM22QSZc9BtPK8Dek6pm+hfUNfwBdvsB3d342bo1q7wnSkC38zjX259qZNA==", "dev": true, "license": "MIT", "dependencies": { "@jest/get-type": "30.1.0", - "@jest/types": "30.2.0", + "@jest/types": "30.3.0", "chalk": "^4.1.2", - "jest-util": "30.2.0", - "pretty-format": "30.2.0" + "jest-util": "30.3.0", + "pretty-format": "30.3.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, "node_modules/jest-environment-node": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-environment-node/-/jest-environment-node-30.2.0.tgz", - "integrity": "sha512-ElU8v92QJ9UrYsKrxDIKCxu6PfNj4Hdcktcn0JX12zqNdqWHB0N+hwOnnBBXvjLd2vApZtuLUGs1QSY+MsXoNA==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-30.3.0.tgz", + "integrity": "sha512-4i6HItw/JSiJVsC5q0hnKIe/hbYfZLVG9YJ/0pU9Hz2n/9qZe3Rhn5s5CUZA5ORZlcdT/vmAXRMyONXJwPrmYQ==", "dev": true, "license": "MIT", "dependencies": { - "@jest/environment": "30.2.0", - "@jest/fake-timers": "30.2.0", - "@jest/types": "30.2.0", + "@jest/environment": "30.3.0", + "@jest/fake-timers": "30.3.0", + "@jest/types": "30.3.0", "@types/node": "*", - "jest-mock": "30.2.0", - "jest-util": "30.2.0", - "jest-validate": "30.2.0" + "jest-mock": "30.3.0", + "jest-util": "30.3.0", + "jest-validate": "30.3.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, "node_modules/jest-haste-map": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-haste-map/-/jest-haste-map-30.2.0.tgz", - "integrity": "sha512-sQA/jCb9kNt+neM0anSj6eZhLZUIhQgwDt7cPGjumgLM4rXsfb9kpnlacmvZz3Q5tb80nS+oG/if+NBKrHC+Xw==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-30.3.0.tgz", + "integrity": "sha512-mMi2oqG4KRU0R9QEtscl87JzMXfUhbKaFqOxmjb2CKcbHcUGFrJCBWHmnTiUqi6JcnzoBlO4rWfpdl2k/RfLCA==", "dev": true, "license": "MIT", "dependencies": { - "@jest/types": "30.2.0", + "@jest/types": "30.3.0", "@types/node": "*", "anymatch": "^3.1.3", "fb-watchman": "^2.0.2", "graceful-fs": "^4.2.11", "jest-regex-util": "30.0.1", - "jest-util": "30.2.0", - "jest-worker": "30.2.0", - "micromatch": "^4.0.8", + "jest-util": "30.3.0", + "jest-worker": "30.3.0", + "picomatch": "^4.0.3", "walker": "^1.0.8" }, "engines": { @@ -4284,49 +4255,49 @@ } }, "node_modules/jest-leak-detector": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-leak-detector/-/jest-leak-detector-30.2.0.tgz", - "integrity": "sha512-M6jKAjyzjHG0SrQgwhgZGy9hFazcudwCNovY/9HPIicmNSBuockPSedAP9vlPK6ONFJ1zfyH/M2/YYJxOz5cdQ==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-30.3.0.tgz", + "integrity": "sha512-cuKmUUGIjfXZAiGJ7TbEMx0bcqNdPPI6P1V+7aF+m/FUJqFDxkFR4JqkTu8ZOiU5AaX/x0hZ20KaaIPXQzbMGQ==", "dev": true, "license": "MIT", "dependencies": { "@jest/get-type": "30.1.0", - "pretty-format": "30.2.0" + "pretty-format": "30.3.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, "node_modules/jest-matcher-utils": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-matcher-utils/-/jest-matcher-utils-30.2.0.tgz", - "integrity": "sha512-dQ94Nq4dbzmUWkQ0ANAWS9tBRfqCrn0bV9AMYdOi/MHW726xn7eQmMeRTpX2ViC00bpNaWXq+7o4lIQ3AX13Hg==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-30.3.0.tgz", + "integrity": "sha512-HEtc9uFQgaUHkC7nLSlQL3Tph4Pjxt/yiPvkIrrDCt9jhoLIgxaubo1G+CFOnmHYMxHwwdaSN7mkIFs6ZK8OhA==", "dev": true, "license": "MIT", "dependencies": { "@jest/get-type": "30.1.0", "chalk": "^4.1.2", - "jest-diff": "30.2.0", - "pretty-format": "30.2.0" + "jest-diff": "30.3.0", + "pretty-format": "30.3.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, "node_modules/jest-message-util": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-message-util/-/jest-message-util-30.2.0.tgz", - "integrity": "sha512-y4DKFLZ2y6DxTWD4cDe07RglV88ZiNEdlRfGtqahfbIjfsw1nMCPx49Uev4IA/hWn3sDKyAnSPwoYSsAEdcimw==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-30.3.0.tgz", + "integrity": "sha512-Z/j4Bo+4ySJ+JPJN3b2Qbl9hDq3VrXmnjjGEWD/x0BCXeOXPTV1iZYYzl2X8c1MaCOL+ewMyNBcm88sboE6YWw==", "dev": true, "license": "MIT", "dependencies": { "@babel/code-frame": "^7.27.1", - "@jest/types": "30.2.0", + "@jest/types": "30.3.0", "@types/stack-utils": "^2.0.3", "chalk": "^4.1.2", "graceful-fs": "^4.2.11", - "micromatch": "^4.0.8", - "pretty-format": "30.2.0", + "picomatch": "^4.0.3", + "pretty-format": "30.3.0", "slash": "^3.0.0", "stack-utils": "^2.0.6" }, @@ -4335,15 +4306,15 @@ } }, "node_modules/jest-mock": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-mock/-/jest-mock-30.2.0.tgz", - "integrity": "sha512-JNNNl2rj4b5ICpmAcq+WbLH83XswjPbjH4T7yvGzfAGCPh1rw+xVNbtk+FnRslvt9lkCcdn9i1oAoKUuFsOxRw==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-30.3.0.tgz", + "integrity": "sha512-OTzICK8CpE+t4ndhKrwlIdbM6Pn8j00lvmSmq5ejiO+KxukbLjgOflKWMn3KE34EZdQm5RqTuKj+5RIEniYhog==", "dev": true, "license": "MIT", "dependencies": { - "@jest/types": "30.2.0", + "@jest/types": "30.3.0", "@types/node": "*", - "jest-util": "30.2.0" + "jest-util": "30.3.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" @@ -4351,7 +4322,7 @@ }, "node_modules/jest-pnp-resolver": { "version": "1.2.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", "dev": true, "license": "MIT", @@ -4369,7 +4340,7 @@ }, "node_modules/jest-regex-util": { "version": "30.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-regex-util/-/jest-regex-util-30.0.1.tgz", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-30.0.1.tgz", "integrity": "sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==", "dev": true, "license": "MIT", @@ -4378,18 +4349,18 @@ } }, "node_modules/jest-resolve": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-resolve/-/jest-resolve-30.2.0.tgz", - "integrity": "sha512-TCrHSxPlx3tBY3hWNtRQKbtgLhsXa1WmbJEqBlTBrGafd5fiQFByy2GNCEoGR+Tns8d15GaL9cxEzKOO3GEb2A==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-30.3.0.tgz", + "integrity": "sha512-NRtTAHQlpd15F9rUR36jqwelbrDV/dY4vzNte3S2kxCKUJRYNd5/6nTSbYiak1VX5g8IoFF23Uj5TURkUW8O5g==", "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.1.2", "graceful-fs": "^4.2.11", - "jest-haste-map": "30.2.0", + "jest-haste-map": "30.3.0", "jest-pnp-resolver": "^1.2.3", - "jest-util": "30.2.0", - "jest-validate": "30.2.0", + "jest-util": "30.3.0", + "jest-validate": "30.3.0", "slash": "^3.0.0", "unrs-resolver": "^1.7.11" }, @@ -4398,46 +4369,46 @@ } }, "node_modules/jest-resolve-dependencies": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-resolve-dependencies/-/jest-resolve-dependencies-30.2.0.tgz", - "integrity": "sha512-xTOIGug/0RmIe3mmCqCT95yO0vj6JURrn1TKWlNbhiAefJRWINNPgwVkrVgt/YaerPzY3iItufd80v3lOrFJ2w==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-30.3.0.tgz", + "integrity": "sha512-9ev8s3YN6Hsyz9LV75XUwkCVFlwPbaFn6Wp75qnI0wzAINYWY8Fb3+6y59Rwd3QaS3kKXffHXsZMziMavfz/nw==", "dev": true, "license": "MIT", "dependencies": { "jest-regex-util": "30.0.1", - "jest-snapshot": "30.2.0" + "jest-snapshot": "30.3.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, "node_modules/jest-runner": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-runner/-/jest-runner-30.2.0.tgz", - "integrity": "sha512-PqvZ2B2XEyPEbclp+gV6KO/F1FIFSbIwewRgmROCMBo/aZ6J1w8Qypoj2pEOcg3G2HzLlaP6VUtvwCI8dM3oqQ==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-30.3.0.tgz", + "integrity": "sha512-gDv6C9LGKWDPLia9TSzZwf4h3kMQCqyTpq+95PODnTRDO0g9os48XIYYkS6D236vjpBir2fF63YmJFtqkS5Duw==", "dev": true, "license": "MIT", "dependencies": { - "@jest/console": "30.2.0", - "@jest/environment": "30.2.0", - "@jest/test-result": "30.2.0", - "@jest/transform": "30.2.0", - "@jest/types": "30.2.0", + "@jest/console": "30.3.0", + "@jest/environment": "30.3.0", + "@jest/test-result": "30.3.0", + "@jest/transform": "30.3.0", + "@jest/types": "30.3.0", "@types/node": "*", "chalk": "^4.1.2", "emittery": "^0.13.1", "exit-x": "^0.2.2", "graceful-fs": "^4.2.11", "jest-docblock": "30.2.0", - "jest-environment-node": "30.2.0", - "jest-haste-map": "30.2.0", - "jest-leak-detector": "30.2.0", - "jest-message-util": "30.2.0", - "jest-resolve": "30.2.0", - "jest-runtime": "30.2.0", - "jest-util": "30.2.0", - "jest-watcher": "30.2.0", - "jest-worker": "30.2.0", + "jest-environment-node": "30.3.0", + "jest-haste-map": "30.3.0", + "jest-leak-detector": "30.3.0", + "jest-message-util": "30.3.0", + "jest-resolve": "30.3.0", + "jest-runtime": "30.3.0", + "jest-util": "30.3.0", + "jest-watcher": "30.3.0", + "jest-worker": "30.3.0", "p-limit": "^3.1.0", "source-map-support": "0.5.13" }, @@ -4446,32 +4417,32 @@ } }, "node_modules/jest-runtime": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-runtime/-/jest-runtime-30.2.0.tgz", - "integrity": "sha512-p1+GVX/PJqTucvsmERPMgCPvQJpFt4hFbM+VN3n8TMo47decMUcJbt+rgzwrEme0MQUA/R+1de2axftTHkKckg==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-30.3.0.tgz", + "integrity": "sha512-CgC+hIBJbuh78HEffkhNKcbXAytQViplcl8xupqeIWyKQF50kCQA8J7GeJCkjisC6hpnC9Muf8jV5RdtdFbGng==", "dev": true, "license": "MIT", "dependencies": { - "@jest/environment": "30.2.0", - "@jest/fake-timers": "30.2.0", - "@jest/globals": "30.2.0", + "@jest/environment": "30.3.0", + "@jest/fake-timers": "30.3.0", + "@jest/globals": "30.3.0", "@jest/source-map": "30.0.1", - "@jest/test-result": "30.2.0", - "@jest/transform": "30.2.0", - "@jest/types": "30.2.0", + "@jest/test-result": "30.3.0", + "@jest/transform": "30.3.0", + "@jest/types": "30.3.0", "@types/node": "*", "chalk": "^4.1.2", "cjs-module-lexer": "^2.1.0", "collect-v8-coverage": "^1.0.2", - "glob": "^10.3.10", + "glob": "^10.5.0", "graceful-fs": "^4.2.11", - "jest-haste-map": "30.2.0", - "jest-message-util": "30.2.0", - "jest-mock": "30.2.0", + "jest-haste-map": "30.3.0", + "jest-message-util": "30.3.0", + "jest-mock": "30.3.0", "jest-regex-util": "30.0.1", - "jest-resolve": "30.2.0", - "jest-snapshot": "30.2.0", - "jest-util": "30.2.0", + "jest-resolve": "30.3.0", + "jest-snapshot": "30.3.0", + "jest-util": "30.3.0", "slash": "^3.0.0", "strip-bom": "^4.0.0" }, @@ -4480,9 +4451,9 @@ } }, "node_modules/jest-snapshot": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-snapshot/-/jest-snapshot-30.2.0.tgz", - "integrity": "sha512-5WEtTy2jXPFypadKNpbNkZ72puZCa6UjSr/7djeecHWOu7iYhSXSnHScT8wBz3Rn8Ena5d5RYRcsyKIeqG1IyA==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-30.3.0.tgz", + "integrity": "sha512-f14c7atpb4O2DeNhwcvS810Y63wEn8O1HqK/luJ4F6M4NjvxmAKQwBUWjbExUtMxWJQ0wVgmCKymeJK6NZMnfQ==", "dev": true, "license": "MIT", "dependencies": { @@ -4491,20 +4462,20 @@ "@babel/plugin-syntax-jsx": "^7.27.1", "@babel/plugin-syntax-typescript": "^7.27.1", "@babel/types": "^7.27.3", - "@jest/expect-utils": "30.2.0", + "@jest/expect-utils": "30.3.0", "@jest/get-type": "30.1.0", - "@jest/snapshot-utils": "30.2.0", - "@jest/transform": "30.2.0", - "@jest/types": "30.2.0", + "@jest/snapshot-utils": "30.3.0", + "@jest/transform": "30.3.0", + "@jest/types": "30.3.0", "babel-preset-current-node-syntax": "^1.2.0", "chalk": "^4.1.2", - "expect": "30.2.0", + "expect": "30.3.0", "graceful-fs": "^4.2.11", - "jest-diff": "30.2.0", - "jest-matcher-utils": "30.2.0", - "jest-message-util": "30.2.0", - "jest-util": "30.2.0", - "pretty-format": "30.2.0", + "jest-diff": "30.3.0", + "jest-matcher-utils": "30.3.0", + "jest-message-util": "30.3.0", + "jest-util": "30.3.0", + "pretty-format": "30.3.0", "semver": "^7.7.2", "synckit": "^0.11.8" }, @@ -4513,36 +4484,36 @@ } }, "node_modules/jest-util": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-util/-/jest-util-30.2.0.tgz", - "integrity": "sha512-QKNsM0o3Xe6ISQU869e+DhG+4CK/48aHYdJZGlFQVTjnbvgpcKyxpzk29fGiO7i/J8VENZ+d2iGnSsvmuHywlA==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-30.3.0.tgz", + "integrity": "sha512-/jZDa00a3Sz7rdyu55NLrQCIrbyIkbBxareejQI315f/i8HjYN+ZWsDLLpoQSiUIEIyZF/R8fDg3BmB8AtHttg==", "dev": true, "license": "MIT", "dependencies": { - "@jest/types": "30.2.0", + "@jest/types": "30.3.0", "@types/node": "*", "chalk": "^4.1.2", "ci-info": "^4.2.0", "graceful-fs": "^4.2.11", - "picomatch": "^4.0.2" + "picomatch": "^4.0.3" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" } }, "node_modules/jest-validate": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-validate/-/jest-validate-30.2.0.tgz", - "integrity": "sha512-FBGWi7dP2hpdi8nBoWxSsLvBFewKAg0+uSQwBaof4Y4DPgBabXgpSYC5/lR7VmnIlSpASmCi/ntRWPbv7089Pw==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-30.3.0.tgz", + "integrity": "sha512-I/xzC8h5G+SHCb2P2gWkJYrNiTbeL47KvKeW5EzplkyxzBRBw1ssSHlI/jXec0ukH2q7x2zAWQm7015iusg62Q==", "dev": true, "license": "MIT", "dependencies": { "@jest/get-type": "30.1.0", - "@jest/types": "30.2.0", + "@jest/types": "30.3.0", "camelcase": "^6.3.0", "chalk": "^4.1.2", "leven": "^3.1.0", - "pretty-format": "30.2.0" + "pretty-format": "30.3.0" }, "engines": { "node": "^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0" @@ -4550,7 +4521,7 @@ }, "node_modules/jest-validate/node_modules/camelcase": { "version": "6.3.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/camelcase/-/camelcase-6.3.0.tgz", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", "dev": true, "license": "MIT", @@ -4562,19 +4533,19 @@ } }, "node_modules/jest-watcher": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-watcher/-/jest-watcher-30.2.0.tgz", - "integrity": "sha512-PYxa28dxJ9g777pGm/7PrbnMeA0Jr7osHP9bS7eJy9DuAjMgdGtxgf0uKMyoIsTWAkIbUW5hSDdJ3urmgXBqxg==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-30.3.0.tgz", + "integrity": "sha512-PJ1d9ThtTR8aMiBWUdcownq9mDdLXsQzJayTk4kmaBRHKvwNQn+ANveuhEBUyNI2hR1TVhvQ8D5kHubbzBHR/w==", "dev": true, "license": "MIT", "dependencies": { - "@jest/test-result": "30.2.0", - "@jest/types": "30.2.0", + "@jest/test-result": "30.3.0", + "@jest/types": "30.3.0", "@types/node": "*", "ansi-escapes": "^4.3.2", "chalk": "^4.1.2", "emittery": "^0.13.1", - "jest-util": "30.2.0", + "jest-util": "30.3.0", "string-length": "^4.0.2" }, "engines": { @@ -4582,15 +4553,15 @@ } }, "node_modules/jest-worker": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jest-worker/-/jest-worker-30.2.0.tgz", - "integrity": "sha512-0Q4Uk8WF7BUwqXHuAjc23vmopWJw5WH7w2tqBoUOZpOjW/ZnR44GXXd1r82RvnmI2GZge3ivrYXk/BE2+VtW2g==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-30.3.0.tgz", + "integrity": "sha512-DrCKkaQwHexjRUFTmPzs7sHQe0TSj9nvDALKGdwmK5mW9v7j90BudWirKAJHt3QQ9Dhrg1F7DogPzhChppkJpQ==", "dev": true, "license": "MIT", "dependencies": { "@types/node": "*", "@ungap/structured-clone": "^1.3.0", - "jest-util": "30.2.0", + "jest-util": "30.3.0", "merge-stream": "^2.0.0", "supports-color": "^8.1.1" }, @@ -4600,7 +4571,7 @@ }, "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/supports-color/-/supports-color-8.1.1.tgz", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "license": "MIT", @@ -4616,14 +4587,14 @@ }, "node_modules/js-tokens": { "version": "4.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/js-tokens/-/js-tokens-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "dev": true, "license": "MIT" }, "node_modules/js-yaml": { "version": "3.14.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/js-yaml/-/js-yaml-3.14.2.tgz", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz", "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==", "dev": true, "license": "MIT", @@ -4637,7 +4608,7 @@ }, "node_modules/jsesc": { "version": "3.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/jsesc/-/jsesc-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "dev": true, "license": "MIT", @@ -4650,35 +4621,35 @@ }, "node_modules/json-buffer": { "version": "3.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/json-buffer/-/json-buffer-3.0.1.tgz", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true, "license": "MIT" }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "dev": true, "license": "MIT" }, "node_modules/json-schema-traverse": { "version": "0.4.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true, "license": "MIT" }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true, "license": "MIT" }, "node_modules/json5": { "version": "2.2.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/json5/-/json5-2.2.3.tgz", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, "license": "MIT", @@ -4691,7 +4662,7 @@ }, "node_modules/keyv": { "version": "4.5.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/keyv/-/keyv-4.5.4.tgz", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, "license": "MIT", @@ -4701,7 +4672,7 @@ }, "node_modules/leven": { "version": "3.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/leven/-/leven-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, "license": "MIT", @@ -4711,7 +4682,7 @@ }, "node_modules/levn": { "version": "0.4.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/levn/-/levn-0.4.1.tgz", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "license": "MIT", @@ -4725,14 +4696,14 @@ }, "node_modules/lines-and-columns": { "version": "1.2.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true, "license": "MIT" }, "node_modules/locate-path": { "version": "6.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/locate-path/-/locate-path-6.0.0.tgz", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "license": "MIT", @@ -4748,7 +4719,7 @@ }, "node_modules/lru-cache": { "version": "5.1.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/lru-cache/-/lru-cache-5.1.1.tgz", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, "license": "ISC", @@ -4758,7 +4729,7 @@ }, "node_modules/magic-string": { "version": "0.30.21", - "resolved": "https://artifact.devsnc.com/repository/npm-all/magic-string/-/magic-string-0.30.21.tgz", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", "dev": true, "license": "MIT", @@ -4768,7 +4739,7 @@ }, "node_modules/make-dir": { "version": "4.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/make-dir/-/make-dir-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", "dev": true, "license": "MIT", @@ -4784,7 +4755,7 @@ }, "node_modules/makeerror": { "version": "1.0.12", - "resolved": "https://artifact.devsnc.com/repository/npm-all/makeerror/-/makeerror-1.0.12.tgz", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, "license": "BSD-3-Clause", @@ -4794,41 +4765,14 @@ }, "node_modules/merge-stream": { "version": "2.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/merge-stream/-/merge-stream-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "dev": true, "license": "MIT" }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://artifact.devsnc.com/repository/npm-all/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "dev": true, - "license": "MIT", - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/micromatch/node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, "node_modules/mimic-fn": { "version": "2.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/mimic-fn/-/mimic-fn-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, "license": "MIT", @@ -4837,13 +4781,13 @@ } }, "node_modules/minimatch": { - "version": "10.2.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/minimatch/-/minimatch-10.2.4.tgz", - "integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==", + "version": "10.2.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.5.tgz", + "integrity": "sha512-MULkVLfKGYDFYejP07QOurDLLQpcjk7Fw+7jXS2R2czRQzR56yHRveU5NDJEOviH+hETZKSkIk5c+T23GjFUMg==", "dev": true, "license": "BlueOak-1.0.0", "dependencies": { - "brace-expansion": "^5.0.2" + "brace-expansion": "^5.0.5" }, "engines": { "node": "18 || 20 || >=22" @@ -4854,7 +4798,7 @@ }, "node_modules/minipass": { "version": "7.1.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/minipass/-/minipass-7.1.3.tgz", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.3.tgz", "integrity": "sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==", "dev": true, "license": "BlueOak-1.0.0", @@ -4864,14 +4808,14 @@ }, "node_modules/ms": { "version": "2.1.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ms/-/ms-2.1.3.tgz", - "integrity": "sha1-V0yBOM4dK1hh8LRFedut1gxmFbI=", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "dev": true, "license": "MIT" }, "node_modules/napi-postinstall": { "version": "0.3.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/napi-postinstall/-/napi-postinstall-0.3.4.tgz", + "resolved": "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz", "integrity": "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==", "dev": true, "license": "MIT", @@ -4887,28 +4831,28 @@ }, "node_modules/natural-compare": { "version": "1.4.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/natural-compare/-/natural-compare-1.4.0.tgz", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true, "license": "MIT" }, "node_modules/node-int64": { "version": "0.4.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/node-int64/-/node-int64-0.4.0.tgz", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "dev": true, "license": "MIT" }, "node_modules/node-releases": { - "version": "2.0.27", - "resolved": "https://artifact.devsnc.com/repository/npm-all/node-releases/-/node-releases-2.0.27.tgz", - "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", + "version": "2.0.37", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.37.tgz", + "integrity": "sha512-1h5gKZCF+pO/o3Iqt5Jp7wc9rH3eJJ0+nh/CIoiRwjRxde/hAHyLPXYN4V3CqKAbiZPSeJFSWHmJsbkicta0Eg==", "dev": true, "license": "MIT" }, "node_modules/normalize-path": { "version": "3.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/normalize-path/-/normalize-path-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, "license": "MIT", @@ -4918,7 +4862,7 @@ }, "node_modules/npm-run-path": { "version": "4.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/npm-run-path/-/npm-run-path-4.0.1.tgz", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "license": "MIT", @@ -4931,7 +4875,7 @@ }, "node_modules/once": { "version": "1.4.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/once/-/once-1.4.0.tgz", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, "license": "ISC", @@ -4941,7 +4885,7 @@ }, "node_modules/onetime": { "version": "5.1.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/onetime/-/onetime-5.1.2.tgz", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "license": "MIT", @@ -4957,7 +4901,7 @@ }, "node_modules/optionator": { "version": "0.9.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/optionator/-/optionator-0.9.4.tgz", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, "license": "MIT", @@ -4975,7 +4919,7 @@ }, "node_modules/p-limit": { "version": "3.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/p-limit/-/p-limit-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "license": "MIT", @@ -4991,7 +4935,7 @@ }, "node_modules/p-locate": { "version": "5.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/p-locate/-/p-locate-5.0.0.tgz", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "license": "MIT", @@ -5007,7 +4951,7 @@ }, "node_modules/p-try": { "version": "2.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/p-try/-/p-try-2.2.0.tgz", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, "license": "MIT", @@ -5017,14 +4961,14 @@ }, "node_modules/package-json-from-dist": { "version": "1.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", "dev": true, "license": "BlueOak-1.0.0" }, "node_modules/parse-json": { "version": "5.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/parse-json/-/parse-json-5.2.0.tgz", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "license": "MIT", @@ -5043,7 +4987,7 @@ }, "node_modules/path-exists": { "version": "4.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/path-exists/-/path-exists-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "dev": true, "license": "MIT", @@ -5053,7 +4997,7 @@ }, "node_modules/path-is-absolute": { "version": "1.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, "license": "MIT", @@ -5063,7 +5007,7 @@ }, "node_modules/path-key": { "version": "3.1.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/path-key/-/path-key-3.1.1.tgz", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, "license": "MIT", @@ -5073,14 +5017,14 @@ }, "node_modules/path-parse": { "version": "1.0.7", - "resolved": "https://artifact.devsnc.com/repository/npm-all/path-parse/-/path-parse-1.0.7.tgz", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true, "license": "MIT" }, "node_modules/path-scurry": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/path-scurry/-/path-scurry-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "dev": true, "license": "BlueOak-1.0.0", @@ -5097,22 +5041,22 @@ }, "node_modules/path-scurry/node_modules/lru-cache": { "version": "10.4.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/lru-cache/-/lru-cache-10.4.3.tgz", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "dev": true, "license": "ISC" }, "node_modules/picocolors": { "version": "1.1.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/picocolors/-/picocolors-1.1.1.tgz", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "dev": true, "license": "ISC" }, "node_modules/picomatch": { - "version": "4.0.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/picomatch/-/picomatch-4.0.3.tgz", - "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.4.tgz", + "integrity": "sha512-QP88BAKvMam/3NxH6vj2o21R6MjxZUAd6nlwAS/pnGvN9IVLocLHxGYIzFhg6fUQ+5th6P4dv4eW9jX3DSIj7A==", "dev": true, "license": "MIT", "engines": { @@ -5124,7 +5068,7 @@ }, "node_modules/pirates": { "version": "4.0.7", - "resolved": "https://artifact.devsnc.com/repository/npm-all/pirates/-/pirates-4.0.7.tgz", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.7.tgz", "integrity": "sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==", "dev": true, "license": "MIT", @@ -5134,7 +5078,7 @@ }, "node_modules/pkg-dir": { "version": "4.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/pkg-dir/-/pkg-dir-4.2.0.tgz", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "license": "MIT", @@ -5147,7 +5091,7 @@ }, "node_modules/pkg-dir/node_modules/find-up": { "version": "4.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/find-up/-/find-up-4.1.0.tgz", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "license": "MIT", @@ -5161,7 +5105,7 @@ }, "node_modules/pkg-dir/node_modules/locate-path": { "version": "5.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/locate-path/-/locate-path-5.0.0.tgz", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "license": "MIT", @@ -5174,7 +5118,7 @@ }, "node_modules/pkg-dir/node_modules/p-limit": { "version": "2.3.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/p-limit/-/p-limit-2.3.0.tgz", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "license": "MIT", @@ -5190,7 +5134,7 @@ }, "node_modules/pkg-dir/node_modules/p-locate": { "version": "4.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/p-locate/-/p-locate-4.1.0.tgz", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "license": "MIT", @@ -5203,7 +5147,7 @@ }, "node_modules/prelude-ls": { "version": "1.2.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/prelude-ls/-/prelude-ls-1.2.1.tgz", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, "license": "MIT", @@ -5212,9 +5156,9 @@ } }, "node_modules/pretty-format": { - "version": "30.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/pretty-format/-/pretty-format-30.2.0.tgz", - "integrity": "sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==", + "version": "30.3.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-30.3.0.tgz", + "integrity": "sha512-oG4T3wCbfeuvljnyAzhBvpN45E8iOTXCU/TD3zXW80HA3dQ4ahdqMkWGiPWZvjpQwlbyHrPTWUAqUzGzv4l1JQ==", "dev": true, "license": "MIT", "dependencies": { @@ -5228,7 +5172,7 @@ }, "node_modules/pretty-format/node_modules/ansi-styles": { "version": "5.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ansi-styles/-/ansi-styles-5.2.0.tgz", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", "dev": true, "license": "MIT", @@ -5241,7 +5185,7 @@ }, "node_modules/punycode": { "version": "2.3.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/punycode/-/punycode-2.3.1.tgz", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, "license": "MIT", @@ -5251,7 +5195,7 @@ }, "node_modules/pure-rand": { "version": "7.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/pure-rand/-/pure-rand-7.0.1.tgz", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-7.0.1.tgz", "integrity": "sha512-oTUZM/NAZS8p7ANR3SHh30kXB+zK2r2BPcEn/awJIbOvq82WoMN4p62AWWp3Hhw50G0xMsw1mhIBLqHw64EcNQ==", "dev": true, "funding": [ @@ -5268,7 +5212,7 @@ }, "node_modules/randombytes": { "version": "2.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/randombytes/-/randombytes-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dev": true, "license": "MIT", @@ -5278,14 +5222,14 @@ }, "node_modules/react-is": { "version": "18.3.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/react-is/-/react-is-18.3.1.tgz", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", "dev": true, "license": "MIT" }, "node_modules/require-directory": { "version": "2.1.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/require-directory/-/require-directory-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, "license": "MIT", @@ -5294,12 +5238,13 @@ } }, "node_modules/resolve": { - "version": "1.22.11", - "resolved": "https://artifact.devsnc.com/repository/npm-all/resolve/-/resolve-1.22.11.tgz", - "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "version": "1.22.12", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.12.tgz", + "integrity": "sha512-TyeJ1zif53BPfHootBGwPRYT1RUt6oGWsaQr8UyZW/eAm9bKoijtvruSDEmZHm92CwS9nj7/fWttqPCgzep8CA==", "dev": true, "license": "MIT", "dependencies": { + "es-errors": "^1.3.0", "is-core-module": "^2.16.1", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" @@ -5316,7 +5261,7 @@ }, "node_modules/resolve-cwd": { "version": "3.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, "license": "MIT", @@ -5329,7 +5274,7 @@ }, "node_modules/resolve-from": { "version": "5.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/resolve-from/-/resolve-from-5.0.0.tgz", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "license": "MIT", @@ -5338,9 +5283,9 @@ } }, "node_modules/rollup": { - "version": "4.59.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/rollup/-/rollup-4.59.0.tgz", - "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==", + "version": "4.60.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.60.1.tgz", + "integrity": "sha512-VmtB2rFU/GroZ4oL8+ZqXgSA38O6GR8KSIvWmEFv63pQ0G6KaBH9s07PO8XTXP4vI+3UJUEypOfjkGfmSBBR0w==", "dev": true, "license": "MIT", "dependencies": { @@ -5354,37 +5299,37 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.59.0", - "@rollup/rollup-android-arm64": "4.59.0", - "@rollup/rollup-darwin-arm64": "4.59.0", - "@rollup/rollup-darwin-x64": "4.59.0", - "@rollup/rollup-freebsd-arm64": "4.59.0", - "@rollup/rollup-freebsd-x64": "4.59.0", - "@rollup/rollup-linux-arm-gnueabihf": "4.59.0", - "@rollup/rollup-linux-arm-musleabihf": "4.59.0", - "@rollup/rollup-linux-arm64-gnu": "4.59.0", - "@rollup/rollup-linux-arm64-musl": "4.59.0", - "@rollup/rollup-linux-loong64-gnu": "4.59.0", - "@rollup/rollup-linux-loong64-musl": "4.59.0", - "@rollup/rollup-linux-ppc64-gnu": "4.59.0", - "@rollup/rollup-linux-ppc64-musl": "4.59.0", - "@rollup/rollup-linux-riscv64-gnu": "4.59.0", - "@rollup/rollup-linux-riscv64-musl": "4.59.0", - "@rollup/rollup-linux-s390x-gnu": "4.59.0", - "@rollup/rollup-linux-x64-gnu": "4.59.0", - "@rollup/rollup-linux-x64-musl": "4.59.0", - "@rollup/rollup-openbsd-x64": "4.59.0", - "@rollup/rollup-openharmony-arm64": "4.59.0", - "@rollup/rollup-win32-arm64-msvc": "4.59.0", - "@rollup/rollup-win32-ia32-msvc": "4.59.0", - "@rollup/rollup-win32-x64-gnu": "4.59.0", - "@rollup/rollup-win32-x64-msvc": "4.59.0", + "@rollup/rollup-android-arm-eabi": "4.60.1", + "@rollup/rollup-android-arm64": "4.60.1", + "@rollup/rollup-darwin-arm64": "4.60.1", + "@rollup/rollup-darwin-x64": "4.60.1", + "@rollup/rollup-freebsd-arm64": "4.60.1", + "@rollup/rollup-freebsd-x64": "4.60.1", + "@rollup/rollup-linux-arm-gnueabihf": "4.60.1", + "@rollup/rollup-linux-arm-musleabihf": "4.60.1", + "@rollup/rollup-linux-arm64-gnu": "4.60.1", + "@rollup/rollup-linux-arm64-musl": "4.60.1", + "@rollup/rollup-linux-loong64-gnu": "4.60.1", + "@rollup/rollup-linux-loong64-musl": "4.60.1", + "@rollup/rollup-linux-ppc64-gnu": "4.60.1", + "@rollup/rollup-linux-ppc64-musl": "4.60.1", + "@rollup/rollup-linux-riscv64-gnu": "4.60.1", + "@rollup/rollup-linux-riscv64-musl": "4.60.1", + "@rollup/rollup-linux-s390x-gnu": "4.60.1", + "@rollup/rollup-linux-x64-gnu": "4.60.1", + "@rollup/rollup-linux-x64-musl": "4.60.1", + "@rollup/rollup-openbsd-x64": "4.60.1", + "@rollup/rollup-openharmony-arm64": "4.60.1", + "@rollup/rollup-win32-arm64-msvc": "4.60.1", + "@rollup/rollup-win32-ia32-msvc": "4.60.1", + "@rollup/rollup-win32-x64-gnu": "4.60.1", + "@rollup/rollup-win32-x64-msvc": "4.60.1", "fsevents": "~2.3.2" } }, "node_modules/safe-buffer": { "version": "5.2.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/safe-buffer/-/safe-buffer-5.2.1.tgz", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, "funding": [ @@ -5405,7 +5350,7 @@ }, "node_modules/semver": { "version": "7.7.4", - "resolved": "https://artifact.devsnc.com/repository/npm-all/semver/-/semver-7.7.4.tgz", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", "dev": true, "license": "ISC", @@ -5418,7 +5363,7 @@ }, "node_modules/serialize-javascript": { "version": "6.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/serialize-javascript/-/serialize-javascript-6.0.2.tgz", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "dev": true, "license": "BSD-3-Clause", @@ -5428,7 +5373,7 @@ }, "node_modules/shebang-command": { "version": "2.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/shebang-command/-/shebang-command-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "license": "MIT", @@ -5441,7 +5386,7 @@ }, "node_modules/shebang-regex": { "version": "3.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/shebang-regex/-/shebang-regex-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, "license": "MIT", @@ -5451,7 +5396,7 @@ }, "node_modules/signal-exit": { "version": "4.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/signal-exit/-/signal-exit-4.1.0.tgz", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, "license": "ISC", @@ -5464,7 +5409,7 @@ }, "node_modules/slash": { "version": "3.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/slash/-/slash-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", "dev": true, "license": "MIT", @@ -5474,7 +5419,7 @@ }, "node_modules/smob": { "version": "1.6.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/smob/-/smob-1.6.1.tgz", + "resolved": "https://registry.npmjs.org/smob/-/smob-1.6.1.tgz", "integrity": "sha512-KAkBqZl3c2GvNgNhcoyJae1aKldDW0LO279wF9bk1PnluRTETKBq0WyzRXxEhoQLk56yHaOY4JCBEKDuJIET5g==", "dev": true, "license": "MIT", @@ -5484,7 +5429,7 @@ }, "node_modules/source-map": { "version": "0.6.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/source-map/-/source-map-0.6.1.tgz", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "dev": true, "license": "BSD-3-Clause", @@ -5494,7 +5439,7 @@ }, "node_modules/source-map-support": { "version": "0.5.13", - "resolved": "https://artifact.devsnc.com/repository/npm-all/source-map-support/-/source-map-support-0.5.13.tgz", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", "dev": true, "license": "MIT", @@ -5505,14 +5450,14 @@ }, "node_modules/sprintf-js": { "version": "1.0.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/sprintf-js/-/sprintf-js-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "dev": true, "license": "BSD-3-Clause" }, "node_modules/stack-utils": { "version": "2.0.6", - "resolved": "https://artifact.devsnc.com/repository/npm-all/stack-utils/-/stack-utils-2.0.6.tgz", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", "dev": true, "license": "MIT", @@ -5525,7 +5470,7 @@ }, "node_modules/stack-utils/node_modules/escape-string-regexp": { "version": "2.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", "dev": true, "license": "MIT", @@ -5535,7 +5480,7 @@ }, "node_modules/string-length": { "version": "4.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/string-length/-/string-length-4.0.2.tgz", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", "dev": true, "license": "MIT", @@ -5549,7 +5494,7 @@ }, "node_modules/string-length/node_modules/ansi-regex": { "version": "5.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ansi-regex/-/ansi-regex-5.0.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "license": "MIT", @@ -5559,7 +5504,7 @@ }, "node_modules/string-length/node_modules/strip-ansi": { "version": "6.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/strip-ansi/-/strip-ansi-6.0.1.tgz", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "license": "MIT", @@ -5572,7 +5517,7 @@ }, "node_modules/string-width": { "version": "5.1.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/string-width/-/string-width-5.1.2.tgz", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, "license": "MIT", @@ -5591,7 +5536,7 @@ "node_modules/string-width-cjs": { "name": "string-width", "version": "4.2.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/string-width/-/string-width-4.2.3.tgz", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "license": "MIT", @@ -5606,7 +5551,7 @@ }, "node_modules/string-width-cjs/node_modules/ansi-regex": { "version": "5.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ansi-regex/-/ansi-regex-5.0.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "license": "MIT", @@ -5616,14 +5561,14 @@ }, "node_modules/string-width-cjs/node_modules/emoji-regex": { "version": "8.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/emoji-regex/-/emoji-regex-8.0.0.tgz", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true, "license": "MIT" }, "node_modules/string-width-cjs/node_modules/strip-ansi": { "version": "6.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/strip-ansi/-/strip-ansi-6.0.1.tgz", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "license": "MIT", @@ -5635,13 +5580,13 @@ } }, "node_modules/strip-ansi": { - "version": "7.1.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/strip-ansi/-/strip-ansi-7.1.2.tgz", - "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.2.0.tgz", + "integrity": "sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==", "dev": true, "license": "MIT", "dependencies": { - "ansi-regex": "^6.0.1" + "ansi-regex": "^6.2.2" }, "engines": { "node": ">=12" @@ -5653,7 +5598,7 @@ "node_modules/strip-ansi-cjs": { "name": "strip-ansi", "version": "6.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/strip-ansi/-/strip-ansi-6.0.1.tgz", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "license": "MIT", @@ -5666,7 +5611,7 @@ }, "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { "version": "5.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ansi-regex/-/ansi-regex-5.0.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "license": "MIT", @@ -5676,7 +5621,7 @@ }, "node_modules/strip-bom": { "version": "4.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/strip-bom/-/strip-bom-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true, "license": "MIT", @@ -5686,7 +5631,7 @@ }, "node_modules/strip-final-newline": { "version": "2.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true, "license": "MIT", @@ -5696,7 +5641,7 @@ }, "node_modules/strip-json-comments": { "version": "3.1.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, "license": "MIT", @@ -5709,7 +5654,7 @@ }, "node_modules/supports-color": { "version": "7.2.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/supports-color/-/supports-color-7.2.0.tgz", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "license": "MIT", @@ -5722,7 +5667,7 @@ }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, "license": "MIT", @@ -5735,7 +5680,7 @@ }, "node_modules/synckit": { "version": "0.11.12", - "resolved": "https://artifact.devsnc.com/repository/npm-all/synckit/-/synckit-0.11.12.tgz", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.12.tgz", "integrity": "sha512-Bh7QjT8/SuKUIfObSXNHNSK6WHo6J1tHCqJsuaFDP7gP0fkzSfTxI8y85JrppZ0h8l0maIgc2tfuZQ6/t3GtnQ==", "dev": true, "license": "MIT", @@ -5750,9 +5695,9 @@ } }, "node_modules/terser": { - "version": "5.46.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/terser/-/terser-5.46.0.tgz", - "integrity": "sha512-jTwoImyr/QbOWFFso3YoU3ik0jBBDJ6JTOQiy/J2YxVJdZCc+5u7skhNwiOR3FQIygFqVUPHl7qbbxtjW2K3Qg==", + "version": "5.46.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.46.1.tgz", + "integrity": "sha512-vzCjQO/rgUuK9sf8VJZvjqiqiHFaZLnOiimmUuOKODxWL8mm/xua7viT7aqX7dgPY60otQjUotzFMmCB4VdmqQ==", "dev": true, "license": "BSD-2-Clause", "dependencies": { @@ -5770,7 +5715,7 @@ }, "node_modules/terser/node_modules/source-map-support": { "version": "0.5.21", - "resolved": "https://artifact.devsnc.com/repository/npm-all/source-map-support/-/source-map-support-0.5.21.tgz", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "dev": true, "license": "MIT", @@ -5781,7 +5726,7 @@ }, "node_modules/test-exclude": { "version": "6.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/test-exclude/-/test-exclude-6.0.0.tgz", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", "dev": true, "license": "ISC", @@ -5796,15 +5741,15 @@ }, "node_modules/test-exclude/node_modules/balanced-match": { "version": "1.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/balanced-match/-/balanced-match-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true, "license": "MIT" }, "node_modules/test-exclude/node_modules/brace-expansion": { - "version": "1.1.12", - "resolved": "https://artifact.devsnc.com/repository/npm-all/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.14.tgz", + "integrity": "sha512-MWPGfDxnyzKU7rNOW9SP/c50vi3xrmrua/+6hfPbCS2ABNWfx24vPidzvC7krjU/RTo235sV776ymlsMtGKj8g==", "dev": true, "license": "MIT", "dependencies": { @@ -5814,7 +5759,7 @@ }, "node_modules/test-exclude/node_modules/glob": { "version": "7.2.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/glob/-/glob-7.2.3.tgz", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", "dev": true, @@ -5836,7 +5781,7 @@ }, "node_modules/test-exclude/node_modules/minimatch": { "version": "3.1.5", - "resolved": "https://artifact.devsnc.com/repository/npm-all/minimatch/-/minimatch-3.1.5.tgz", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.5.tgz", "integrity": "sha512-VgjWUsnnT6n+NUk6eZq77zeFdpW2LWDzP6zFGrCbHXiYNul5Dzqk2HHQ5uFH2DNW5Xbp8+jVzaeNt94ssEEl4w==", "dev": true, "license": "ISC", @@ -5848,14 +5793,14 @@ } }, "node_modules/tinyglobby": { - "version": "0.2.15", - "resolved": "https://artifact.devsnc.com/repository/npm-all/tinyglobby/-/tinyglobby-0.2.15.tgz", - "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "version": "0.2.16", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.16.tgz", + "integrity": "sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==", "dev": true, "license": "MIT", "dependencies": { "fdir": "^6.5.0", - "picomatch": "^4.0.3" + "picomatch": "^4.0.4" }, "engines": { "node": ">=12.0.0" @@ -5866,28 +5811,15 @@ }, "node_modules/tmpl": { "version": "1.0.5", - "resolved": "https://artifact.devsnc.com/repository/npm-all/tmpl/-/tmpl-1.0.5.tgz", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true, "license": "BSD-3-Clause" }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, "node_modules/ts-api-utils": { - "version": "2.4.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ts-api-utils/-/ts-api-utils-2.4.0.tgz", - "integrity": "sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.5.0.tgz", + "integrity": "sha512-OJ/ibxhPlqrMM0UiNHJ/0CKQkoKF243/AEmplt3qpRgkW8VG7IfOS41h7V8TjITqdByHzrjcS/2si+y4lIh8NA==", "dev": true, "license": "MIT", "engines": { @@ -5899,14 +5831,14 @@ }, "node_modules/tslib": { "version": "2.8.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/tslib/-/tslib-2.8.1.tgz", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true, "license": "0BSD" }, "node_modules/type-check": { "version": "0.4.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/type-check/-/type-check-0.4.0.tgz", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "license": "MIT", @@ -5919,7 +5851,7 @@ }, "node_modules/type-detect": { "version": "4.0.8", - "resolved": "https://artifact.devsnc.com/repository/npm-all/type-detect/-/type-detect-4.0.8.tgz", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", "dev": true, "license": "MIT", @@ -5929,7 +5861,7 @@ }, "node_modules/type-fest": { "version": "0.21.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/type-fest/-/type-fest-0.21.3.tgz", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true, "license": "(MIT OR CC0-1.0)", @@ -5942,7 +5874,7 @@ }, "node_modules/typescript": { "version": "5.9.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/typescript/-/typescript-5.9.3.tgz", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", "dev": true, "license": "Apache-2.0", @@ -5955,15 +5887,15 @@ } }, "node_modules/undici-types": { - "version": "7.18.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/undici-types/-/undici-types-7.18.2.tgz", - "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==", + "version": "7.19.2", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.19.2.tgz", + "integrity": "sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==", "dev": true, "license": "MIT" }, "node_modules/unrs-resolver": { "version": "1.11.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/unrs-resolver/-/unrs-resolver-1.11.1.tgz", + "resolved": "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.11.1.tgz", "integrity": "sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==", "dev": true, "hasInstallScript": true, @@ -5998,7 +5930,7 @@ }, "node_modules/update-browserslist-db": { "version": "1.2.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.3.tgz", "integrity": "sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==", "dev": true, "funding": [ @@ -6029,7 +5961,7 @@ }, "node_modules/uri-js": { "version": "4.4.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/uri-js/-/uri-js-4.4.1.tgz", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "dev": true, "license": "BSD-2-Clause", @@ -6039,7 +5971,7 @@ }, "node_modules/v8-to-istanbul": { "version": "9.3.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz", "integrity": "sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA==", "dev": true, "license": "ISC", @@ -6054,7 +5986,7 @@ }, "node_modules/walker": { "version": "1.0.8", - "resolved": "https://artifact.devsnc.com/repository/npm-all/walker/-/walker-1.0.8.tgz", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", "dev": true, "license": "Apache-2.0", @@ -6064,7 +5996,7 @@ }, "node_modules/which": { "version": "2.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/which/-/which-2.0.2.tgz", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "dev": true, "license": "ISC", @@ -6080,7 +6012,7 @@ }, "node_modules/word-wrap": { "version": "1.2.5", - "resolved": "https://artifact.devsnc.com/repository/npm-all/word-wrap/-/word-wrap-1.2.5.tgz", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, "license": "MIT", @@ -6090,7 +6022,7 @@ }, "node_modules/wrap-ansi": { "version": "8.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", "dev": true, "license": "MIT", @@ -6109,7 +6041,7 @@ "node_modules/wrap-ansi-cjs": { "name": "wrap-ansi", "version": "7.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "license": "MIT", @@ -6127,7 +6059,7 @@ }, "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { "version": "5.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ansi-regex/-/ansi-regex-5.0.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "license": "MIT", @@ -6137,14 +6069,14 @@ }, "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { "version": "8.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/emoji-regex/-/emoji-regex-8.0.0.tgz", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true, "license": "MIT" }, "node_modules/wrap-ansi-cjs/node_modules/string-width": { "version": "4.2.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/string-width/-/string-width-4.2.3.tgz", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "license": "MIT", @@ -6159,7 +6091,7 @@ }, "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { "version": "6.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/strip-ansi/-/strip-ansi-6.0.1.tgz", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "license": "MIT", @@ -6172,7 +6104,7 @@ }, "node_modules/wrap-ansi/node_modules/ansi-styles": { "version": "6.2.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ansi-styles/-/ansi-styles-6.2.3.tgz", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz", "integrity": "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==", "dev": true, "license": "MIT", @@ -6185,14 +6117,14 @@ }, "node_modules/wrappy": { "version": "1.0.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/wrappy/-/wrappy-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true, "license": "ISC" }, "node_modules/write-file-atomic": { "version": "5.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/write-file-atomic/-/write-file-atomic-5.0.1.tgz", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-5.0.1.tgz", "integrity": "sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==", "dev": true, "license": "ISC", @@ -6206,7 +6138,7 @@ }, "node_modules/y18n": { "version": "5.0.8", - "resolved": "https://artifact.devsnc.com/repository/npm-all/y18n/-/y18n-5.0.8.tgz", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, "license": "ISC", @@ -6216,14 +6148,14 @@ }, "node_modules/yallist": { "version": "3.1.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/yallist/-/yallist-3.1.1.tgz", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "dev": true, "license": "ISC" }, "node_modules/yargs": { "version": "17.7.2", - "resolved": "https://artifact.devsnc.com/repository/npm-all/yargs/-/yargs-17.7.2.tgz", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, "license": "MIT", @@ -6242,7 +6174,7 @@ }, "node_modules/yargs-parser": { "version": "21.1.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/yargs-parser/-/yargs-parser-21.1.1.tgz", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, "license": "ISC", @@ -6252,7 +6184,7 @@ }, "node_modules/yargs/node_modules/ansi-regex": { "version": "5.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/ansi-regex/-/ansi-regex-5.0.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "license": "MIT", @@ -6262,14 +6194,14 @@ }, "node_modules/yargs/node_modules/emoji-regex": { "version": "8.0.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/emoji-regex/-/emoji-regex-8.0.0.tgz", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true, "license": "MIT" }, "node_modules/yargs/node_modules/string-width": { "version": "4.2.3", - "resolved": "https://artifact.devsnc.com/repository/npm-all/string-width/-/string-width-4.2.3.tgz", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "license": "MIT", @@ -6284,7 +6216,7 @@ }, "node_modules/yargs/node_modules/strip-ansi": { "version": "6.0.1", - "resolved": "https://artifact.devsnc.com/repository/npm-all/strip-ansi/-/strip-ansi-6.0.1.tgz", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "license": "MIT", @@ -6297,7 +6229,7 @@ }, "node_modules/yocto-queue": { "version": "0.1.0", - "resolved": "https://artifact.devsnc.com/repository/npm-all/yocto-queue/-/yocto-queue-0.1.0.tgz", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "dev": true, "license": "MIT", diff --git a/package.json b/package.json index 6389c24c..3eb3791b 100644 --- a/package.json +++ b/package.json @@ -85,6 +85,7 @@ "eslint": "^10.0.2", "jest": "^30.2.0", "rollup": "^4.52.4", + "tslib": "^2.6.2", "typescript": "5.9.3" }, "resolutions": { From 921aa89722a02b429f8663e5de02b83adf0b0871 Mon Sep 17 00:00:00 2001 From: modesty Date: Wed, 15 Apr 2026 13:53:18 -0700 Subject: [PATCH 08/10] fix: github CI: move type check after build --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7c00008..10c6dee0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,11 +31,11 @@ jobs: - name: Clean install dependencies run: rm -rf node_modules && npm i - - name: Type check - run: npx --no-install tsc --noEmit - - name: Build project run: npm run build + - name: Type check + run: npx --no-install tsc --noEmit + - name: Run tests (with coverage) run: npm run test From 7f157143530cc1e266124ccb78b505cd2bc72b48 Mon Sep 17 00:00:00 2001 From: modesty Date: Wed, 15 Apr 2026 15:11:59 -0700 Subject: [PATCH 09/10] fix: improve CLI error handling, validation guards, and test reliability - Fix mkdir error handling in validateParams: replace try/finally with try/catch so mkdir failures set the error string and return exit code 3 (EXIT_IO_ERROR) instead of propagating as an unhandled rejection - Reorder validation guards in initialize(): check Array.isArray before typeof string so users passing -f multiple times get the specific "can only be specified once" error instead of a generic message - Use structured .code property instead of string-matching on error.message for I/O error classification, preventing misclassification if a PDF engine error message happens to contain errno strings - Restore diagnostic console.error in _test_.cjs catch path so CI logs show which PDF caused a failure - Fix stream test to use os.tmpdir() instead of test/target/ to prevent ENOENT on clean checkout - Re-enable baseline diff validation in p2j.one.sh now that all 37 baselines have been regenerated Co-Authored-By: Claude Opus 4.6 (1M context) --- src/cli/p2jcli.ts | 16 ++++++++-------- test/_test_.cjs | 3 +++ test/_test_stream.cjs | 32 ++++++++++++++++++-------------- test/p2j.one.sh | 4 +--- 4 files changed, 30 insertions(+), 25 deletions(-) diff --git a/src/cli/p2jcli.ts b/src/cli/p2jcli.ts index 580b420d..63f4674c 100644 --- a/src/cli/p2jcli.ts +++ b/src/cli/p2jcli.ts @@ -194,9 +194,8 @@ class PDFProcessor { else if (!fs.existsSync(this.outputDir)) { try { await fs.promises.mkdir(this.outputDir, { recursive: true }); - } finally { - if (!fs.existsSync(this.outputDir)) - retVal = `Input error: output directory doesn't exist and fails to create - ${this.outputDir}.`; + } catch { + retVal = `Input error: output directory doesn't exist and fails to create - ${this.outputDir}.`; } } @@ -293,19 +292,19 @@ export default class PDFCLI { }; } - if (typeof INPUT_DIR_OR_FILE !== 'string' || (INPUT_DIR_OR_FILE as string).trim() === '') { + if (Array.isArray(INPUT_DIR_OR_FILE)) { return { success: false, exitCode: EXIT_ARG_ERROR, - error: "-f|--file parameter must have a valid path value." + error: `-f|--file parameter can only be specified once. Received multiple values: ${INPUT_DIR_OR_FILE.join(", ")}` }; } - if (Array.isArray(INPUT_DIR_OR_FILE)) { + if (typeof INPUT_DIR_OR_FILE !== 'string' || (INPUT_DIR_OR_FILE as string).trim() === '') { return { success: false, exitCode: EXIT_ARG_ERROR, - error: `-f|--file parameter can only be specified once. Received multiple values: ${INPUT_DIR_OR_FILE.join(", ")}` + error: "-f|--file parameter must have a valid path value." }; } @@ -370,7 +369,8 @@ export default class PDFCLI { this.errorMessages.push(errorMessage); this.failedCount++; - if (error.message.includes("ENOENT") || error.message.includes("EACCES") || error.message.includes("EPERM")) { + const errCode = (e as { code?: string }).code; + if (errCode === "ENOENT" || errCode === "EACCES" || errCode === "EPERM") { exitCode = EXIT_IO_ERROR; } else { exitCode = EXIT_PARSE_ERROR; diff --git a/test/_test_.cjs b/test/_test_.cjs index 7f5f686e..f73b30f6 100644 --- a/test/_test_.cjs +++ b/test/_test_.cjs @@ -131,6 +131,9 @@ async function parseAndVerifyOnePDF(fileName, fromBuffer, pageCount) { checkResult_pageCount(evtData.Pages, pageCount, fileName); checkResult_pageContent(evtData.Pages, fileName); checkResult_textCoordinates(evtData.Pages, fileName); + } catch (error) { + console.error(`Error parsing PDF ${fileName}:`, error); + throw error; } finally { try { if (pdfParser) { diff --git a/test/_test_stream.cjs b/test/_test_stream.cjs index 4731762a..ee0e592e 100644 --- a/test/_test_stream.cjs +++ b/test/_test_stream.cjs @@ -1,4 +1,5 @@ const fs = require("fs"); +const os = require("os"); const path = require("path"); const { Writable, Readable } = require("stream"); @@ -107,22 +108,25 @@ describe("Stream API", () => { }); test("ParserStream.createOutputStream writes to a file", async () => { - const tmpFile = path.join(__dirname, "target", "stream_test_output.txt"); + const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "stream-test-")); + const tmpFile = path.join(tmpDir, "stream_test_output.txt"); const testContent = "Hello from stream test"; - await new Promise((resolve, reject) => { - const outStream = ParserStream.createOutputStream(tmpFile, resolve, reject); - const input = new Readable(); - input.push(testContent); - input.push(null); - input.pipe(outStream); - }); - - expect(fs.existsSync(tmpFile)).toBe(true); - const written = fs.readFileSync(tmpFile, "utf8"); - expect(written).toBe(testContent); + try { + await new Promise((resolve, reject) => { + const outStream = ParserStream.createOutputStream(tmpFile, resolve, reject); + const input = new Readable(); + input.push(testContent); + input.push(null); + input.pipe(outStream); + }); - // Cleanup - fs.unlinkSync(tmpFile); + expect(fs.existsSync(tmpFile)).toBe(true); + const written = fs.readFileSync(tmpFile, "utf8"); + expect(written).toBe(testContent); + } finally { + // Cleanup + fs.rmSync(tmpDir, { recursive: true, force: true }); + } }); }); diff --git a/test/p2j.one.sh b/test/p2j.one.sh index c8c4e60f..18c47295 100755 --- a/test/p2j.one.sh +++ b/test/p2j.one.sh @@ -17,9 +17,7 @@ echo "Update $AGENCY_NAME PDF" echo "-----------------------------------------------------" mkdir -p $OUT_DIR_BASE/$AGENCY_NAME/$FORM_BASE $PDF2JSON -f $IN_DIR_BASE/$AGENCY_NAME/$FORM_BASE -o $OUT_DIR_BASE/$AGENCY_NAME/$FORM_BASE -s -t -c -m -# TODO: enable diff validation after regenerating all agency baselines in test/data/ -# Path was also fixed (added missing / separator): -# diff -rq $OUT_DIR_BASE/$AGENCY_NAME/$FORM_BASE/ $DATA_DIR_BASE/$AGENCY_NAME/$FORM_BASE/ +diff -rq $OUT_DIR_BASE/$AGENCY_NAME/$FORM_BASE/ $DATA_DIR_BASE/$AGENCY_NAME/$FORM_BASE/ echo "-----------------------------------------------------" echo "$IN_DIR_BASE/$AGENCY_NAME/$FORM_BASE : $EXPECTED_RESULT" From 14da5278e28fe4790da6109c141514977a894fea Mon Sep 17 00:00:00 2001 From: modesty Date: Wed, 15 Apr 2026 15:30:50 -0700 Subject: [PATCH 10/10] chore: update readme.md and out of date dependency --- package-lock.json | 59 +++++++++++----------------------------------- package.json | 4 ++-- readme.md | 60 +++++++++++++++++++++++++++++++++++++++++++---- 3 files changed, 71 insertions(+), 52 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2081a4f8..d952e814 100644 --- a/package-lock.json +++ b/package-lock.json @@ -17,7 +17,7 @@ "@rollup/plugin-eslint": "^9.1.0", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.2", - "@rollup/plugin-terser": "^0.4.4", + "@rollup/plugin-terser": "^1.0.0", "@rollup/plugin-typescript": "^12.1.4", "@types/node": "^25.3.3", "@typescript-eslint/eslint-plugin": "^8.46.0", @@ -1384,18 +1384,18 @@ } }, "node_modules/@rollup/plugin-terser": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz", - "integrity": "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==", + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-1.0.0.tgz", + "integrity": "sha512-FnCxhTBx6bMOYQrar6C8h3scPt8/JwIzw3+AJ2K++6guogH5fYaIFia+zZuhqv0eo1RN7W1Pz630SyvLbDjhtQ==", "dev": true, "license": "MIT", "dependencies": { - "serialize-javascript": "^6.0.1", + "serialize-javascript": "^7.0.3", "smob": "^1.0.0", "terser": "^5.17.4" }, "engines": { - "node": ">=14.0.0" + "node": ">=20.0.0" }, "peerDependencies": { "rollup": "^2.0.0||^3.0.0||^4.0.0" @@ -3113,9 +3113,9 @@ "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.5.337", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.337.tgz", - "integrity": "sha512-15gKW9mRUNP9RdzhedJNypFUxtYWSXohFz2nTLzM272xbRXHws68kNDzyATG3qej+vUj/7Sn9hf5XTDh0XK6/w==", + "version": "1.5.338", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.338.tgz", + "integrity": "sha512-KVQQ3xko9/coDX3qXLUEEbqkKT8L+1DyAovrtu0Khtrt9wjSZ+7CZV4GVzxFy9Oe1NbrIU1oVXCwHJruIA1PNg==", "dev": true, "license": "ISC" }, @@ -5210,16 +5210,6 @@ ], "license": "MIT" }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "^5.1.0" - } - }, "node_modules/react-is": { "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", @@ -5327,27 +5317,6 @@ "fsevents": "~2.3.2" } }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, "node_modules/semver": { "version": "7.7.4", "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", @@ -5362,13 +5331,13 @@ } }, "node_modules/serialize-javascript": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", - "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-7.0.5.tgz", + "integrity": "sha512-F4LcB0UqUl1zErq+1nYEEzSHJnIwb3AF2XWB94b+afhrekOUijwooAYqFyRbjYkm2PAKBabx6oYv/xDxNi8IBw==", "dev": true, "license": "BSD-3-Clause", - "dependencies": { - "randombytes": "^2.1.0" + "engines": { + "node": ">=20.0.0" } }, "node_modules/shebang-command": { diff --git a/package.json b/package.json index 3eb3791b..37f3de88 100644 --- a/package.json +++ b/package.json @@ -51,7 +51,7 @@ "parse-e": "./bin/pdf2json.js -f ./test/pdf/misc/i418_precompilato_fake.pdf -o ./test/target/misc -c", "build:rollup": "npx rollup -c ./rollup.config.js", "build:bundle-pdfjs-base": "node rollup/bundle-pdfjs-base.js", - "build": "npm run build:bundle-pdfjs-base && npm run build:rollup", + "build": "npm run build:bundle-pdfjs-base && npm run build:rollup && cp dist/pdfparser.d.ts dist/pdfparser.d.cts", "build:clean": "rm -rf node_modules && rm -f package-lock.json && npm i && npm run build", "test:deno": "deno --allow-read --allow-write --allow-net --allow-env --no-check ./bin/pdf2json.js -f ./test/pdf/fd/form/ -o ./test/target/fd/form -t -c -m -r", "test:bun": "bun ./bin/pdf2json.js -f ./test/pdf/fd/form/ -o ./test/target/fd/form -t -c -m -r" @@ -77,7 +77,7 @@ "@rollup/plugin-eslint": "^9.1.0", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.2", - "@rollup/plugin-terser": "^0.4.4", + "@rollup/plugin-terser": "^1.0.0", "@rollup/plugin-typescript": "^12.1.4", "@types/node": "^25.3.3", "@typescript-eslint/eslint-plugin": "^8.46.0", diff --git a/readme.md b/readme.md index 3426d928..fb3c32ba 100644 --- a/readme.md +++ b/readme.md @@ -43,7 +43,7 @@ After install, run command line: > npm test -`pretest` step builds bundles and source maps for both ES Module and CommonJS, output to `./dist` directory. The Jest test suit is defined in `./test/_test_.cjs` with commonJS, test run will also cover `parse-r` and `parse-fd` with ES Modules via command line. +`pretest` step builds bundles and source maps for both ES Module and CommonJS, output to `./dist` directory. The Jest test suites (7 suites, 74+ tests) are defined in `./test/_test_*.cjs` with CommonJS, test run will also cover `parse-r` and `parse-fd` with ES Modules via command line. The default Jest test suits are essential tests for all PRs. But it only covers a portion of all testing PDFs, for more broader coverage, run: @@ -920,7 +920,7 @@ To use the command line utility to transcode a folder or a file: node pdf2json.js -f [input directory or pdf file] ``` -When -f is a PDF file, it'll be converted to json file with the same name and saved in the same directory. If -f is a directory, it'll scan all ".pdf" files within the specified directory to transcode them one by one. +When -f is a PDF file, it'll be converted to json file with the same name and saved in the same directory. If -f is a directory, it'll scan all ".pdf" files within the specified directory to transcode them one by one (dotfiles are skipped). Optionally, you can specify the output directory: -o: @@ -928,7 +928,7 @@ Optionally, you can specify the output directory: -o: node pdf2json.js -f [input directory or pdf file] -o [output directory] ``` -The output directory must exist, otherwise, it'll exit with an error. +The output directory will be created automatically if it does not exist. Additionally, you can also use -v or --version to show version number or to display more help info with -h. @@ -952,7 +952,57 @@ or pdf2json -f [input directory or pdf file] -o [output directory] ``` -v0.5.4 added "-s" or "--silent" command line argument to suppress informative logging output. When using pdf2json as a command line tool, the default verbosity is 5 (INFOS). While when running as a web service, default verbosity is 9 (ERRORS). +### CLI Flags + +| Flag | Long | Description | +|------|------|-------------| +| `-f` | `--file` | (required) Path to a PDF file or a directory of PDF files to parse | +| `-o` | `--output` | Output directory (created automatically if it doesn't exist; defaults to input directory) | +| `-s` | `--silent` | Suppress informational output; only errors are printed | +| `-t` | `--fieldTypes` | Generate a `.fields.json` file with form field ids and types | +| `-c` | `--content` | Generate a `.content.txt` file with extracted text content | +| `-m` | `--merge` | Generate a `.merged.json` file with auto-merged broken text blocks | +| `-r` | `--stream` | Use stream-based parsing instead of loading the entire file into memory | +| `-si` | `--singleton` | Reuse a single PDFParser instance across all files in a directory (reduces memory for batch processing) | +| `-j` | `--json` | Output a structured JSON summary to stdout (version, file paths, stats, errors). Implies `-s` | +| `-q` | `--quiet` | Suppress all non-error output including timer and status messages. Stricter than `-s` | +| `-v` | `--version` | Print the version number and exit | +| `-h` | `--help` | Print help message and exit | + +### Exit Codes + +| Code | Meaning | +|------|---------| +| `0` | All files parsed successfully | +| `1` | One or more files failed to parse | +| `2` | Invalid arguments or usage error (e.g. missing `-f`) | +| `3` | I/O error (file not found, permission denied) | + +### `--json` Output Schema + +When using the `--json` flag, pdf2json outputs a structured JSON summary to stdout: + +```json +{ + "version": "4.0.3", + "input": "/path/to/input.pdf", + "outputs": [ + { "type": "json", "path": "/path/to/output.json" }, + { "type": "fields", "path": "/path/to/output.fields.json" }, + { "type": "content", "path": "/path/to/output.content.txt" }, + { "type": "merged", "path": "/path/to/output.merged.json" } + ], + "stats": { "input": 1, "success": 1, "failed": 0 }, + "errors": [], + "elapsedMs": 234 +} +``` + +Note: The PDF engine may print warnings to stdout (e.g. `Warning: Setting up fake worker.`). Pipe through `grep '^{'` to isolate the JSON line. + +### Verbosity + +When using pdf2json as a command line tool, the default verbosity is 5 (INFOS). While when running as a web service, default verbosity is 9 (ERRORS). Examples to suppress logging info from command line: ```javascript @@ -973,7 +1023,7 @@ var pdfParser = new PFParser(); pdfParser.loadPDF(pdfFilePath, 5); ``` -v0.5.7 added the capability to skip input PDF files if filename begins with any one of "!@#$%^&\*()+=[]\\\';,/{}|\":<>?~`.-\_ ", usually these files are created by PDF authoring tools as backup files. +When scanning a directory, pdf2json only skips hidden files (dotfiles). All other `.pdf` files are processed. v0.6.2 added "-t" command line argument to generate fields json file in addition to parsed json. The fields json file will contain one Array which contains fieldInfo object for each field, and each fieldInfo object will have 4 fields: